@charset "UTF-8";
/* 100 -> Thin  ; 200 -> ExtraLight  ;  300 -> Light  ;  400 -> Regular  ;  500 -> Medium  ;  600  -> SemiBold  ;  700  -> Bold  ;  800  -> ExtraBold  ;  900  -> Black */
@font-face {
  font-family: 'Arial';
  src: url("../fonts/ArialMT.woff2") format("woff2"), url("../fonts/ArialMT.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Arial-Bold';
  src: url("../fonts/Arial-BoldMT.woff2") format("woff2"), url("../fonts/Arial-BoldMT.woff") format("woff");
  font-weight: bold;
  font-style: normal; }
/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* GERAL *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
html {
  scroll-behavior: smooth; }

body {
  font-size: 16px;
  font-family: 'Arial';
  color: #555;
  margin: 0 !important;
  padding: 0; }

/* ================== TIPOGRAFIA ================== */
/*** Títulos de Seção ***/
.title-sec {
  position: relative;
  margin-bottom: 50px; }

.main-title {
  position: relative;
  color: transparent;
  font-weight: 700;
  font-size: 3em;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Arial-Bold';
  -webkit-text-stroke: 1px #43342b; }
  .main-title span {
    font-size: 1.75em;
    line-height: 1em; }

.main-sub {
  color: #43342b;
  font-size: 1.25em;
  text-align: center;
  max-width: 600px;
  margin: 0 auto; }

.main-txt {
  color: #43342b;
  font-size: 1em; }
  .main-txt strong {
    font-weight: 700;
    color: #43342b; }

.txt-dest {
  color: #43342b;
  font-weight: 700;
  font-size: 1.5em;
  text-transform: uppercase;
  font-family: 'Arial-Bold'; }

/*** Links ***/
a, a:hover {
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }

a:hover {
  color: #fff; }

/* ================== BOTÃO ================== */
.main-btn, .stroke-btn, .white-btn, .white-stroke-btn, .sub-btn, .sub-stroke-btn, .light-btn, .green-btn, .txt-btn {
  color: #fff;
  font-weight: 700;
  font-size: 1.125em;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Arial-Bold';
  position: relative;
  z-index: 50;
  display: inline-block;
  padding: 20px 75px;
  border-radius: 65px;
  margin: 0;
  height: auto;
  transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }

.main-btn {
  background: #43342b;
  color: #fff;
  border: 1px solid #43342b; }
  .main-btn:hover {
    background: #fbf6f2;
    color: #43342b;
    border: 1px solid #43342b; }

.stroke-btn {
  background: transparent;
  color: #43342b;
  border: 1px solid #43342b; }
  .stroke-btn:hover {
    background: #43342b;
    color: #fff; }

.white-btn {
  background: #fff;
  color: #43342b;
  border: 1px solid #fff; }
  .white-btn:hover {
    background: #43342b;
    color: #fff;
    border: 1px solid #fff; }

.white-stroke-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff; }
  .white-stroke-btn:hover {
    background: #fff;
    color: #43342b;
    border: 1px solid #fff; }

.sub-btn {
  background: #ed2e62;
  color: #fff;
  border: 1px solid #ed2e62; }
  .sub-btn:hover {
    background: #fff;
    color: #ed2e62;
    border: 1px solid #ed2e62; }

.sub-stroke-btn {
  background: transparent;
  color: #ed2e62;
  border: 1px solid #ed2e62; }
  .sub-stroke-btn:hover {
    background: #ed2e62;
    color: #fff;
    border: 1px solid #ed2e62; }

.light-btn {
  background: #fbf6f2;
  color: #715b4d; }
  .light-btn:hover {
    background: #715b4d;
    color: #fbf6f2; }

.green-btn {
  background: #09b6a7;
  color: #fff;
  border: 1px solid #09b6a7; }
  .green-btn:hover {
    background: #ed2e62;
    color: #fff;
    border: 1px solid #ed2e62; }

.txt-btn {
  padding: 0;
  font-size: 1rem;
  background: transparent;
  color: #ed2e62; }
  .txt-btn:hover {
    background: transparent;
    color: #96092e; }

/* ================== MISC ================== */
.mobile-only, .mobile-tablet, .desktop-hidden, .logo-mobile, .menu-mobile, .tablet-vert {
  display: none; }

.ml-auto {
  margin-left: auto !important; }

.mr-auto {
  margin-right: auto !important; }

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important; }

.txt-left {
  text-align: left; }

.txt-center {
  text-align: center; }

.txt-right {
  text-align: right; }

.txt-just {
  text-align: justify; }

.posrel {
  position: relative;
  z-index: 2; }

.container {
  width: 1100px; }

.sec-space {
  padding: 120px 0;
  position: relative;
  overflow: hidden; }

img {
  display: block; }

.flex-n {
  display: flex; }

.flex-bt {
  display: flex;
  justify-content: space-between; }

.flex-rd {
  display: flex;
  justify-content: space-around; }

.flex-btc {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.flex-rdc {
  display: flex;
  justify-content: space-around;
  align-items: center; }

.half-block {
  width: 50%; }

.filter {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
  .filter.f-pink {
    background-color: rgba(237, 46, 98, 0.7); }
  .filter img {
    margin: 0 auto; }
  .filter i {
    color: #fff;
    font-size: 4em;
    padding-top: 22%; }

.shadow {
  -webkit-box-shadow: 3px 3px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 3px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 30px 0px rgba(0, 0, 0, 0.2); }

.load {
  width: 32px;
  height: 32px;
  margin: 0 5px 0 0;
  float: right;
  display: none;
  background: url(../img/load.gif) center center no-repeat; }

/* ================== BACKGROUND-COLORS ================== */
body, .bg-white {
  background-color: #fff; }

.bg-none {
  background-color: transparent !important; }

.bg-main {
  background-color: #43342b; }
  .bg-main .main-title {
    -webkit-text-stroke-color: #fff; }
  .bg-main .main-sub {
    color: #fff; }

.bg-dark {
  background-color: #382b23; }

.bg-sub {
  background-color: #ed2e62; }
  .bg-sub .main-title {
    -webkit-text-stroke-color: #fff; }
  .bg-sub .main-sub {
    color: #fff; }

.bg-gray {
  background-color: #f7f5f5; }

.bg-lighter {
  background-color: #fbf6f2; }

.bg-brand {
  background: url("../img/damay-texture.jpg") repeat center top; }

.bg-brand-l {
  background: url("../img/damay-texture-light.jpg") repeat center top; }

.bg-words {
  background: url("../img/bg-words.jpg") repeat center top; }

.bg-aux1 {
  background-color: #faa838; }

.bg-aux2 {
  background-color: #f05744; }

.bg-sub-l {
  background-color: #f7eae2; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* HOME *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
/**************************************/
/***********     HEADER     ***********/
/**************************************/
header {
  position: relative;
  z-index: 150;
  width: 100%; }
  header.main .container {
    width: 1400px; }

.top-bar {
  border-top: 10px solid #ed2e62; }

.bottom-bar {
  position: relative;
  z-index: 1; }
  .bottom-bar .hdr-flex {
    display: flex;
    align-items: center; }
  .bottom-bar .white-btn, .bottom-bar .white-stroke-btn {
    padding: 15px 40px;
    width: 255px;
    font-size: 1rem;
    margin-left: 20px; }

.hdr-menu {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 20px 0; }

.nav-menu {
  display: none; }

a.nav-item {
  color: #43342b;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 5px; }
  a.nav-item:hover, a.nav-item.is-active {
    text-shadow: 1px 0px 1px #43342b; }

.logo-home img {
  margin: 20px auto;
  display: inline-block; }

/* ================== GO UP BTN ================== */
.wpp-area {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 300;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .wpp-area .circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #09b6a7;
    border-radius: 50%;
    opacity: 0;
    animation: scaleIn 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32); }
  .wpp-area .fix-circle {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 70px;
    height: 70px;
    background-color: #09b6a7;
    border-radius: 50%; }
  .wpp-area i {
    position: relative;
    top: 13px;
    left: 17px;
    z-index: 350;
    color: #fff;
    font-size: 2.6em; }

@keyframes scaleIn {
  from {
    transform: scale(0.4, 0.4);
    opacity: .5; }
  to {
    transform: scale(0.8, 0.8);
    opacity: 0; } }
/* ================== GO UP BTN ================== */
.goup-area {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .goup-area .circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #ed2e62;
    border-radius: 50%;
    opacity: 0;
    animation: scaleIn 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32); }
  .goup-area .fix-circle {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 70px;
    height: 70px;
    background-color: #ed2e62;
    border-radius: 50%; }
  .goup-area i {
    position: relative;
    top: 13px;
    left: 17px;
    z-index: 350;
    color: #fff;
    font-size: 2.6em; }

@keyframes scaleIn {
  from {
    transform: scale(0.4, 0.4);
    opacity: .5; }
  to {
    transform: scale(0.8, 0.8);
    opacity: 0; } }
/****************************************/
/************     BANNER     ************/
/****************************************/
.container_slide {
  margin-top: 0px; }

#banner .container_slide, #banner .cycle-slideshow li {
  height: 600px; }
#banner .cycle-slideshow li {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  overflow: hidden; }
#banner .cycle-slideshow .ban-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: center 55%;
  background-size: cover; }
#banner .cycle-slideshow .cycle-pager {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 102;
  width: 100%;
  height: 25px;
  text-align: center; }
  #banner .cycle-slideshow .cycle-pager span {
    width: 15px;
    height: 15px;
    position: relative;
    display: inline-block;
    margin: 0 20px;
    font-size: 0px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
    #banner .cycle-slideshow .cycle-pager span:after {
      content: '';
      width: 31px;
      height: 31px;
      position: absolute;
      top: -8.5px;
      left: -8.5px;
      border: 1px solid #fff;
      background: transparent;
      border-radius: 50%;
      transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
  #banner .cycle-slideshow .cycle-pager .cycle-pager-active {
    background: #fff; }

.progress-bar-bg, .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px; }

.progress-bar-bg {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10; }

.progress-bar {
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 15; }

#hero-cycle .active-bar .progress-bar {
  animation: widthHori 10s linear; }

/*****************************************/
/************     EMPRESA     ************/
/*****************************************/
#home-empresa .title-sec, #apresentacao .title-sec, #reinventar .title-sec {
  border-left: 10px solid #ed2e62;
  padding-left: 20px; }
#home-empresa .main-title, #apresentacao .main-title, #reinventar .main-title {
  text-align: left; }

.emp-block-sm {
  width: 34%; }

.emp-block-lg {
  width: 66%; }

.emp-txt {
  margin-bottom: 40px; }
  .emp-txt .main-txt {
    margin-top: 30px; }

.emp-img {
  position: absolute;
  top: 0;
  z-index: 100;
  transition: all 0.2s ease-out; }

/******************************************/
/************     PRODUTOS     ************/
/******************************************/
.prod-btn {
  text-align: center; }

.tor-block {
  width: 45%; }
  .tor-block .flexslider {
    border-color: transparent;
    background-color: transparent; }

.tor-cat {
  color: #43342b;
  font-weight: 700;
  font-size: 1.5em;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Arial-Bold';
  margin-bottom: 35px; }

.tor-link p {
  color: #43342b;
  font-size: 1.25em;
  text-align: center;
  padding: 0 20px;
  margin-top: 20px; }

.cycle-prev {
  background: url("../img/prev-arr-w.png") no-repeat center top;
  left: -60px; }

.cycle-next {
  background: url("../img/next-arr-w.png") no-repeat center top;
  right: -60px; }

.cycle-prev, .cycle-next {
  width: 26px;
  height: 50px;
  position: absolute;
  top: 32%;
  background-size: contain;
  transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1);
  cursor: pointer !important; }
  .cycle-prev:hover, .cycle-next:hover {
    transform: scale(1.2); }

/*****************************************/
/************     EXPRESS     ************/
/*****************************************/
#express .main-title {
  text-align: left;
  -webkit-text-stroke-color: #ed2e62; }
#express .txt-dest {
  color: #ed2e62;
  font-size: 1.35em;
  margin-top: 20px; }

.exp-logo {
  margin: 40px 0 60px; }
  .exp-logo img {
    margin: 0 auto; }

.exp-btn .sub-btn {
  padding: 20px 55px; }

/******************************************/
/************     UNIDADES     ************/
/******************************************/
#home-unidades .main-title {
  text-align: left;
  margin-bottom: 20px; }
#home-unidades .cycle-prev {
  background: url("../img/prev-arr.png") no-repeat center top; }
#home-unidades .cycle-next {
  background: url("../img/next-arr.png") no-repeat center top; }
#home-unidades .cycle-prev, #home-unidades .cycle-next {
  background-size: contain; }

.rekt {
  position: absolute;
  top: 0;
  border-radius: 60px;
  height: 100%; }
  .rekt.rekt-sm {
    width: 350px; }
  .rekt.rekt-lg {
    width: 950px; }
  .rekt.rekt-l {
    left: -50px; }
  .rekt.rekt-r {
    right: -50px; }

.uni-info {
  margin: 35px 0 0 100px; }

.uni-city {
  color: #ed2e62;
  font-weight: 700;
  font-size: 1.125em;
  text-transform: uppercase;
  font-family: 'Arial-Bold'; }
  .uni-city i {
    font-size: 1.5em; }

.uni-name {
  color: #43342b;
  font-size: 1.25em;
  margin-left: 25px; }

/**************************************/
/************     BLOG     ************/
/**************************************/
#home-blog .title-sec {
  margin-bottom: 70px; }

.coffee.adjust {
  position: absolute;
  top: 150px;
  left: -150px; }
  .coffee.adjust img {
    transform: scaleX(-1); }

.blog-flex {
  display: flex;
  justify-content: space-between; }
  .blog-flex .blog-flex {
    margin-top: 25px; }

.h-blog-item {
  width: 31%;
  border-radius: 15px;
  border: 1px dashed #e3d5ca;
  padding: 30px; }
  .h-blog-item img {
    margin: 0 auto; }
  .h-blog-item .blog-item-title, .h-blog-item .blog-resumo, .h-blog-item .blog-data, .h-blog-item .blog-tempo {
    transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
  .h-blog-item:hover {
    background-color: #43342b; }
    .h-blog-item:hover .blog-item-title, .h-blog-item:hover .blog-resumo, .h-blog-item:hover .blog-data, .h-blog-item:hover .blog-tempo {
      color: #fbf6f2; }

.blog-img {
  box-shadow: 7.5px 7.5px 0px 0px rgba(0, 0, 0, 0.15); }

.blog-item-title {
  color: #715b4d;
  font-weight: 700;
  font-size: 1.125em;
  text-transform: uppercase;
  font-family: 'Arial-Bold';
  margin-top: 25px; }

.blog-resumo {
  color: #715b4d;
  font-size: 1em;
  margin: 25px 0 20px; }

.blog-data, .blog-tempo {
  color: #715b4d;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Arial-Bold'; }

.blog-btn {
  text-align: center;
  margin-top: 60px; }

/*********************************************/
/************     FRANQUEADOS     ************/
/*********************************************/
#home-franqueados {
  overflow: visible;
  padding: 80px 0; }
  #home-franqueados .main-title {
    text-align: left;
    -webkit-text-stroke-color: #fff; }

.brownie-block {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 450px;
  height: 100%;
  clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0% 100%); }

.choco-slice {
  position: absolute;
  top: -10px;
  right: 0; }

.fran-circle {
  position: absolute;
  bottom: -150px;
  left: -120px; }

.fran-info {
  padding: 0 43% 0 27%; }
  .fran-info .txt-dest {
    color: #fff;
    font-size: 1.25em; }

.fran-btn {
  margin-top: 35px; }

/*******************************************/
/************     INSTAGRAM     ************/
/*******************************************/
#instagram .rekt {
  position: absolute;
  border-radius: 60px; }
  #instagram .rekt.rekt-lg {
    width: 850px;
    height: 900px; }
  #instagram .rekt.rekt-sm {
    width: 750px;
    height: 350px; }
  #instagram .rekt.rekt-l {
    top: -50px;
    left: -50px; }
  #instagram .rekt.rekt-r {
    top: auto;
    right: -50px;
    bottom: 80px; }

.insta-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 100px; }
  .insta-flex .main-title {
    text-align: left;
    -webkit-text-stroke-color: #ed2e62; }

.insta-item {
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 250px; }
  .insta-item .filter i {
    color: #fff;
    padding-top: 35%; }
  .insta-item a:hover .filter {
    opacity: 1; }

.insta-vid {
  max-width: 185%;
  margin-left: -42%; }

.insta-absolute {
  height: 400px; }

.insta-wtf {
  position: absolute;
  right: 575px; }
  .insta-wtf.insta-big {
    width: 355px;
    height: 355px;
    top: -30px;
    right: 200px; }
  .insta-wtf.insta-last {
    top: -30px;
    right: -70px; }

/*******************************************/
/************     PARCEIROS     ************/
/*******************************************/
#parceiros {
  padding-top: 60px; }
  #parceiros .container-slide .cycle-prev {
    background: url("../img/prev-arr.png") no-repeat center top;
    left: -90px; }
  #parceiros .container-slide .cycle-next {
    background: url("../img/next-arr.png") no-repeat center top;
    right: -60px; }
  #parceiros .container-slide .cycle-prev, #parceiros .container-slide .cycle-next {
    position: absolute;
    top: 37%;
    z-index: 200;
    width: 40px;
    height: 40px;
    background-size: contain;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
    #parceiros .container-slide .cycle-prev:hover, #parceiros .container-slide .cycle-next:hover {
      transform: scale(1.2); }
  #parceiros img {
    filter: grayscale(1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
  #parceiros a:hover img {
    filter: grayscale(0); }

.parca-flex {
  display: flex;
  justify-content: center;
  align-items: center; }

.parca-item {
  margin: 0 2%; }

/****************************************/
/************     FOOTER     ************/
/****************************************/
footer {
  border-top: 10px solid #f7eae2; }
  footer.sec-space {
    padding: 0; }

.foo-flex {
  display: flex;
  justify-content: space-between;
  padding: 120px 0 100px; }

.foo-info-flex {
  display: flex;
  justify-content: space-between;
  width: 75%; }

.foo-menu li {
  margin-bottom: 10px; }

.foo-nav {
  color: #fbf6f2;
  font-size: 1rem;
  text-transform: uppercase; }
  .foo-nav:hover {
    color: #ed2e62; }
  .foo-nav.is-active {
    font-weight: 700; }

.foo-title {
  color: #fbf6f2;
  font-weight: 700;
  font-size: 0.9em;
  text-transform: uppercase;
  font-family: 'Arial-Bold';
  margin-bottom: 5px; }

.foo-tel {
  color: #fbf6f2;
  font-size: 0.9em; }
  .foo-tel span {
    font-size: 1.5em;
    font-weight: 700; }
  .foo-tel:hover {
    color: #ed2e62; }

.foo-txt {
  color: #fbf6f2;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5em; }

a.foo-txt:hover {
  color: #ed2e62; }

.foo-social {
  display: flex;
  flex-direction: column-reverse; }
  .foo-social a {
    color: #fbf6f2;
    font-size: 1.75em; }
    .foo-social a:hover {
      color: #ed2e62; }

/* ================== QUAX ASSINATURA ================== */
.quax-assinatura {
  color: #fbf6f2;
  text-align: center;
  border-bottom: 8px solid #382b23;
  position: relative;
  margin-top: -65px;
  padding-top: 20px;
  z-index: 0; }
  .quax-assinatura .logo-quax {
    width: 80px;
    margin: 0 auto;
    display: block;
    position: relative; }
    .quax-assinatura .logo-quax img {
      position: absolute;
      bottom: 1px;
      left: 30px;
      width: 20px; }

.arrow-up {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #382b23; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* SUBS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
/* ================== GERAL ================== */
header.sub .tri-shadow {
  display: none; }

.hdr-adjust {
  margin-top: 170px; }

/* ================== PAGINAÇÃO ================== */
.pagination {
  margin-top: 50px;
  width: 100%; }
  .pagination li {
    background-color: transparent;
    margin: 0 5px;
    transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1);
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid #43342b; }
    .pagination li:hover {
      background-color: #715b4d;
      border-color: #715b4d; }
      .pagination li:hover a {
        color: #f7eae2; }
    .pagination li.active {
      background-color: #f7eae2;
      border-color: #f7eae2; }
      .pagination li.active a {
        cursor: auto;
        color: #715b4d; }
  .pagination a {
    padding: 10px 15px;
    color: #43342b; }
  .pagination span {
    background-color: #f7eae2;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
    .pagination span.inactive {
      cursor: auto;
      padding: 10px 15px;
      border-color: #aaa;
      background-color: #f7f5f5;
      pointer-events: none; }
    .pagination span.anterior {
      margin-right: 15px; }
    .pagination span.proxima {
      margin-left: 15px; }
    .pagination span:hover {
      background-color: #715b4d; }
      .pagination span:hover a {
        color: #f7eae2; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* SEJA UM FRANQUEADO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
/**************************************/
/***********     HEADER     ***********/
/**************************************/
.hdr-franq .top-bar {
  border: none;
  padding: 10px 0; }
.hdr-franq .hdr-top {
  margin: 0 auto; }
.hdr-franq .hdr-menu {
  justify-content: center; }

/********************************************/
/***********     APRESENTAÇÃO     ***********/
/********************************************/
#apresentacao .container.bg-white {
  border-radius: 30px;
  margin-top: -60px;
  z-index: 5;
  padding: 150px 100px 100px; }
#apresentacao .title-sec.adjust {
  border: none;
  padding-left: 0; }

.apr-block-sm {
  width: 40%; }

.apr-block-lg {
  width: 60%; }

.apr-img {
  max-width: 135%; }

.flex-n.adjust .apr-block-sm {
  width: 45%; }
.flex-n.adjust .apr-block-lg {
  width: 55%; }
.flex-n.adjust .title-sec {
  margin-bottom: 30px; }
.flex-n.adjust .main-title {
  font-size: 3.5em;
  line-height: 1em; }

.apr-txt {
  padding-left: 40px; }

/* ================== ITENS ================== */
.apr-flex {
  margin-top: 80px; }

.apr-item {
  width: 30%; }
  .apr-item img {
    margin: 0 auto 15px; }
  .apr-item .main-title {
    text-align: center; }
  .apr-item .apr-topics {
    color: #43342b;
    font-weight: 700;
    font-size: 1em;
    text-align: center;
    font-family: 'Arial-Bold';
    margin-top: 20px; }

#apresentacao .apr-item .main-title {
  text-align: center; }

/***************************************/
/***********     MERCADO     ***********/
/***************************************/
#mercado .title-sec {
  margin-bottom: 110px; }

.mer-item {
  width: 24%; }

.mer-shape {
  overflow: hidden;
  border: 1px solid #ed2e62;
  border-radius: 30px;
  height: 100%; }

.mer-circle-lg {
  position: absolute;
  left: 50%;
  margin-left: -65px;
  top: -65px;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 10px rgba(247, 234, 226, 0.7); }
  .mer-circle-lg p {
    color: #ed2e62;
    font-weight: 700;
    font-size: 3.375em;
    font-family: 'Arial-Bold'; }
    .mer-circle-lg p span {
      font-size: 0.5em; }

.mer-circle-sm {
  position: absolute;
  bottom: -25px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #f7eae2;
  box-shadow: 0px 0px 0px 5px #fff; }
  .mer-circle-sm p {
    color: #ed2e62;
    font-size: 2.25em; }
    .mer-circle-sm p.adjust {
      font-size: 1.75em; }

.mer-title {
  padding: 115px 50px 40px; }
  .mer-title p {
    color: #ed2e62;
    font-weight: 700;
    font-size: 1.125em;
    text-align: center;
    font-family: 'Arial-Bold';
    font-style: italic; }

.mer-txt {
  padding: 40px 35px; }
  .mer-txt p {
    color: #382b23;
    font-size: 1em;
    text-align: center; }

.mer-btn {
  text-align: center;
  margin-top: 60px; }

/****************************************/
/***********     PRODUTOS     ***********/
/****************************************/
#produtos {
  padding-bottom: 250px; }
  #produtos .main-title {
    text-align: left; }

.prod-flex {
  margin-bottom: 60px; }

.prod-txt {
  padding-right: 50px; }

/* ================== BLOCK ================== */
#brown {
  z-index: 3; }
  #brown .flex-bt {
    width: 70%; }

.prod-block {
  position: absolute;
  top: -150px;
  width: 100%;
  height: 300px;
  border-radius: 30px;
  padding: 0 80px; }
  .prod-block .txt-dest {
    color: #fff;
    text-align: center; }

.prod-dest {
  width: 30%;
  padding-right: 50px; }

.prod-item {
  width: 20%; }
  .prod-item img {
    margin: 0 auto; }

.prod-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.25em;
  text-align: center;
  font-family: 'Arial-Bold';
  margin-top: 25px; }

/****************************************/
/***********     OPERAÇÃO     ***********/
/****************************************/
#operacao {
  padding: 250px 0 120px; }

.opr-block-sm {
  width: 35%; }
  .opr-block-sm .txt-dest {
    margin-bottom: 40px; }

.opr-block-lg {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.opr-item {
  width: 25%;
  margin-bottom: 40px;
  padding: 0 12px; }
  .opr-item img {
    margin: 0 auto; }

.opr-title {
  color: #43342b;
  font-weight: 700;
  font-size: 1.125em;
  text-align: center;
  font-family: 'Arial-Bold';
  margin-top: 20px; }

/**********************************************/
/************     INVESTIMENTO     ************/
/**********************************************/
#investimento .main-title {
  text-align: left;
  line-height: 1em; }
#investimento .rekt-lg {
  width: 1030px;
  height: 600px;
  top: 200px; }
#investimento .rekt-sm {
  width: 400px;
  height: 90%;
  top: 5%; }
#investimento .cycle-pager {
  margin-top: 80px; }
#investimento .sub-stroke-btn {
  margin-right: 30px; }

.model-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.model-block-sm {
  width: 40%; }

.model-block-lg {
  width: 50%; }

.model-img {
  border-radius: 30px;
  box-shadow: 10px 10px 0px 0px #f7f5f5; }

.model-title {
  color: #43342b;
  font-weight: 700;
  font-size: 1.375em;
  text-transform: uppercase;
  font-family: 'Arial-Bold';
  margin: 40px 0 30px; }

.model-item {
  width: 33%;
  padding: 0 15px;
  margin-bottom: 40px; }
  .model-item img {
    margin: 0 auto; }

.model-icon-name {
  color: #43342b;
  font-weight: 700;
  font-size: 1em;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Arial-Bold';
  margin: 25px 0; }

.model-icon-txt {
  color: #43342b;
  font-size: 1.125em;
  text-align: center; }

/****************************************/
/************     ETAPAS     ************/
/****************************************/
.cafe {
  position: absolute;
  top: calc(50%-650px);
  right: 0; }

.eta-block {
  width: 800px;
  height: 130px;
  display: flex;
  align-items: center;
  margin: 0 auto; }
  .eta-block:nth-child(odd) {
    text-align: right; }
  .eta-block:nth-child(even) {
    justify-content: flex-end; }

.etapa {
  width: 35%; }

.eta-title {
  color: #715b4d;
  font-weight: 700;
  font-size: 1.5em;
  text-transform: uppercase;
  font-family: 'Arial-Bold'; }
  .eta-title span {
    color: #43342b;
    font-size: 1.5em; }

.stepline {
  position: absolute;
  left: 50%;
  margin-left: -18px;
  top: 250px; }

.line {
  width: 4px;
  height: 980px;
  position: absolute;
  left: 50%;
  margin-left: -2px; }

.step {
  width: 36px;
  height: 36px;
  border: 5px solid #ed2e62;
  border-radius: 50%;
  margin-bottom: 95px; }

/*************************************************/
/************     SEJA FRANQUEADO     ************/
/*************************************************/
#form-franquia .half-block {
  width: 49%; }
#form-franquia option {
  color: #000; }

.input, .textarea {
  color: #fff;
  font-size: 1.25em;
  background-color: transparent;
  border: 1px solid #fff;
  height: 70px;
  box-shadow: none;
  margin-bottom: 20px;
  padding-left: 50px;
  border-radius: 60px; }

.select {
  width: 100%;
  height: 70px;
  margin-bottom: 20px; }
  .select select {
    width: 100%;
    height: 70px;
    color: #fff;
    font-size: 1.5em;
    background-color: transparent;
    border: 1px solid #fff !important;
    box-shadow: none;
    padding-left: 50px;
    border-radius: 60px; }
  .select:after {
    width: 20px;
    height: 20px;
    border-color: #fff;
    border-width: 3px;
    margin-top: -15px;
    right: 40px; }
  .select:hover:after {
    border-color: #ed2e62; }

.textarea {
  min-height: 230px;
  padding: 30px 50px 20px; }

::placeholder {
  color: #fff !important;
  font-size: 1.25em;
  font-family: "Arial" !important;
  letter-spacing: normal; }

.control-radio {
  padding: 5px 0 0 10px; }

.custom-radio {
  position: relative;
  color: #fff;
  font-size: 1.3em;
  display: block;
  padding-left: 35px;
  margin-bottom: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .custom-radio input[type=radio] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer; }
    .custom-radio input[type=radio]:checked ~ .checkmark {
      background-color: #ed2e62; }
      .custom-radio input[type=radio]:checked ~ .checkmark:after {
        display: block; }
  .custom-radio:hover input[type=radio] ~ .checkmark {
    background-color: #ed2e62; }

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
  .checkmark:after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 5.5px;
    left: 5.5px;
    border-radius: 50%;
    background: #fff;
    display: none; }

.success {
  border: 1px solid #0dc13a;
  border-radius: 10px;
  padding: 10px;
  background-color: #eefff1;
  color: #0dc13a;
  margin-top: 15px; }

.error {
  border: 1px solid #ac0505;
  border-radius: 10px;
  padding: 10px;
  background-color: #f9e0e0;
  color: #ac0505;
  margin-top: 15px; }

.franq-form-btn {
  text-align: center; }
  .franq-form-btn .white-btn {
    color: #ed2e62;
    width: 100%; }
    .franq-form-btn .white-btn:hover {
      color: #fff;
      background: #ed2e62;
      border-color: #ed2e62; }

/*********************************************/
/************     DEPOIMENTOS     ************/
/*********************************************/
#depoimentos .cycle-prev {
  background: url("../img/prev-arr.png") no-repeat center top;
  left: -90px; }
#depoimentos .cycle-next {
  background: url("../img/next-arr.png") no-repeat center top;
  right: -90px; }
#depoimentos .cycle-prev, #depoimentos .cycle-next {
  position: absolute;
  top: 48%;
  z-index: 200;
  width: 60px;
  height: 60px;
  background-size: contain;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
  #depoimentos .cycle-prev:hover, #depoimentos .cycle-next:hover {
    transform: scale(1.2); }

.depo-roll .depo-item {
  width: 90%;
  margin: 100px auto 30px; }
.depo-roll .depo-txt {
  white-space: normal; }
.depo-roll .cycle-carousel-wrap {
  display: flex; }

.depo-flex {
  margin-top: 140px; }

.depo-item {
  width: 31%;
  height: 480px;
  border: 1px solid #43342b;
  border-radius: 30px; }
  .depo-item .light-btn {
    font-size: 0.9rem;
    padding: 10px 25px; }

.depo-img {
  position: absolute;
  left: 50%;
  margin-left: -90px;
  top: -90px;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 0px 10px rgba(247, 234, 226, 0.7); }

.depo-title {
  padding: 130px 50px 0; }
  .depo-title p {
    color: #43342b;
    font-weight: 700;
    font-size: 1.25em;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Arial-Bold';
    white-space: break-spaces; }

.depo-txt {
  padding: 40px 35px 20px; }
  .depo-txt p {
    color: #382b23;
    font-size: 1em;
    text-align: center; }

.depo-btn {
  text-align: center; }

.depo-aspas {
  position: absolute;
  left: 50%;
  margin-left: -43px;
  bottom: -31.5px; }

/* ================== MODAL ================== */
.depo-modal {
  display: none;
  border-radius: 70px;
  padding: 20px !important; }
  .depo-modal .depo-img {
    position: relative;
    top: 0; }
  .depo-modal .depo-title {
    padding-top: 60px; }
  .depo-modal .fancybox-button {
    width: 60px !important;
    height: 60px !important; }
    .depo-modal .fancybox-button svg {
      background: #ed2e62;
      border-radius: 50%;
      color: #fff; }
  .depo-modal .fancybox-close-small {
    right: 35px !important;
    top: 35px !important; }

.depo-modal-border {
  border: 1px solid #ed2e62;
  border-radius: 50px;
  padding: 60px; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* EMPRESA *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
/***************************************/
/************     GERAL     ************/
/***************************************/
#empresa .rekt-lg {
  width: 1500px;
  height: 445px;
  top: -60px; }
#empresa .rekt-sm {
  width: 390px;
  height: 910px;
  top: -60px; }
#empresa .coffee.adjust {
  top: 700px; }
#empresa .choco-slice {
  top: auto;
  right: -200px;
  bottom: 150px;
  width: 600px; }

/* ================== QUEM SOMOS ================== */
.quem-flex {
  display: flex;
  margin: 50px 0; }

.quem-img img {
  border-radius: 0 0 30px 0;
  box-shadow: 10px 10px 0px 0px #faa838; }

.quem-info {
  width: 50%;
  padding-left: 80px; }
  .quem-info .title-sec {
    margin-bottom: 100px; }
  .quem-info .main-title {
    -webkit-text-stroke-color: #fff;
    text-align: left; }

/* ================== VIDEO ================== */
.vid-area {
  text-align: center;
  padding: 100px 0 150px; }

.my-video {
  width: 780px;
  height: 440px;
  margin: 0 auto;
  box-shadow: 10px 10px 0px 0px #ed2e62; }

/* ================== TIMELINE ================== */
.time-area .main-title {
  -webkit-text-stroke-color: #ed2e62; }
.time-area .stepline {
  position: absolute;
  left: 50%;
  margin-left: -397px;
  top: 250px;
  width: 72%; }
.time-area .line {
  width: 785px;
  height: 4px;
  position: absolute;
  left: 3px;
  margin-left: 0; }
.time-area .step {
  margin-bottom: 0; }

.time-balls {
  margin-top: -15px; }

.time-flex {
  display: flex;
  justify-content: center; }

.time-item {
  width: 150px;
  height: 250px;
  text-align: center;
  padding: 0 5px; }

.time-down {
  padding-top: 180px; }

.time-year {
  color: #43342b;
  font-weight: 700;
  font-size: 1.5em;
  font-family: 'Arial-Bold'; }

.time-info {
  color: #43342b;
  font-size: 1.25em; }

/*********************************************/
/************     MIS VIS VAL     ************/
/*********************************************/
#mvv {
  padding: 100px 0; }
  #mvv .main-title {
    -webkit-text-stroke-color: #fff; }

.mvv-flex {
  display: flex;
  justify-content: space-between; }

.mvv-item {
  width: 30%; }
  .mvv-item img {
    margin: 0 auto; }
  .mvv-item p {
    color: #fff;
    text-align: center; }
    .mvv-item p.txt-dest {
      margin: 20px 0; }
    .mvv-item p:not(.txt-dest) {
      font-size: 1.125em; }

/*****************************************/
/************     CULTURA     ************/
/*****************************************/
#cultura {
  padding-bottom: 140px; }
  #cultura .title-sec {
    margin-bottom: 0px; }
  #cultura .main-title {
    text-align: left; }
  #cultura .txt-dest {
    margin: 20px 0 30px; }
  #cultura .rekt {
    top: -60px; }
  #cultura .rekt-lg {
    width: 1000px;
    height: 108%; }
  #cultura .rekt-sm {
    width: 450px;
    height: 98%; }

.cult-flex {
  display: flex;
  align-items: flex-end; }

.cult-txt {
  padding: 0 80px; }

.cult-topics {
  padding-left: 50px; }

.cult-item {
  display: flex;
  align-items: center;
  margin: 15px 0 0; }
  .cult-item img {
    margin-right: 20px; }
  .cult-item p {
    color: #fff;
    font-size: 1.25em; }

/********************************************/
/************     DAMAY KIDS     ************/
/********************************************/
#turminha {
  background: url("../img/bg-kids.jpg") no-repeat center top;
  background-position: 0 50%; }

.tur-item {
  width: 25%;
  text-align: center; }

.tur-title {
  color: #aaa;
  font-size: 1.25em;
  text-transform: uppercase;
  margin: 30px 0 20px; }
  .tur-title span {
    color: #43342b;
    font-weight: 700;
    font-family: 'Arial-Bold'; }

.tur-txt {
  color: #aaa;
  font-size: 1em;
  padding: 0 30px; }

/********************************************/
/************     REINVENTAR     ************/
/********************************************/
#reinventar .main-title {
  -webkit-text-stroke-color: #ed2e62; }
#reinventar .rekt {
  width: 90%;
  height: 85%;
  top: 0;
  right: -60px; }

.rei-txt .main-txt {
  margin-top: 30px; }

.rei-img {
  max-width: 110%;
  margin-top: 20px; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PRODUTOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
/***************************************/
/************     GERAL     ************/
/***************************************/
#tortas .title-sec {
  margin-bottom: 100px; }

/* ================== CATEGORIAS ================== */
.tor-cat-block {
  width: 25%; }

.tor-cat-line {
  position: absolute;
  top: calc(50% - 1px);
  width: 100%;
  height: 2px; }

.tor-cat-txt {
  color: #43342b;
  font-size: 1em;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 20px;
  display: inline-block; }

.tor-cat-list {
  padding: 0 11%; }

.tor-cat-item {
  margin-bottom: 15px; }
  .tor-cat-item:before {
    content: '';
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 10% 100%, 60% 50%, 10% 0);
    background: #43342b;
    position: absolute;
    top: 1px;
    left: -33px;
    width: 30px;
    height: 30px; }
  .tor-cat-item:after {
    content: '';
    clip-path: polygon(90% 0, 40% 50%, 90% 100%, 0 100%, 0% 50%, 0 0);
    background: #43342b;
    position: absolute;
    top: 1px;
    right: -33px;
    width: 30px;
    height: 30px; }

.tor-cat-link {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Arial-Bold';
  display: block;
  padding: 5px 0; }
  .tor-cat-link:hover {
    background: #382b23; }

.tor-cat-sublist {
  margin-top: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1614; }

.tor-cat-subitem {
  padding: 0 10px;
  transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
  .tor-cat-subitem:hover {
    background: #715b4d; }

.tor-cat-sublink {
  color: #43342b;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  display: block;
  padding: 10px 0;
  border-bottom: 1px dashed #e3d5ca; }
  .tor-cat-sublink:hover {
    border-color: #715b4d;
    color: #fbf6f2; }

/* ================== PRODUTOS ================== */
.tor-prod-block {
  width: 75%;
  margin-top: 24px;
  padding-left: 50px; }

.texture-light-block {
  width: 155%;
  height: 100%;
  position: absolute;
  border-radius: 60px; }

.tor-prod-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 45px 45px 0; }

.tor-prod-item {
  width: 31%; }

.new-badge {
  position: absolute;
  top: -20px; }

.tor-prod-box {
  border-radius: 15px;
  padding: 50px 20px; }

.tor-prod-btn {
  position: relative;
  bottom: -35px;
  left: 50%;
  margin-left: -62px; }
  .tor-prod-btn .light-btn {
    font-size: 0.9rem;
    padding: 10px 25px; }

.tor-prod-nome {
  color: #43342b;
  font-weight: 700;
  font-size: 1.125em;
  text-align: center;
  font-family: 'Arial-Bold';
  margin: 20px 0 45px;
  padding: 0 20px; }

.tor-prod-extra {
  border-top: 1px solid #c2b0a3;
  width: 100%;
  padding: 40px 0 45px; }

.tor-prod-exibe {
  color: #43342b;
  font-weight: 700;
  font-size: 1.125em;
  text-align: center;
  font-family: 'Arial-Bold'; }
  .tor-prod-exibe span {
    color: #ed2e62; }

.no-cake {
  color: #43342b;
  font-size: 2em;
  text-align: center;
  padding: 200px 50px 0; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PRODUTO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
.prod-ban {
  padding: 120px 0 140px; }
  .prod-ban .main-title {
    -webkit-text-stroke-color: #fff; }

/***************************************/
/************     GERAL     ************/
/***************************************/
#produto .container.bg-white {
  border-radius: 30px;
  margin-top: -60px;
  z-index: 5;
  padding: 100px 75px 75px; }
#produto .flexslider {
  margin-bottom: 0; }

.prod-galeria {
  width: 90%; }

.prod-info {
  padding-left: 40px; }

.breadcrumbs {
  color: #f7eae2; }
  .breadcrumbs span {
    padding: 0 10px;
    font-weight: 700; }
  .breadcrumbs a {
    color: #aaa;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em; }
    .breadcrumbs a:hover {
      color: #715b4d; }

.prod-nome {
  color: #43342b;
  font-weight: 700;
  font-size: 1.625em;
  font-family: 'Arial-Bold';
  margin: 35px 0 15px; }

.prod-carac-title {
  margin: 50px auto;
  text-align: center; }
  .prod-carac-title span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Arial-Bold';
    padding: 5px 60px;
    display: inline-block; }
    .prod-carac-title span:before {
      content: '';
      clip-path: polygon(100% 0, 100% 50%, 100% 100%, 10% 100%, 60% 50%, 10% 0);
      background: #43342b;
      position: absolute;
      top: 1px;
      left: -33px;
      width: 30px;
      height: 30px; }
    .prod-carac-title span:after {
      content: '';
      clip-path: polygon(90% 0, 40% 50%, 90% 100%, 0 100%, 0% 50%, 0 0);
      background: #43342b;
      position: absolute;
      top: 1px;
      right: -33px;
      width: 30px;
      height: 30px; }

.prod-carac {
  display: flex;
  align-items: center;
  margin-bottom: 15px; }
  .prod-carac p {
    color: #43342b;
    font-weight: 700;
    font-size: 1em;
    font-family: 'Arial-Bold';
    padding-left: 20px; }

.prod-loja {
  border-top: 1px solid #aaa;
  text-align: center;
  padding-top: 40px;
  margin-top: 50px; }
  .prod-loja .green-btn {
    padding: 15px 40px;
    font-size: 1em; }

/**********************************************/
/************     RELACIONADOS     ************/
/**********************************************/
#relacionados .tor-prod-item {
  width: 23%; }

.rel-btn {
  text-align: center; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* UNIDADES *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
.onde-item {
  border: 1px solid #ed2e62;
  border-radius: 30px;
  margin-bottom: 80px;
  padding: 80px 0; }
  .onde-item img {
    position: absolute;
    left: -150px;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 10px 0px 0px #ed2e62; }

.onde-info {
  width: 55%;
  margin-left: auto; }
  .onde-info .main-title {
    text-align: left; }

.onde-flex {
  display: flex;
  align-items: center;
  margin-bottom: 35px; }
  .onde-flex i {
    color: #43342b;
    font-size: 2em;
    margin-right: 25px; }

.onde-add p {
  color: #43342b;
  font-weight: 700;
  font-size: 1.25em;
  text-transform: uppercase;
  font-family: 'Arial-Bold'; }
.onde-add span {
  color: #43342b;
  font-size: 1.25em;
  display: block; }

.onde-tel {
  color: #43342b;
  font-size: 1.25em; }

.onde-btn .main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 330px; }
.onde-btn i {
  margin-right: 20px;
  font-size: 1.5em; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* RESPONSABILIDADE *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
.resp-block {
  border-radius: 30px;
  padding: 80px; }

.resp-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px; }
  .resp-item img {
    margin-right: 30px; }

/******************************************/
/************     RECICLAR     ************/
/******************************************/
.rec-sec {
  padding: 50px 0 75px; }
  .rec-sec .main-title {
    -webkit-text-stroke-color: #fff; }

.rec-block {
  width: 30%;
  border-radius: 30px;
  padding: 35px; }
  .rec-block p {
    color: #43342b;
    font-size: 1em;
    text-align: center;
    text-transform: uppercase; }
  .rec-block .rec-dest {
    color: #fff;
    font-weight: 700;
    font-size: 1.75em;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Arial-Bold'; }

.plastico {
  background: url("../img/plastico-bg.jpg") repeat center top; }
  .plastico .rec-dest {
    color: #f05744; }

.papel {
  background: url("../img/papel-bg.jpg") repeat center top; }
  .papel .rec-dest {
    color: #14a9e1; }

.metal {
  background: url("../img/metal-bg.jpg") repeat center top; }
  .metal .rec-dest {
    color: #faa838; }

.vidro {
  background: url("../img/vidro-bg.jpg") repeat center top; }
  .vidro .rec-dest {
    color: #09b6a7; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* BLOG *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
#blog .main-title {
  text-align: left; }
#blog .blog-item-title {
  font-size: 1.25em; }
  #blog .blog-item-title a {
    color: #43342b; }
    #blog .blog-item-title a:hover {
      color: #715b4d; }

.blog-flex {
  display: flex;
  justify-content: space-between; }

.blog-main {
  width: 60%; }

.blog-item {
  width: 100%;
  margin-bottom: 30px; }
  .blog-item .sub-btn {
    font-size: 1rem;
    padding: 6px 30px 8px; }
  .blog-item .blog-data {
    color: #43342b; }

.blog-img {
  display: block; }
  .blog-img .filter i {
    font-size: 6em;
    padding-top: 23%; }
  .blog-img:hover .filter {
    opacity: 1; }

.blog-cat {
  margin-top: 25px; }

.heartline {
  margin-top: 30px; }

.blog-nope {
  margin-top: 100px; }
  .blog-nope p {
    color: #43342b;
    font-size: 2em;
    text-align: center; }

/* ================== LATERAL ================== */
.blog-aside {
  width: 30%; }

.blog-search p {
  margin-bottom: 20px; }

#blog_busca {
  color: #707070;
  font-size: 1em;
  padding: 20px 20px 20px 40px;
  width: 100%;
  border: 1px dashed #e3d5ca;
  border-radius: 60px;
  outline: none; }

#bt_blog_busca {
  position: absolute;
  top: 70px;
  right: 0;
  color: rgba(0, 0, 0, 0.3);
  font-size: 1.5em;
  width: 50px;
  padding: 0 20px 5px 0;
  background: transparent;
  border: none;
  outline: none;
  transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
  #bt_blog_busca:hover {
    color: #715b4d; }

#blog ::placeholder, #post ::placeholder {
  color: #43342b !important;
  font-weight: 1em;
  font-size: 400;
  font-family: 'Arial' !important;
  letter-spacing: 0.05em; }

.blog-categorias {
  padding: 60px 0;
  margin-bottom: 40px; }
  .blog-categorias img {
    margin: 0 auto; }
  .blog-categorias .frase-img {
    margin-top: 30px; }
  .blog-categorias .cat-title {
    margin: 10px 0 20px;
    text-align: center; }
  .blog-categorias.adjust {
    padding: 60px 40px; }

.blog-categorias-list {
  padding: 20px 40px;
  border: 1px dashed #e3d5ca;
  border-radius: 30px;
  margin-bottom: 40px; }
  .blog-categorias-list hr {
    margin: 15px 0;
    border-top: 1px dashed #ed2e62; }

.list-categorias {
  color: #43342b;
  font-weight: 700;
  font-size: 1em;
  font-family: 'Arial-Bold'; }
  .list-categorias span {
    color: #aaa;
    font-weight: 400; }
  .list-categorias:hover {
    color: #ed2e62; }

.coffee {
  position: absolute;
  top: 840px;
  right: 0px; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* POST *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
#post .title-sec {
  margin-bottom: 20px; }
#post .heartline {
  margin: 35px 0; }

.post-title {
  font-size: 2em; }

.post-catdat {
  margin: 50px 0; }
  .post-catdat .sub-btn {
    font-size: 1rem;
    padding: 6px 30px 8px; }

.gal-flex {
  display: flex;
  flex-wrap: wrap; }

.gal-item {
  width: 23%;
  margin: 1%; }
  .gal-item a {
    display: block; }
    .gal-item a:hover .filter {
      opacity: 1; }
  .gal-item .filter i {
    font-size: 3em;
    padding-top: 20%; }

.share-back {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px; }

#home-blog.related {
  padding-top: 0; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* CONTATO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
/********************************************/
/************     FORMULÁRIO     ************/
/********************************************/
#contato .input, #contato .textarea, #pesquisa .input, #pesquisa .textarea {
  color: #43342b;
  font-weight: 700;
  font-size: 1.5em;
  font-family: 'Arial-Bold';
  background-color: #fff;
  border: 1px solid #c2b0a3;
  height: 60px;
  box-shadow: none;
  margin-bottom: 25px;
  padding-left: 40px;
  border-radius: 40px; }
#contato .textarea, #pesquisa .textarea {
  min-height: 230px;
  padding: 20px 40px; }
#contato .select select, #pesquisa .select select {
  color: #43342b;
  font-weight: 700;
  font-size: 1.5em;
  font-family: 'Arial-Bold';
  background-color: #fff;
  border: 1px solid #c2b0a3 !important;
  height: 60px;
  box-shadow: none;
  margin-bottom: 25px;
  padding-left: 40px;
  border-radius: 40px; }
#contato .select:after, #pesquisa .select:after {
  width: 20px;
  height: 20px;
  border-color: #ed2e62;
  border-width: 3px;
  margin-top: -20px; }
#contato ::placeholder, #pesquisa ::placeholder {
  color: #43342b !important;
  font-weight: 700;
  font-size: 1em;
  font-family: 'Arial-Bold';
  font-family: "Arial-Bold" !important;
  letter-spacing: normal; }

.con-block {
  width: 48%; }

.success {
  border: 1px solid #0dc13a;
  border-radius: 10px;
  padding: 10px;
  background-color: #eefff1;
  color: #0dc13a;
  margin-top: 15px; }

.error {
  border: 1px solid #ac0505;
  border-radius: 10px;
  padding: 10px;
  background-color: #f9e0e0;
  color: #ac0505;
  margin-top: 15px; }

.form-btn {
  text-align: center;
  width: 100%;
  margin-top: 40px; }

/***************************************/
/************     INFOS     ************/
/***************************************/
#con-info {
  padding-bottom: 0; }
  #con-info.adjust {
    padding-bottom: 30px; }

.con-flex {
  display: flex;
  align-items: center;
  margin-bottom: 80px; }
  .con-flex i {
    color: #ed2e62;
    font-size: 2.25em;
    margin-right: 15px; }

.con-info {
  color: #43342b;
  font-weight: 700;
  font-size: 1.5em;
  font-family: 'Arial-Bold'; }
  .con-info:hover {
    color: #43342b; }
  .con-info span {
    color: #ed2e62; }

.con-tel {
  font-size: 1.75em; }
  .con-tel span {
    font-size: 0.75em; }

.con-add {
  margin-bottom: 25px; }
  .con-add i {
    color: #ed2e62;
    font-size: 2.25em;
    margin-bottom: 15px; }
  .con-add .main-txt {
    font-size: 1.25em; }

.map-area {
  margin-bottom: -10px; }

.my-map {
  width: 100%;
  height: 420px; }

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
  -webkit-text-fill-color: #43342b;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s; }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* TRABALHE CONOSCO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
.fileUpload {
  position: absolute;
  top: 1px;
  right: 1px;
  z-index: 10;
  color: #43342b;
  font-weight: 900;
  font-size: 2em;
  overflow: hidden;
  padding: 10px 100px;
  background: #f7f5f5;
  border-left: 1px solid #c2b0a3;
  border-radius: 0 40px 40px 0;
  cursor: pointer;
  height: 58px;
  transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
  .fileUpload:hover {
    background: #43342b;
    color: #fff; }
  .fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0); }

/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* MEDIA QUERY *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
/*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
/*******************************************************/
/********************* NOTEBOOK ************************/
/*******************************************************/
@media only screen and (min-width: 1280px) and (max-width: 1400px) {
  body {
    overflow: hidden; }

  .sec-space {
    padding: 120px 0; }

  .container {
    max-width: 1120px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* HOME *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  /********* Header **********/
  a.nav-item {
    font-size: 0.9em;
    margin: 0 7px; }

  /********* Banner **********/
  #banner .container_slide, #banner .cycle-slideshow li {
    height: 600px; }

  .progress-bar-bg, .progress-bar {
    height: 10px; }

  /********* Empresa **********/
  .emp-img {
    margin-top: 60px; }

  /********* Produtos **********/
  #home-produtos {
    padding-top: 40px; }

  /********* Express **********/
  #express {
    padding-bottom: 40px; }

  /********* Unidades **********/
  #home-unidades .rekt-sm {
    display: none; }
  #home-unidades .rekt-lg {
    width: 800px; }

  /********* Blog **********/
  .coffee.adjust {
    top: 0px; }

  /********* Franqueados **********/
  .brownie-block {
    width: 150px;
    clip-path: polygon(60% 0, 100% 0%, 100% 100%, 0% 100%); }

  .choco-slice {
    right: -25%; }

  /********* Instagram **********/
  #instagram .rekt.rekt-sm {
    width: 500px; }
  #instagram .rekt.rekt-lg {
    width: 550px; }

  /********* Parceiros **********/
  #parceiros .container-slide .cycle-prev {
    left: -60px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* FRANQUEADOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #investimento .rekt-sm {
    display: none; }
  #investimento .rekt-lg {
    width: 720px; }

  #etapas {
    padding-top: 40px; }

  .cafe {
    right: -130px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* EMPRESA *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #empresa .choco-slice {
    right: -250px;
    bottom: 200px;
    width: 500px; }

  #cultura .rekt-lg {
    width: 700px; }
  #cultura .rekt-sm {
    width: 150px; }

  #turminha {
    background: #fff; }

  #reinventar .rekt {
    width: 105%; }

  .uni-info {
    margin: 35px 0 0 50px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PRODUTO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #carousel .slides li {
    width: 90px !important; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* BLOG *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #blog .coffee {
    top: 900px;
    right: -100px; } }
/***************************************************************/
/********************* TABLET LANDSCAPE ************************/
/***************************************************************/
@media only screen and (min-width: 768px) and (max-width: 1279px) and (orientation: landscape) {
  body {
    overflow: hidden; }

  .desktop-only, .logo-mobile, .mobile-only, .tablet-hidden, .mobile-tablet, .tablet-vert {
    display: none !important; }

  .container {
    max-width: 960px;
    padding: 0 5%; }

  .sec-space {
    padding: 100px 0; }

  .main-title {
    font-size: 2.25em; }

  .main-txt {
    font-size: 1em; }

  .txt-dest {
    font-size: 1.25em; }

  .main-btn, .stroke-btn, .white-btn, .white-stroke-btn, .sub-btn, .sub-stroke-btn, .light-btn, .green-btn, .txt-btn {
    font-size: 1em;
    padding: 15px 55px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* HOME *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  /********* Header **********/
  a.nav-item {
    font-size: 0.7em;
    margin: 0 7px; }

  /********* Banner **********/
  #banner .container_slide, #banner .cycle-slideshow li {
    height: 550px; }

  .progress-bar-bg, .progress-bar {
    height: 10px; }

  /********* Empresa **********/
  .emp-img {
    margin-top: 60px; }

  /********* Produtos **********/
  #home-produtos {
    padding-top: 40px; }

  /********* Express **********/
  #express {
    padding-bottom: 40px; }

  .exp-btn .sub-btn {
    padding: 15px 35px; }

  /********* Unidades **********/
  #home-unidades .rekt-sm {
    display: none; }
  #home-unidades .rekt-lg {
    width: 650px; }

  /********* Blog **********/
  .coffee.adjust {
    top: 0px; }

  /********* Franqueados **********/
  .brownie-block {
    width: 250px;
    clip-path: polygon(60% 0, 100% 0%, 100% 100%, 0% 100%); }

  .choco-slice {
    display: none; }

  .fran-info {
    padding: 0 20% 8% 27%; }

  /********* Instagram **********/
  #instagram {
    padding-bottom: 0; }
    #instagram .rekt.rekt-sm {
      width: 400px;
      height: 300px; }
    #instagram .rekt.rekt-lg {
      width: 450px;
      height: 700px; }
    #instagram .rekt.rekt-r {
      bottom: 25px; }

  .insta-flex {
    margin-top: 40px; }

  .insta-item {
    width: 200px;
    height: 200px; }

  .insta-wtf {
    right: 443px; }
    .insta-wtf.insta-big {
      width: 280px;
      height: 280px;
      top: -40px;
      right: 145px; }
    .insta-wtf.insta-last {
      top: -40px; }

  /********* Parceiros **********/
  #parceiros .container-slide .cycle-prev {
    left: -60px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* FRANQUEADOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #apresentacao .container.bg-white {
    padding-top: 100px; }

  .apr-img {
    max-width: 140%; }

  /********* Mercado **********/
  .mer-title {
    padding: 115px 20px 40px; }

  /********* Produtos **********/
  .prod-block {
    left: 0;
    padding: 0 50px; }

  /********* Operação **********/
  #operacao {
    padding-bottom: 0; }

  .opr-block-sm {
    width: 30%; }

  .opr-block-lg {
    width: 70%; }

  /********* Investimento **********/
  #investimento .rekt-sm {
    display: none; }
  #investimento .rekt-lg {
    width: 600px;
    height: 600px;
    top: 120px; }

  .model-item img {
    width: 60px; }

  .model-icon-name, .model-icon-txt {
    font-size: 0.9em; }

  /********* Etapas **********/
  #etapas {
    padding-top: 40px; }

  .cafe {
    right: -130px; }

  .stepline {
    top: 220px; }

  .line {
    height: 940px; }

  .eta-block:nth-child(odd) {
    margin-left: 60px; }
  .eta-block:nth-child(even) {
    width: 600px; }

  /********* Depoimentos **********/
  .depo-item {
    height: 520px; }

  .depo-modal .container {
    width: 100%;
    padding: 0; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* EMPRESA *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #empresa {
    padding-top: 70px; }
    #empresa .rekt-lg {
      width: 1000px;
      height: 345px; }
    #empresa .rekt-sm {
      width: 250px;
      height: 850px; }
    #empresa .choco-slice {
      right: -250px;
      bottom: 200px;
      width: 500px; }
    #empresa .coffee.adjust {
      top: 780px; }

  .time-area .stepline {
    margin-left: -378px;
    top: 235px;
    width: 88%; }
  .time-area .line {
    width: 745px; }

  #cultura .rekt-lg {
    width: 600px; }
  #cultura .rekt-sm {
    width: 150px;
    height: 80%; }

  #turminha {
    background: #fff; }

  #reinventar .rekt {
    width: 100%;
    height: 41%;
    top: 55px;
    left: -60px;
    right: auto; }

  .uni-info {
    margin: 35px 0 0 50px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PRODUTOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .banner.adjust img {
    max-width: 120%; }

  .tor-prod-item {
    width: 48%; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PRODUTO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #carousel .slides li {
    width: 80px !important; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* RESPONSABILIDADE *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .rec-block {
    width: 37%; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* UNIDADES *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .onde-item img {
    left: -85px;
    width: 400px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* BLOG *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #blog .coffee {
    top: 900px;
    right: -100px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* TRABALHE CONOSCO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .fileUpload {
    padding: 10px 70px; } }
/***************************************************************/
/*********************** TABLET PORTRAIT ***********************/
/***************************************************************/
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body {
    overflow-x: hidden;
    min-height: 1410px; }

  .desktop-only, .tablet-hidden, .mobile-hidden {
    display: none !important; }

  .mobile-tablet, .desktop-hidden, .tablet-vert {
    display: block !important; }

  .container {
    width: 100%;
    padding: 0 8%; }

  .sec-space {
    padding: 80px 0; }

  .main-title {
    font-size: 2.25em; }

  .main-txt {
    font-size: 1.125em; }

  .txt-dest {
    font-size: 1.25em; }

  .main-btn, .stroke-btn, .white-btn, .white-stroke-btn, .sub-btn, .sub-stroke-btn, .light-btn, .green-btn, .txt-btn {
    font-size: 1em;
    padding: 15px 55px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* HOME *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  /********* Header **********/
  .top-bar {
    height: 35px; }

  .hdr-menu {
    display: none; }

  .bottom-bar .hdr-flex {
    display: none; }

  .fix-menu {
    display: block; }

  .nav-toggle {
    display: block;
    height: 100px; }
    .nav-toggle span {
      width: 35px;
      height: 3px;
      background-color: #fff;
      margin-left: -17.5px; }
      .nav-toggle span:nth-child(2) {
        margin-top: 1px; }
      .nav-toggle span:nth-child(3) {
        margin-top: 8px; }
    .nav-toggle.is-active span:nth-child(1) {
      transform: rotate(45deg);
      margin-top: -15px; }
    .nav-toggle.is-active span:nth-child(3) {
      transform: rotate(-45deg);
      margin-top: 8px; }

  /* ================== MENU ABERTO ================== */
  .nav-menu {
    background: url("../img/damay-texture-light.jpg") no-repeat center top;
    position: fixed;
    top: 0;
    z-index: 501;
    height: 100vh;
    padding-top: 20px; }
    .nav-menu .flex-rdc {
      padding-bottom: 60px; }
    .nav-menu .nav-item {
      border: none;
      font-size: 1.5em;
      text-align: center;
      display: block;
      margin: 10px 0; }
      .nav-menu .nav-item.adjust {
        color: #ed2e62; }
      .nav-menu .nav-item.is-active {
        color: #43342b;
        font-weight: 700;
        font-family: 'Arial-Bold'; }

  .nav-close {
    display: block;
    width: 50px;
    height: 100px;
    cursor: pointer;
    position: relative; }
    .nav-close span {
      position: absolute;
      left: 50%;
      margin-left: -7px;
      top: 50%;
      width: 35px;
      height: 3px;
      background-color: #43342b;
      margin-left: -17.5px;
      display: block; }
      .nav-close span:nth-child(1) {
        transform: rotate(45deg);
        margin-top: 0px; }
      .nav-close span:nth-child(2) {
        transform: rotate(-45deg);
        margin-top: 0px; }

  /********* Banner **********/
  #banner .container_slide, #banner .cycle-slideshow li {
    height: 550px; }

  .progress-bar-bg, .progress-bar {
    height: 10px; }

  /********* Empresa **********/
  #home-empresa .flex-n {
    flex-wrap: wrap; }

  .emp-block-sm {
    width: 100%; }

  .emp-txt {
    padding-right: 50%; }

  .emp-block-lg {
    width: 80%;
    position: absolute;
    top: -20px;
    right: -180px; }

  .emp-img {
    margin-top: 0; }

  /********* Produtos **********/
  #home-produtos {
    padding-top: 40px; }
    #home-produtos .flex-btc {
      flex-wrap: wrap; }
    #home-produtos .flex-direction-nav .flex-prev {
      left: -50px; }
    #home-produtos .flex-direction-nav .flex-next {
      right: -50px; }

  .tor-block {
    width: 100%; }

  /********* Express **********/
  #express {
    padding-bottom: 40px; }
    #express .half-block {
      width: 100%; }
      #express .half-block .half-block {
        width: 50%; }

  .exp-logo {
    margin: 0px 0 60px; }

  .exp-btn {
    text-align: center; }
    .exp-btn .sub-btn {
      padding: 15px 35px; }

  /********* Unidades **********/
  #home-unidades .rekt-sm {
    display: none; }
  #home-unidades .rekt-lg {
    width: 115%; }
  #home-unidades .cycle-next, #home-unidades .cycle-prev {
    top: 80%; }
  #home-unidades .cycle-prev {
    left: 0; }
  #home-unidades .cycle-next {
    right: 0; }

  .uni-btn .sub-stroke-btn {
    padding: 15px 35px; }

  .uni-info {
    margin: 35px 0 0 -15px;
    text-align: center; }

  /********* Blog **********/
  .coffee.adjust {
    top: 0px; }

  .h-blog-item {
    width: 48%; }
    .h-blog-item:last-child {
      display: none; }

  /********* Franqueados **********/
  .brownie-block {
    width: 200px;
    clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0% 100%); }

  .choco-slice {
    display: none; }

  .fran-info {
    padding: 0 10% 8% 35%; }

  /********* Instagram **********/
  #instagram {
    background: #f7f5f5; }
    #instagram .rekt {
      display: none; }

  .insta-flex {
    margin-top: 40px;
    flex-direction: row-reverse; }

  .insta-item {
    width: 200px;
    height: 200px; }

  .insta-wtf {
    right: 443px; }
    .insta-wtf.insta-big {
      width: 280px;
      height: 280px;
      top: -40px;
      right: 145px; }
    .insta-wtf.insta-last {
      top: -40px; }

  /********* Parceiros **********/
  #parceiros .container-slide .cycle-prev {
    left: -60px; }

  /********* Footer **********/
  .foo-flex {
    flex-wrap: wrap; }

  .foo-logo-area {
    width: 100%; }

  .foo-logo {
    margin: 0 auto; }

  .foo-info-flex {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 50px; }

  .foo-block {
    width: 100%;
    margin-top: 50px;
    text-align: center; }
    .foo-block.adjust {
      width: 50%;
      margin-top: 0; }
      .foo-block.adjust ul {
        display: inline-block; }
      .foo-block.adjust li {
        text-align: left; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* SUBS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .pagination li {
    max-width: 48px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* FRANQUEADOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .hdr-franq .top-bar {
    height: 115px; }
  .hdr-franq .bottom-bar, .hdr-franq .hdr-toggle {
    display: none; }

  #apresentacao .container.bg-white {
    padding-top: 100px;
    margin-top: -25px; }
  #apresentacao .flex-n {
    flex-wrap: wrap; }
    #apresentacao .flex-n.adjust {
      margin-top: -80px; }
      #apresentacao .flex-n.adjust .apr-block-lg {
        display: none; }
      #apresentacao .flex-n.adjust .apr-block-sm {
        width: 100%; }
  #apresentacao .emp-txt {
    padding-right: 0; }

  .apr-block-sm, .apr-block-lg {
    width: 100%; }

  .apr-img {
    max-width: 140%; }

  .apr-item .main-title {
    font-size: 2em; }

  /********* Mercado **********/
  #mercado .flex-bt {
    flex-wrap: wrap; }
  #mercado .title-sec {
    margin-bottom: 0px; }

  .mer-item {
    width: 48%;
    margin-top: 110px; }

  .mer-title {
    padding: 115px 20px 40px; }

  /********* Produtos **********/
  #produtos .flex-bt {
    flex-wrap: wrap; }
  #produtos .flex-prev {
    left: -45px; }
  #produtos .flex-next {
    right: -45px; }

  .prod-block {
    left: 0;
    padding: 30px 50px;
    height: 350px; }

  /********* Brown **********/
  #brown .flex-btc {
    flex-wrap: wrap; }
  #brown .flex-bt {
    width: 100%; }

  .prod-dest {
    width: 100%;
    padding-right: 0px; }

  /********* Operação **********/
  #operacao {
    padding: 300px 0 0; }
    #operacao .flex-n {
      flex-wrap: wrap; }

  .opr-block-sm {
    width: 100%; }

  .opr-block-lg {
    width: 100%;
    margin-top: 50px; }

  /********* Investimento **********/
  #investimento {
    background: #f7f5f5; }
    #investimento .rekt {
      display: none; }
    #investimento .flex-bt {
      flex-wrap: wrap; }
    #investimento .cycle-pager {
      margin-top: 30px; }

  .model-block-sm {
    width: 100%; }

  .model-block-lg {
    width: 100%;
    margin-top: 50px; }

  /********* Etapas **********/
  .cafe {
    display: none; }

  .stepline {
    top: 220px; }

  .line {
    height: 940px; }

  .eta-block {
    width: 600px; }
    .eta-block:nth-child(odd) {
      margin-left: 20px; }

  /********* Depoimentos **********/
  #depoimentos .cycle-prev {
    left: -55px; }
  #depoimentos .cycle-next {
    right: -55px; }

  .depo-item {
    height: 520px; }

  .depo-modal .container {
    width: 100%;
    padding: 0; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* EMPRESA *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #empresa {
    padding: 70px 0 170px; }
    #empresa .rekt-lg {
      width: 1000px;
      height: 345px; }
    #empresa .rekt-sm {
      width: 120px;
      height: 850px; }
    #empresa .choco-slice {
      right: -250px;
      bottom: 200px;
      width: 500px; }
    #empresa .coffee.adjust {
      top: 560px; }

  .quem-info {
    padding-left: 50px; }

  .my-video {
    width: 100%; }

  .time-area .stepline {
    margin-left: -287px;
    top: 235px;
    width: 89%; }
  .time-area .line {
    width: 565px; }

  .mvv-flex {
    flex-wrap: wrap; }

  .mvv-item {
    width: 60%;
    margin: 0 auto 60px; }

  #cultura .rekt-lg {
    width: 900px;
    height: 32%;
    top: 58%; }
  #cultura .rekt-sm {
    width: 250px;
    height: 80%;
    left: auto;
    right: -60px; }

  .cult-flex {
    flex-wrap: wrap; }
    .cult-flex .half-block {
      width: 80%; }

  .cult-txt {
    padding: 0 40px 50px; }

  #turminha {
    padding-top: 0;
    background: #fff; }
    #turminha .flex-n {
      flex-wrap: wrap; }
    #turminha .tur-item {
      width: 50%;
      margin-bottom: 50px; }

  #reinventar .rekt {
    display: none; }
  #reinventar .rei-txt {
    width: 50%; }
  #reinventar .emp-block-lg {
    top: -100px; }
  #reinventar .rei-img {
    margin-top: 0; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PRODUTOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .banner.adjust img {
    max-width: 120%; }

  #tortas .flex-n {
    flex-wrap: wrap; }
  #tortas .tor-cat-block {
    width: 100%; }

  .tor-cat-title {
    margin-bottom: 30px; }
    .tor-cat-title .main-btn {
      display: flex;
      align-items: center;
      margin: 0 auto;
      width: 38%; }
    .tor-cat-title i {
      font-size: 1.5em;
      margin: 0 -15px 0 15px;
      transition: all 0.2s cubic-bezier(0.54, 0.18, 0.13, 1); }
      .tor-cat-title i.active {
        transform: rotate(180deg); }

  .tor-cat-list {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
    .tor-cat-list.active {
      max-height: 800px; }

  .tor-prod-block {
    width: 100%;
    margin-top: 24px;
    padding-left: 0; }

  .texture-light-block {
    width: 900px;
    left: -120px; }

  .tor-prod-item {
    width: 48%; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PRODUTO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #carousel .slides li {
    width: 80px !important; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* RESPONSABILIDADE *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .rec-block {
    width: 45%; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* BLOG *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #blog .coffee {
    display: none; }

  .blog-flex {
    flex-wrap: wrap; }

  .blog-main {
    width: 100%; }

  .blog-aside {
    width: 100%;
    margin-top: 80px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* ONDE ESTAMOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .onde-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .onde-item img {
      position: relative;
      left: auto;
      width: 500px; }

  .onde-info {
    width: 80%;
    margin-top: 60px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* TRABALHE CONOSCO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #con-info .flex-btc {
    justify-content: center;
    flex-wrap: wrap; }

  .fileUpload {
    padding: 10px 70px; } }
/***************************************************************/
/************************* SMARTPHONE **************************/
/***************************************************************/
@media only screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
    min-height: 1300px; }

  .desktop-only, .mobile-hidden, .mobile-total-hide, .tablet-vert {
    display: none !important; }

  .mobile-only, .mobile-tablet, .desktop-hidden {
    display: block !important; }

  .waypoint {
    opacity: 1 !important; }

  .container {
    width: 100%;
    padding: 0 8%; }

  .sec-space {
    padding: 80px 0 60px; }

  .main-title {
    font-size: 2em; }
    .main-title span {
      font-size: 1.375em; }

  .main-sub {
    font-size: 1.125em; }

  .main-txt {
    font-size: 1em; }

  .txt-dest {
    font-size: 1.25em; }

  .flex-n, .flex-bt, .flex-rd {
    flex-wrap: wrap; }

  .half-block {
    width: 100%; }

  .main-btn, .stroke-btn, .white-btn, .white-stroke-btn, .sub-btn, .sub-stroke-btn, .light-btn, .green-btn, .txt-btn {
    font-size: 1em;
    padding: 15px 55px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* HOME *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  /********* Header **********/
  .top-bar {
    height: 10px;
    min-height: 0; }

  .hdr-menu {
    display: none; }

  .bottom-bar .hdr-flex {
    display: none; }

  .fix-menu {
    display: block; }

  .nav-toggle {
    display: block;
    height: 100px; }
    .nav-toggle span {
      width: 35px;
      height: 3px;
      background-color: #fff;
      margin-left: -17.5px; }
      .nav-toggle span:nth-child(2) {
        margin-top: 1px; }
      .nav-toggle span:nth-child(3) {
        margin-top: 8px; }
    .nav-toggle.is-active span:nth-child(1) {
      transform: rotate(45deg);
      margin-top: -15px; }
    .nav-toggle.is-active span:nth-child(3) {
      transform: rotate(-45deg);
      margin-top: 8px; }

  /* ================== MENU ABERTO ================== */
  .nav-menu {
    background: url("../img/damay-texture-light.jpg") no-repeat center top;
    position: fixed;
    top: 0;
    z-index: 501;
    height: 100vh; }
    .nav-menu .nav-item {
      border: none;
      font-size: 1em;
      text-align: center;
      display: block;
      margin: 0;
      padding: 8px; }
      .nav-menu .nav-item.adjust {
        color: #ed2e62; }
      .nav-menu .nav-item.is-active {
        color: #43342b;
        font-weight: 700;
        font-family: 'Arial-Bold'; }

  .nav-close {
    display: block;
    width: 50px;
    height: 100px;
    cursor: pointer;
    position: relative; }
    .nav-close span {
      position: absolute;
      left: 50%;
      margin-left: -7px;
      top: 50%;
      width: 35px;
      height: 3px;
      background-color: #43342b;
      margin-left: -17.5px;
      display: block; }
      .nav-close span:nth-child(1) {
        transform: rotate(45deg);
        margin-top: 0px; }
      .nav-close span:nth-child(2) {
        transform: rotate(-45deg);
        margin-top: 0px; }

  /* ================== FIXED BTNs ================== */
  .goup-area, .wpp-area {
    bottom: 10px;
    width: 50px;
    height: 50px; }
    .goup-area .fix-circle, .wpp-area .fix-circle {
      top: 0px;
      left: 0;
      width: 50px;
      height: 50px; }
    .goup-area .circle, .wpp-area .circle {
      width: 130px;
      height: 130px; }
    .goup-area i, .wpp-area i {
      top: 7px;
      left: 12px;
      font-size: 2em; }

  .goup-area {
    right: 10px; }

  .wpp-area {
    left: 10px; }

  /********* Banner **********/
  #banner .container_slide, #banner .cycle-slideshow li {
    height: 350px; }

  .progress-bar-bg, .progress-bar {
    height: 10px; }

  /********* Empresa **********/
  #home-empresa .flex-n {
    flex-wrap: wrap; }

  .emp-block-sm {
    width: 100%; }

  .emp-txt {
    padding-right: 0; }

  .emp-block-lg {
    display: none; }

  .emp-img {
    margin-top: 0; }

  /********* Produtos **********/
  #home-produtos {
    padding-top: 40px; }
    #home-produtos .flex-btc {
      flex-wrap: wrap; }
    #home-produtos .flex-direction-nav a {
      top: 93%; }
    #home-produtos .flex-direction-nav .flex-prev {
      left: -10px; }
    #home-produtos .flex-direction-nav .flex-next {
      right: -30px; }

  .tor-block {
    width: 100%; }

  /********* Promoção **********/
  #promocoes {
    padding-top: 40px; }
    #promocoes .cycle-prev {
      left: -10px; }
    #promocoes .cycle-next {
      right: -10px; }
    #promocoes .cycle-slide img {
      margin: 0 auto; }

  .tor-block {
    width: 100%; }

  /********* Express **********/
  #express {
    padding-bottom: 80px;
    text-align: center; }
    #express .main-title {
      text-align: center; }

  .exp-logo {
    margin: 0px 0 60px; }

  .exp-btn {
    text-align: center; }
    .exp-btn .sub-btn {
      padding: 15px 35px; }

  /********* Unidades **********/
  #home-unidades .rekt-sm {
    display: none; }
  #home-unidades .rekt-lg {
    width: 130%; }
  #home-unidades .title-sec {
    margin-bottom: 40px; }
  #home-unidades .cycle-next, #home-unidades .cycle-prev {
    top: 80%; }
  #home-unidades .cycle-prev {
    left: 0; }
  #home-unidades .cycle-next {
    right: 0; }

  .uni-btn {
    margin: 50px 0 0;
    text-align: center; }
    .uni-btn .sub-stroke-btn {
      padding: 15px 35px; }

  .uni-info {
    margin: 35px 0 0 -15px;
    text-align: center; }

  /********* Blog **********/
  #home-blog .title-sec {
    margin-bottom: 40px; }

  .coffee {
    display: none; }

  .h-blog-item {
    width: 100%; }

  /********* Franqueados **********/
  #home-franqueados .main-title span {
    font-size: 1.375em; }

  .brownie-block {
    width: 70px;
    clip-path: polygon(90% 0, 100% 0%, 100% 100%, 0% 100%); }

  .fran-circle {
    display: none; }

  .choco-slice {
    display: none; }

  .fran-info {
    padding: 0; }

  /********* Instagram **********/
  #instagram {
    background: #f7f5f5; }
    #instagram .rekt {
      display: none; }

  .insta-flex {
    margin-top: 40px;
    flex-direction: column-reverse; }

  .insta-item {
    width: 300px;
    height: 300px; }

  .insta-wtf {
    right: 443px; }
    .insta-wtf.insta-big {
      width: 280px;
      height: 280px;
      top: -40px;
      right: 145px; }
    .insta-wtf.insta-last {
      top: -40px; }

  /********* Parceiros **********/
  #parceiros .container-slide .cycle-prev {
    left: 0px; }
  #parceiros .container-slide .cycle-next {
    right: 0px; }

  .parca-roll img {
    margin: 0 auto; }

  /********* Footer **********/
  .foo-flex {
    flex-wrap: wrap;
    padding: 80px 0 100px; }

  .foo-logo-area {
    width: 100%; }

  .foo-logo {
    margin: 0 auto; }

  .foo-info-flex {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 50px; }

  .foo-block {
    width: 100%;
    margin-top: 50px;
    text-align: center; }
    .foo-block.adjust {
      margin-top: 0; }
      .foo-block.adjust ul {
        display: inline-block; }

  .foo-social {
    flex-direction: row-reverse;
    justify-content: center; }
    .foo-social a {
      margin: 0 10px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* SUBS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .pagination li {
    max-width: 48px; }
  .pagination span {
    display: none; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* FRANQUEADOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .hdr-franq .top-bar {
    height: 115px; }
  .hdr-franq .bottom-bar {
    display: none; }
  .hdr-franq .hdr-top {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }

  .ban-franq {
    max-width: 160%;
    margin-left: -125px; }

  #apresentacao .container.bg-white {
    padding: 70px 10%;
    border-radius: 0;
    margin-top: 0; }
  #apresentacao .flex-n {
    flex-wrap: wrap; }
    #apresentacao .flex-n.adjust {
      margin-top: -80px; }
      #apresentacao .flex-n.adjust .apr-block-lg {
        display: none; }
      #apresentacao .flex-n.adjust .apr-block-sm {
        width: 100%; }
  #apresentacao .emp-txt {
    padding-right: 0; }

  .apr-block-sm, .apr-block-lg {
    width: 100%; }

  .apr-img {
    max-width: 100%; }

  .apr-item {
    width: 100%;
    margin-bottom: 50px; }

  .apr-txt {
    padding: 60px 0 0; }

  /********* Mercado **********/
  #mercado .flex-bt {
    flex-wrap: wrap; }
  #mercado .title-sec {
    margin-bottom: 0px; }

  .mer-item {
    width: 100%;
    margin-top: 110px; }

  .mer-title {
    padding: 115px 20px 40px; }

  /********* Produtos **********/
  #produtos .title-sec {
    margin-bottom: 20px; }
  #produtos .flex-bt {
    flex-wrap: wrap; }
  #produtos .flex-prev {
    left: -25px; }
  #produtos .flex-next {
    right: -45px; }

  .prod-txt {
    padding-right: 0; }

  /********* Brown **********/
  #brown .flex-btc {
    flex-wrap: wrap; }
  #brown .flex-bt {
    width: 100%;
    justify-content: space-around; }

  .prod-block {
    left: 0;
    padding: 30px 0 0;
    height: 500px; }

  .prod-dest {
    width: 100%;
    padding: 0 50px; }

  .prod-item {
    width: 30%;
    margin-bottom: 40px; }
    .prod-item img {
      width: 80px; }

  .prod-title {
    font-size: 1em; }

  /********* Operação **********/
  #operacao {
    padding: 440px 0 0; }
    #operacao .flex-n {
      flex-wrap: wrap; }

  .opr-block-sm {
    width: 100%; }

  .opr-block-lg {
    width: 100%;
    margin-top: 50px; }

  .opr-item {
    width: 50%; }

  /********* Investimento **********/
  #investimento {
    background: #f7f5f5; }
    #investimento .rekt {
      display: none; }
    #investimento .flex-bt {
      flex-wrap: wrap; }
    #investimento .cycle-pager {
      margin-top: 30px; }
    #investimento .sub-stroke-btn {
      margin: 0 auto 20px; }

  .model-block-sm {
    width: 100%; }

  .model-block-lg {
    width: 100%;
    margin-top: 50px; }

  .model-item {
    width: 50%; }

  /********* Etapas **********/
  #etapas .eta-block {
    width: 100%;
    margin: 0;
    padding-left: 40px;
    text-align: left;
    justify-content: flex-start; }
  #etapas .sub-btn {
    border-radius: 0 65px 65px 0; }

  .cafe {
    display: none; }

  .stepline {
    left: 14px;
    margin-left: 0;
    top: 170px; }

  .line {
    height: 950px; }

  .etapa {
    width: 85%; }

  /********* Franqueado Form **********/
  .input, .textarea {
    height: 60px; }

  .select select {
    height: 60px; }
  .select:after {
    margin-top: -20px; }

  /********* Depoimentos **********/
  #depoimentos .cycle-prev {
    left: -40px; }
  #depoimentos .cycle-next {
    right: -40px; }

  .depo-item {
    height: 520px; }

  .depo-modal .container {
    width: 100%;
    padding: 0; }

  .depo-modal-border {
    padding: 60px 0; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* EMPRESA *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #empresa {
    padding: 60px 0; }
    #empresa .rekt-lg {
      width: 1000px;
      height: 260px; }
    #empresa .rekt-sm {
      display: none; }
    #empresa .choco-slice {
      right: -250px;
      bottom: 200px;
      width: 500px; }
    #empresa .coffee.adjust {
      top: 560px; }

  .quem-flex {
    margin: 0; }

  .quem-img {
    display: none; }

  .quem-info {
    width: 100%;
    padding: 0; }
    .quem-info .title-sec {
      margin-bottom: 80px; }

  .vid-area {
    padding: 60px 0 100px; }

  .my-video {
    width: 100%;
    height: 220px; }

  .time-area .stepline {
    margin-left: 0px;
    left: 0;
    top: 115px;
    width: 100%; }
  .time-area .line {
    width: 4px;
    height: 565px;
    left: 16px; }
  .time-area .flex-btc {
    flex-direction: column;
    align-items: flex-start; }
  .time-area .step {
    margin-bottom: 50px; }

  .time-flex {
    flex-wrap: wrap; }

  .time-item {
    width: 100%;
    height: auto;
    margin: 0 0 25px 50px;
    text-align: left; }

  .time-down {
    padding-top: 0; }

  #mvv {
    padding: 80px 0 60px; }

  .mvv-flex {
    flex-wrap: wrap; }

  .mvv-item {
    width: 100%;
    margin: 0 auto 60px; }

  #cultura .rekt-lg {
    width: 130%;
    height: 38%;
    top: 54%; }
  #cultura .rekt-sm {
    display: none; }

  .cult-flex {
    flex-wrap: wrap; }

  .cult-txt {
    padding: 0 0 50px; }

  .cult-topics {
    padding-left: 0; }

  #turminha {
    padding-top: 0;
    background: #fff; }
    #turminha .flex-n {
      flex-wrap: wrap; }
    #turminha .tur-item {
      width: 100%;
      margin-bottom: 50px; }

  #reinventar {
    padding-top: 0; }
    #reinventar .rekt {
      display: none; }
    #reinventar .rei-txt {
      width: 100%; }
    #reinventar .emp-block-lg {
      top: -100px; }
    #reinventar .rei-img {
      margin-top: 0; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PRODUTOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .banner.adjust img {
    max-width: 120%; }

  #tortas .flex-n {
    flex-wrap: wrap; }
  #tortas .tor-cat-block {
    width: 100%; }

  .tor-cat-title {
    margin-bottom: 30px; }
    .tor-cat-title .main-btn {
      display: flex;
      align-items: center;
      margin: 0 auto;
      width: 78%; }
    .tor-cat-title i {
      font-size: 1.5em;
      margin: 0 -15px 0 15px;
      transition: all 0.2s cubic-bezier(0.54, 0.18, 0.13, 1); }
      .tor-cat-title i.active {
        transform: rotate(180deg); }

  .tor-cat-list {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.54, 0.18, 0.13, 1); }
    .tor-cat-list.active {
      max-height: 800px; }

  .tor-prod-flex {
    padding: 45px 5px 0; }

  .tor-prod-block {
    width: 100%;
    margin-top: 24px;
    padding-left: 0; }

  .texture-light-block {
    width: 900px;
    left: -120px; }

  .tor-prod-item {
    width: 100%; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PRODUTO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .prod-ban {
    padding: 60px 0 100px; }

  #produto .container.bg-white {
    padding: 100px 8% 75px; }
  #produto .flex-direction-nav .flex-prev {
    left: -10px; }
  #produto .flex-direction-nav .flex-next {
    right: -30px; }

  .prod-galeria {
    width: 100%; }

  #carousel .slides li {
    width: 50px !important; }

  .breadcrumbs {
    display: none; }

  .prod-info {
    padding-left: 0px; }

  #relacionados .tor-prod-item {
    width: 100%; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* BLOG *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #blog .coffee {
    display: none; }

  .blog-flex {
    flex-wrap: wrap; }

  .blog-main {
    width: 100%; }

  .blog-aside {
    width: 100%;
    margin-top: 80px; }

  .share-back {
    justify-content: center;
    flex-wrap: wrap; }

  .back-div {
    margin-bottom: 40px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* ONDE ESTAMOS *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .onde-item {
    padding-top: 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .onde-item img {
      position: relative;
      left: auto;
      width: 500px;
      border-radius: 0 0 0 0;
      box-shadow: none; }

  .onde-info {
    width: 100%;
    margin-top: 40px;
    padding: 0 30px; }

  .onde-btn .main-btn {
    padding: 15px 40px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* RESPONSABILIDADE *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  .resp-block {
    padding: 60px 45px 30px; }

  .resp-item {
    flex-wrap: wrap; }
    .resp-item img {
      margin: 0 auto 15px; }
    .resp-item .main-txt {
      text-align: center; }

  .rec-sec .title-sec {
    margin-bottom: 20px; }

  .rec-block {
    width: 100%;
    margin-top: 30px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* CONTATO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #contato .input, #contato .textarea {
    font-size: 1.125em; }

  .flex-btc {
    flex-wrap: wrap; }

  .con-block {
    width: 100%; }

  .con-flex {
    flex-wrap: wrap;
    justify-content: center; }
    .con-flex i {
      width: 100%;
      text-align: center;
      margin: 0; }

  .con-info {
    font-size: 1.125em; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* TRABALHE CONOSCO *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #con-info .flex-btc {
    justify-content: center;
    flex-wrap: wrap; }

  .fileUpload {
    padding: 8px 35px 8px 30px; }

  /*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜* PESQUISA *˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*˜*/
  #pesquisa .input, #pesquisa .textarea, #pesquisa .select select {
    font-size: 1.125em; } }
/*------------------------------------------------*/
/*------------------[ANIMATIONS]-----------------*/
/*------------------------------------------------*/
.waypoint {
  opacity: 0; }

.animated {
  opacity: 1; }

.animation_top.animated {
  -webkit-animation: fadeTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeTop {
  0% {
    opacity: 0;
    transform: translateY(-10%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeTop {
  0% {
    opacity: 0;
    -moz-transform: translateY(-10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeTop {
  0% {
    opacity: 0;
    -o-transform: translateY(-10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_bottom.animated {
  -webkit-animation: fadeBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeBottom {
  0% {
    opacity: 0;
    transform: translateY(10%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@-moz-keyframes fadeBottom {
  0% {
    opacity: 0;
    -moz-transform: translateY(10%); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }
@-o-keyframes fadeBottom {
  0% {
    opacity: 0;
    -o-transform: translateY(10%); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }
.animation_left.animated {
  -webkit-animation: fadeLeft 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeLeft 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeLeft 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeLeft 1s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-10%); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_right.animated {
  -webkit-animation: fadeRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(10%); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeRight {
  0% {
    opacity: 0;
    -o-transform: translateX(10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_fade.animated {
  animation: fade 1s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.animation_top_d1.animated {
  -webkit-animation: fadeTop_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeTop_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeTop_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeTop_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeTop_d1 {
  0% {
    opacity: 0;
    transform: translateY(-10%); }
  25% {
    opacity: 0;
    transform: translateY(-10%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeTop_d1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%); }
  25% {
    opacity: 0;
    -webkit-transform: translateY(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeTop_d1 {
  0% {
    opacity: 0;
    -moz-transform: translateY(-10%); }
  25% {
    opacity: 0;
    -moz-transform: translateY(-10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeTop_d1 {
  0% {
    opacity: 0;
    -o-transform: translateY(-10%); }
  25% {
    opacity: 0;
    -o-transform: translateY(-10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_bottom_d1.animated {
  -webkit-animation: fadeBottom_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeBottom_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeBottom_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeBottom_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeBottom_d1 {
  0% {
    opacity: 0;
    transform: translateY(10%); }
  25% {
    opacity: 0;
    transform: translateY(10%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeBottom_d1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%); }
  25% {
    opacity: 0;
    -webkit-transform: translateY(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@-moz-keyframes fadeBottom_d1 {
  0% {
    opacity: 0;
    -moz-transform: translateY(10%); }
  25% {
    opacity: 0;
    -moz-transform: translateY(10%); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }
@-o-keyframes fadeBottom_d1 {
  0% {
    opacity: 0;
    -o-transform: translateY(10%); }
  25% {
    opacity: 0;
    -o-transform: translateY(10%); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }
.animation_left_d1.animated {
  -webkit-animation: fadeLeft_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeLeft_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeLeft_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeLeft_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeLeft_d1 {
  0% {
    opacity: 0;
    transform: translateX(-10%); }
  25% {
    opacity: 0;
    transform: translateX(-10%); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes fadeLeft_d1 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%); }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeLeft_d1 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-10%); }
  25% {
    opacity: 0;
    -moz-transform: translateX(-10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeLeft_d1 {
  0% {
    opacity: 0;
    -o-transform: translateX(-10%); }
  25% {
    opacity: 0;
    -o-transform: translateX(-10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_right_d1.animated {
  -webkit-animation: fadeRight_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeRight_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeRight_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeRight_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeRight_d1 {
  0% {
    opacity: 0;
    transform: translateX(10%); }
  25% {
    opacity: 0;
    transform: translateX(10%); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes fadeRight_d1 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%); }
  25% {
    opacity: 0;
    -webkit-transform: translateX(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeRight_d1 {
  0% {
    opacity: 0;
    -moz-transform: translateX(10%); }
  25% {
    opacity: 0;
    -moz-transform: translateX(10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeRight_d1 {
  0% {
    opacity: 0;
    -o-transform: translateX(10%); }
  25% {
    opacity: 0;
    -o-transform: translateX(10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_fade_d1.animated {
  animation: fade_d1 1.5s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fade_d1 {
  0% {
    opacity: 0; }
  25% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.animation_top_d2.animated {
  -webkit-animation: fadeTop_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeTop_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeTop_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeTop_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeTop_d2 {
  0% {
    opacity: 0;
    transform: translateY(-10%); }
  50% {
    opacity: 0;
    transform: translateY(-10%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeTop_d2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%); }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeTop_d2 {
  0% {
    opacity: 0;
    -moz-transform: translateY(-10%); }
  50% {
    opacity: 0;
    -moz-transform: translateY(-10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeTop_d2 {
  0% {
    opacity: 0;
    -o-transform: translateY(-10%); }
  50% {
    opacity: 0;
    -o-transform: translateY(-10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_bottom_d2.animated {
  -webkit-animation: fadeBottom_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeBottom_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeBottom_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeBottom_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeBottom_d2 {
  0% {
    opacity: 0;
    transform: translateY(10%); }
  50% {
    opacity: 0;
    transform: translateY(10%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeBottom_d2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%); }
  50% {
    opacity: 0;
    -webkit-transform: translateY(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@-moz-keyframes fadeBottom_d2 {
  0% {
    opacity: 0;
    -moz-transform: translateY(10%); }
  50% {
    opacity: 0;
    -moz-transform: translateY(10%); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }
@-o-keyframes fadeBottom_d2 {
  0% {
    opacity: 0;
    -o-transform: translateY(10%); }
  50% {
    opacity: 0;
    -o-transform: translateY(10%); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }
.animation_left_d2.animated {
  -webkit-animation: fadeLeft_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeLeft_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeLeft_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeLeft_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeLeft_d2 {
  0% {
    opacity: 0;
    transform: translateX(-10%); }
  50% {
    opacity: 0;
    transform: translateX(-10%); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes fadeLeft_d2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%); }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeLeft_d2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-10%); }
  50% {
    opacity: 0;
    -moz-transform: translateX(-10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeLeft_d2 {
  0% {
    opacity: 0;
    -o-transform: translateX(-10%); }
  50% {
    opacity: 0;
    -o-transform: translateX(-10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_right_d2.animated {
  -webkit-animation: fadeRight_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeRight_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeRight_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeRight_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeRight_d2 {
  0% {
    opacity: 0;
    transform: translateX(10%); }
  50% {
    opacity: 0;
    transform: translateX(10%); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes fadeRight_d2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%); }
  50% {
    opacity: 0;
    -webkit-transform: translateX(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeRight_d2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(10%); }
  50% {
    opacity: 0;
    -moz-transform: translateX(10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeRight_d2 {
  0% {
    opacity: 0;
    -o-transform: translateX(10%); }
  50% {
    opacity: 0;
    -o-transform: translateX(10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_botR_d2.animated {
  -webkit-animation: fadeBotRight_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeBotRight_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeBotRight_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeBotRight_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeBotRight_d2 {
  0% {
    opacity: 0;
    transform: translate(15%, -15%) scale(0.75); }
  50% {
    opacity: 0;
    transform: translate(15%, -15%) scale(0.75); }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1); } }
@-webkit-keyframes fadeBotRight_d2 {
  0% {
    opacity: 0;
    -webkit-transform: translate(10%, -10%); }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0); } }
@-moz-keyframes fadeBotRight_d2 {
  0% {
    opacity: 0;
    -moz-transform: translate(10%, -10%); }
  100% {
    opacity: 1;
    -moz-transform: translate(0, 0); } }
@-o-keyframes fadeBotRight_d2 {
  0% {
    opacity: 0;
    -o-transform: translate(10%, -10%); }
  100% {
    opacity: 1;
    -o-transform: translate(0, 0); } }
.animation_right_d3.animated {
  -webkit-animation: fadeRight_d3 3s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: fadeRight_d3 3s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: fadeRight_d3 3s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: fadeRight_d3 3s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeRight_d3 {
  0% {
    opacity: 0;
    transform: translateX(10%); }
  50% {
    opacity: 0;
    transform: translateX(10%); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes fadeRight_d3 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%); }
  50% {
    opacity: 0;
    -webkit-transform: translateX(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeRight_d3 {
  0% {
    opacity: 0;
    -moz-transform: translateX(10%); }
  50% {
    opacity: 0;
    -moz-transform: translateX(10%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeRight_d3 {
  0% {
    opacity: 0;
    -o-transform: translateX(10%); }
  50% {
    opacity: 0;
    -o-transform: translateX(10%); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
.animation_scale.animated {
  -webkit-animation: scaleNormal 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: scaleNormal 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: scaleNormal 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: scaleNormal 1s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes scaleNormal {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@-webkit-keyframes scaleNormal {
  0% {
    opacity: 0;
    -webkit-transform: scale(0); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }
@-moz-keyframes scaleNormal {
  0% {
    opacity: 0;
    -moz-transform: scale(0); }
  100% {
    opacity: 1;
    -moz-transform: scale(1); } }
@-o-keyframes scaleNormal {
  0% {
    opacity: 0;
    -o-transform: scale(0); }
  100% {
    opacity: 1;
    -o-transform: scale(1); } }
.animation_scale_d1.animated {
  -webkit-animation: scale_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: scale_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: scale_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: scale_d1 2s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes scale_d1 {
  0% {
    opacity: 0;
    transform: scale(0.1); }
  25% {
    opacity: 0;
    transform: scale(0.1); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@-webkit-keyframes scale_d1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1); }
  25% {
    opacity: 0;
    -webkit-transform: scale(0.1); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }
@-moz-keyframes scale_d1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.1); }
  25% {
    opacity: 0;
    -moz-transform: scale(0.1); }
  100% {
    opacity: 1;
    -moz-transform: scale(1); } }
@-o-keyframes scale_d1 {
  0% {
    opacity: 0;
    -o-transform: scale(0.1); }
  25% {
    opacity: 0;
    -o-transform: scale(0.1); }
  100% {
    opacity: 1;
    -o-transform: scale(1); } }
.animation_scale_d2.animated {
  -webkit-animation: scale_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: scale_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: scale_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: scale_d2 2.5s 1 cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes scale_d2 {
  0% {
    opacity: 0;
    transform: scale(0.1); }
  50% {
    opacity: 0;
    transform: scale(0.1); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@-webkit-keyframes scale_d2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1); }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.1); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }
@-moz-keyframes scale_d2 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.1); }
  50% {
    opacity: 0;
    -moz-transform: scale(0.1); }
  100% {
    opacity: 1;
    -moz-transform: scale(1); } }
@-o-keyframes scale_d2 {
  0% {
    opacity: 0;
    -o-transform: scale(0.1); }
  50% {
    opacity: 0;
    -o-transform: scale(0.1); }
  100% {
    opacity: 1;
    -o-transform: scale(1); } }
.animation_vertSize.animated {
  -webkit-animation: vertSize 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: vertSize 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: vertSize 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: vertSize 1s 1 cubic-bezier(0.77, 0, 0.175, 1) both; }

@keyframes vertSize {
  0% {
    opacity: 0;
    transform: scaleY(0.1);
    transform-origin: 100% 0%; }
  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: 100% 0%; } }
@-webkit-keyframes vertSize {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0.1); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1); } }
@-moz-keyframes vertSize {
  0% {
    opacity: 0;
    -moz-transform: scaleY(0.1); }
  100% {
    opacity: 1;
    -moz-transform: scaleY(1); } }
@-o-keyframes vertSize {
  0% {
    opacity: 0;
    -o-transform: scaleY(0.1); }
  100% {
    opacity: 1;
    -o-transform: scaleY(1); } }
.animation_horiSize.animated {
  -webkit-animation: horiSize 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: horiSize 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: horiSize 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
  animation: horiSize 1s 1 cubic-bezier(0.77, 0, 0.175, 1) both; }

@keyframes horiSize {
  0% {
    opacity: 0;
    transform: scaleX(0.1);
    transform-origin: 0% 100%; }
  100% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: 0% 100%; } }
@-webkit-keyframes horiSize {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0.1); }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1); } }
@-moz-keyframes horiSize {
  0% {
    opacity: 0;
    -moz-transform: scaleX(0.1); }
  100% {
    opacity: 1;
    -moz-transform: scaleX(1); } }
@-o-keyframes horiSize {
  0% {
    opacity: 0;
    -o-transform: scaleX(0.1); }
  100% {
    opacity: 1;
    -o-transform: scaleX(1); } }
.animation_horiwidth.animated {
  animation: widthHori 2s 1 cubic-bezier(0.77, 0, 0.175, 1); }

/*------------------------------------------------*/
/*------------------[TRANSITIONS]-----------------*/
/*------------------------------------------------*/
@keyframes widthHori {
  0% {
    width: 0; }
  100% {
    width: 100%; } }
@keyframes widthHori-1 {
  0% {
    opacity: 0;
    width: 0; }
  25% {
    opacity: 0;
    width: 0; }
  100% {
    opacity: 1;
    width: 100%; } }
/* ================== COLOR-BORDERS ================== */
.b-blue {
  border: 1px solid blue; }

.b-red {
  border: 1px solid #cb0000; }

.b-yellow {
  border: 1px solid yellow; }

.b-green {
  border: 1px solid green; }

.b-white {
  border: 1px solid white; }

.b-purple {
  border: 1px solid #550080; }

.b-sky {
  border: 1px solid skyblue; }

.b-lime {
  border: 1px solid lime; }

.b-pink {
  border: 1px solid pink; }

/*# sourceMappingURL=style.css.map */
