body {opacity: 0;transition: all .5s;position: relative; font-family: 'Roboto', sans-serif;}
.loaded body {opacity: 1;}

.enter-y { transform: translateY(50px); opacity: 0; transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); -webkit-transform: translateY(50px); -moz-transform: translateY(50px); -ms-transform: translateY(50px); -o-transform: translateY(50px); -webkit-transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); -moz-transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); -ms-transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); -o-transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); }
.enter-y-r {transform: translateY(-50px); opacity: 0; transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1);}
.enter-x {transform: translateX(50px); opacity: 0; transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1);}
.enter-x-r {transform: translateX(-50px); opacity: 0; transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1);}
.show .delay-1, .ready #hero .delay-1 {transition-delay: .2s !important;}
.show .delay-2, .ready #hero .delay-2 {transition-delay: .4s !important;}
.show .delay-3, .ready #hero .delay-3 {transition-delay: .6s !important;}
.show .delay-4, .ready #hero .delay-4 {transition-delay: .8s !important;}
.show .delay-5, .ready #hero .delay-5 {transition-delay: 1s !important;}
.show .delay-6, .ready #hero .delay-6 {transition-delay: 1.2s !important;}
.show .delay-7, .ready #hero .delay-7 {transition-delay: 1.4s !important;}
.show .delay-8, .ready #hero .delay-8 {transition-delay: 1.6s !important;}
.show .delay-9, .ready #hero .delay-9 {transition-delay: 1.8s !important;}
.show .delay-10, .ready #hero .delay-10 {transition-delay: 2s !important;}
.show .delay-11, .ready #hero .delay-11 {transition-delay: 2.2s !important;}
.show .delay-12, .ready #hero .delay-12 {transition-delay: 2.4s !important;}
.show .delay-13, .ready #hero .delay-13 {transition-delay: 2.6s !important;}
.show .delay-14, .ready #hero .delay-14 {transition-delay: 2.8s !important;}
.show .delay-15, .ready #hero .delay-15 {transition-delay: 3s !important;}
.loaded .show .enter-y, .loaded .show .enter-x, .loaded .show .enter-y-r, .loaded .show .enter-x-r {opacity: 1; transform: translate(0);}

.enter-s:before {transform: scaleX(0);}
.loaded .show .enter-s:before {transform: scaleX(1);}

@font-face {
    font-family: 'f1';
    src: url("../fonts/Brewisten.otf") format("opentype");
}

@font-face {
    font-family: 'f2';
    src: url("../fonts/Brewisten-Slant.otf") format("opentype");
}

@font-face {
    font-family: 'f3';
    src: url("../fonts/GothamRounded-Medium.ttf") format('truetype');
}

.p-bs{
    padding-left: 10rem;
    padding-right: 10rem;
}

.p-bs2{
    padding-left: 4rem;
    padding-right: 4rem;
}
.m-bot{
    margin-bottom: 0rem;
}

.m-topbot{
    margin-top: 5rem;
    margin-bottom: 10rem;
}

.bgg {
    background-color: #e5e6eb;
}

/*header--------------------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 8.5rem;
    transition: all .58s;
    z-index: 140;
    pointer-events: none;
  }
  
  .header:before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all .5s;
    z-index: -1;
  }
  
  .header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

header.nav-up {top: -100px}
header.nav-down {top: 0;}

header.nav-down:before {top: 0 !important;}

header.nav-down .logo {opacity: 0 !important;}

.logo h2 {
  font-size: 40px;
  font-family: '';
  color: #fff;
}

/* BURGER MENU */

.burga__rd {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: block;
  background: #5dc777;
}

.burga-wrap {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 50%;
}

.burga-container {
  position: relative;
}

#burga-menu {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  margin: 6px 12px;
}

#burga-menu span {
  background: #000;
  display: block;
  position: absolute;
  height: 3px;
  width: 60%;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s cubic-bezier(0.43, 0.58, 0.47, 0.62);
}

#burga-menu span:nth-child(1) {
  top: 0px;
}

#burga-menu span:nth-child(2) {
  top: 8px;
}

#burga-menu span:nth-child(3) {
  top: 16px;
}

#burga-menu.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

#burga-menu.open span:nth-child(2) {
  opacity: 0;
  left: 30px;
}

#burga-menu.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.menu-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #000;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: all .5s ease-in-out;
}

.menu-active {
  opacity: 1;
  pointer-events: auto;
}

.menu-dropdown-list {
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
}

.nav__item__mobile {
  font-size: 40px;
  margin-bottom: 4rem;
  color: #fff;
  font-family: '';
  cursor: pointer;
  transition: color .25s ease-out;
}

.nav__item__mobile:hover {
  color: #5dc777;
}


.nav__item:last-child {
  margin-bottom: 0;
}

/* DROPDOWN */


.site-head-menu {
    position: relative;
    display: flex;
  }
  
  .site-head-menu__link {
    position: relative;
    display: block;
    color: #fff;
  }
  
  .site-head-menu__link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: red;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .9s cubic-bezier(.19,1,.22,1);
  }
  
  .site-head-menu__link:hover:before {
    transform-origin: left;
    transform: scaleX(1);
  }
  
  .burger {
    position: relative;
    width: 1.25rem;
    height: 14px;
    transform: translateZ(0);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    pointer-events: auto;
  }
  
  .burger__line {
    height: 2px;
    background-color: #fff;
    transform-origin: right;
    width: 2.25rem;
  }
  
  .burger-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    height: 2px;
    width: 2.25rem;
  }
  
  .burger-close__line {
    background-color: #fff;
      
  }
  
  .burger-close__line:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left;
  }
  
  .burger-close__line:last-child {
    position: absolute;
    left: calc(50% - 1px);
    top: calc(2.25rem/2*-1 + 1px);
    width: 2px;
    height: 2.25rem;
    transform-origin: bottom;
  }
  
  
  
  .c-dropdown {
    position: fixed;
    overflow: hidden;
    visibility: hidden;
  }
  
  .c-dropdown,.c-dropdown__inner {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .c-dropdown__inner {
    position: fixed;
    display: flex;
    align-items: flex-start;
    background-color: #9ba1c4;
    z-index: 130;
  }
  
  .is-device .c-dropdown__inner {
    padding: 0 8vw;
  }
  
  .is-desktop .c-dropdown__inner {
    justify-content: center;
  }
  
  .c-dropdown__content {
    width: 100%;
    height: 100%;
    padding-top: 18vw;
    position: relative;
  }
  
  .c-dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .c-dropdown-menu__item:not(:last-child) {
    margin-bottom: 2.85rem
  }
  
  .c-dropdown-menu__link {
    position: relative;
    display: block;
    line-height: 1.2;
    overflow: hidden;
    font-family: 'f1';
    transition: color .25s cubic-bezier(.19,1,.22,1);
    cursor: pointer;
    color: #325288;
  }
  
  .c-dropdown-menu__link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .9s cubic-bezier(.19,1,.22,1);
  }
  
  .c-dropdown-menu__link:hover div {
    color: #fff;
  }
  
  .c-dropdown-menu__link.is-active:after,.c-dropdown-menu__link:hover:after,.current-menu-item .c-dropdown-menu__link:after {
    transform-origin: left;
    transform: scaleX(1);
  }
  
  .c-dropdown-menu__link.is-active,.current-menu-item .c-dropdown-menu__link {
    pointer-events: none;
  }
  
  .c-dropdown-menu--main .c-dropdown-menu__link,.is-desktop .c-dropdown-menu--sub .c-dropdown-menu__link {
    color: #fff;
    font-size: 45px;
  }
  
  .brgCircle {
    background: #734b42;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  
  .mulLinkAll {
    position: relative;
    display: block;
    line-height: 1.2;
    overflow: hidden;
    font-family: '';
    transition: color .25s cubic-bezier(.19,1,.22,1);
    cursor: pointer;
    color: #fff;
    font-size: 36px;
  }
  
  .mulLinkAll:hover {
    color: #5dc777;
  }

  .f-t {
    color: #325288;
    font-size: 1.8rem;
    font-family: 'f1';
    transition: color .25s ease-out;
  }
  
  .f-t:hover {
    color: #325288;
  }
  
  .row-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .contact__redes__list {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  
  .contact__redes__item:not(:last-child) {
    margin-right: 10px;
  }
  
  .contact__redes__link {
    transition: background-color .65s ease-in-out;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }
  
  .contact__redes__link > svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    transition: fill .65s ease-in-out;
  }
  
  .contact__redes__link:hover {
    background: #734b42;
  }
  
  .contact__redes__link:hover > svg {
    fill: #fff;
  }
  
  .f-t {
    color: #fff;
    font-size: 1.8rem;
    font-family: 'f1';
    transition: color .25s ease-out;
  }
  
  .f-t:hover {
    color: #734b42;
  }

/* 
.big-b{
    border-radius: 50%;
    background-color:#734c42;
    width: 75px;
    height: 75px;
    position: absolute;
    top: 4rem;
    right: 5rem;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.inner-b{
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.line-b{
    width: 40px;
    height: 2px;
    background-color: #e7dfd2;
}

.mey{
    margin-top: 4px;
    margin-bottom: 4px;
} */

/*section1--------------------*/

.hero-container{
    height: 100vh;
    width: 100%;
}

.hero-wrapper{
    position: relative;
    height: 100%;
}

.background-h{
    width: 100%;
    position: absolute;
    height: 100%;
}

.handpot{
    position: absolute;
    width: 40%;
    right: 0;
    top: 6rem;
    z-index: 40;
    transition: all 1.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: rotate(-18deg) translate(-50px, 100px);  
    opacity: 0;
}

.loaded .show .handpot {
    transform: rotate(0) translate(0px, 0px);
    transition-delay: .25s;
    opacity: 1;
}

.hero-enter{
    position: absolute;
    display: flex;
    flex-direction: column;
    margin-left:7.7rem;
    top: 33%;
    z-index: 20;
}

.hero-enter__title{
    font-family: 'f1';
    font-size: 108px;
    color: #734c42;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    left: 48px;
    top: 200px;
}

.hero-enter__but{
    font-family: 'f1';
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 25px 10px ;
    margin-top: 33px;
    background-color:#787a9e;
    border: none;
    border-radius: 40px;
    width: 270px;
}

.hero-enter__but-l{
    text-decoration: none;
    color: #e7dfd2;

}



/*section2-----------------------------*/

#s-2 {
    overflow: hidden;
}

#s-2 figure {
    position: relative;
    width: 100%;
    height: 70vw;
}

.imgsizes{
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.pote-chico {
    position: absolute;
    top: 4vw;
    left: 3vw;
    background-color: transparent;
    width: 20vw;
    height: 30vw;
    cursor: pointer;
}

.pote-grande {
    position: absolute;
    top: 25vw;
    left: 27.5vw;
    width: 20vw;
    height: 41vw;
    background-color: transparent;
    cursor: pointer;
}

.lattones {
    position: absolute;
    top: 22vw;
    left: 66.5vw;
    width: 20vw;
    height: 45vw;
    background-color: transparent;
    cursor: pointer;
}

/*section3---------------------------------*/

#s-3 {
    margin-top: 10rem;
    margin-bottom: 20rem;
}

.cat-fv{
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.cat-fv__sup{
    margin-bottom: 2.3rem;
    position: relative;
}

.cat-fv__sup:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left:0;
    width: 100%;
    height: 1px;
    background: #111111;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .75s cubic-bezier(.165,.84,.44,1);
}

.cat-fv__name{
    font-family: 'f1';
    color: #734c42;
    font-size: 30px;
    letter-spacing: 1px;
    padding-bottom: 12px;
}

.types-fv{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 3rem;
}

.img-fv{
    width: 220px !important;
}

.choco,
.fruta,
.leche,
.cremas {
    padding-top: 30px;
}

/*section4-----------------------*/

.gal {
    position: relative;
    width: 100%;
    padding-top: 110px;
}

.gallery {
    width: 80%;
    height: 600px;
}

.gal-2 {
    width: 35%;
    height: 670px;
    position: absolute;
    right: 6vw;
    top: 15vw;
}

.imgcaste{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.featured-arrows {
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    width: 30%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    padding: 0 50px;
    margin-top: 30px;
}

.featured-arrows .button {
    pointer-events: auto;
    height: 82px;
    line-height: 60px;
    box-shadow: 1px 1px 22px -7px rgba(0,0,0,.25);
    background: white;
}

.featured-arrows #featured-arrow-left svg {
    transform: scaleX(-1)
}

.featured-arrows .button.featured-arrow-left span svg {
    transform: scaleX(-1)
}

.button {
    position: relative;
    display: block;
    background: var(--black);
    border-radius: 100px;
    color: #fff;
    padding: 18px 35px;
    cursor: pointer;
    padding-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.13px;
    overflow: hidden;
    transition: all .5s,width 1s cubic-bezier(.73,.29,0,1);
    border: none;
    font-family: 'Calibre',sans-serif
}

.button:active {
    transform: scale(.85)
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    transition: height .5s cubic-bezier(.73,.29,0,1)
}

.button span {
    position: relative;
    transition: all .8s cubic-bezier(.73,.29,0,1);
    display: block;
    text-align: center
}

.button span:last-child {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    opacity: 0;
    color: var(--black)
}

.arrow polyline {
    transition: all .25s cubic-bezier(.73,.29,0,1);
}

.arrow:hover {
    background: #827bbe !important;
}

.arrow:hover polyline {
    stroke: #fff !important;
}

/*section6-----------------------*/

#s-6 {
    padding-bottom: 10rem;
}

.ww50 {
    width: 50%;
}

.cajaprueba{
    height: 300px;
}

.g-maps__iframe{
    width: 100% !important;
    height: 313px;
    margin-bottom: 20px;
}

.c-sellmayor{
    position: relative;
}

.infocontact{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}


.infocontact__h{
    color: #734c42;
    font-family: 'f1';
    font-size: 50px;
    text-align: left;
    margin-bottom: 20px;
}

.infocontact__p{
    color: #734c42;
    font-family: 'f3';
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 30px;
}

.infocontact__a {
    color: #734c42;
    font-family: 'f3';
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
}

.info-footer {
    display: flex;
    flex-direction: row;
}

.mai {
    display: flex;
}

/*footer------------------------------ */

.footer{
    background-color: #787a9e;
    height: 80px;
    padding-top: 30px;
}

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

.footer__inner-l{
    width: 80px;
    display: flex;
    justify-content: space-between;
}

.footer__inner-l-img{
    filter: invert(100%);
}

.footer__inner-rh6{
    font-family: 'f1';
    color: #fff;
    font-size: 14px;
    font-weight: 200;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-info {
    width: 40%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #e5e6eb;
    z-index: 150;
    transform: translateX(100%);
    transition: all .9s cubic-bezier(.73,.29,0,1);
    opacity: 0;
}

.dropdown-info-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #000;
    opacity: .45;
    z-index: 149;  
    transform: translateX(100%);
    transition: all .8s cubic-bezier(.73,.29,0,1);
    cursor: pointer;
    opacity: 0;
}

.close-drop-info {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 3vw;
    right: 6vw;
    cursor: pointer;
    opacity: 0;
    transform: translateX(40px);
    transition: all 1.5s cubic-bezier(.73,.29,0,1);
}

.close-drop-info svg {
    width: 100%;
    height: 100%;
}

.dropdown-info-sabores {
    padding: 10vw 6vw 6vw;
    max-height: 100vh;
    overflow: auto;
}

.gusto {
    width: 100%;
    height: 260px;
    margin-bottom: 25px;
}

.gusto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.6s cubic-bezier(.73,.29,0,1);
}

.sabor-info h2 {
    color: #734c42;
    font-family: 'f3';
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(75px);
    transition: all 2s cubic-bezier(.73,.29,0,1);
}

.sabor-info p {
    color: #734c42;
    font-family: 'f3';
    font-size: 18px;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(75px);
    transition: all 2.3s cubic-bezier(.73,.29,0,1);
}

.active-sabor {
    transform: translateX(0);
    opacity: 1;
}

.active-sabor .close-drop-info,
.active-sabor .gusto img,
.active-sabor .sabor-info h2,
.active-sabor .sabor-info p {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
}

.active-sabor-overlay {
    transform: translateX(0);
    opacity: .4;
}

@media screen and (max-width: 1024px) {
 
.hero-container{
    height: 110vh;
}

.hero-wrapper{
    height: 100vh;
}

.background-h{
    height: 110vh;
}

.handpot{
    top: 16%;
}

.hero-enter{
    top: 25%;
}

.hero-enter__title{
    font-size: 77px;
}

.p-bs{
    padding-left: 5rem;
    padding-right: 5rem;
}

.p-bs2{
    padding-left: 3rem;
    padding-right: 3rem;
}
.m-bot{
    margin-bottom: 2rem;
}

.m-topbot{
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.hero-enter__but{
    font-size: 14px;
    padding: 18px 10px ;
    margin-top: 33px;
    width: 230px;
}

.infocontact{
    position: absolute;
    top: 35%;
    left: 50%;
}
.infocontact__h{
    font-family: 'f1';
    font-size: 45px;
}
.infocontact__p{
    font-size: 22px;
}

.hero-enter__but{
    font-size: 14px;
    padding: 18px 10px ;
    margin-top: 33px;
    width: 230px;
}

}

@media screen and (max-width: 812px) {
    .hero-container{
        height: 160vh;
    }
    
    .background-h{
        height: 160vh;
    }
    .hero-enter__title{
        font-size: 56px;
    }
    .hero-enter{
        top: 34vw;
    }
    .img-fv{
        width: 130px;
    }
  
    .infocontact__h{
        font-size: 30px;
    }
    .infocontact__p{
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
    .infocontact__a {
        font-size: 14px !important;
    }
    .g-maps__iframe{
        height: 90vh;
    }
}


@media screen and (max-width: 768px) {
    .hero-container{
        height: 70vh;
    }
    
    .hero-wrapper{
        height: 100vh;
    }

    .hero-enter{
        top: 23%;
    }
    
    .background-h{
        height: 70vh;
    }

    .hero-enter__title{
        font-size: 52px;
    }

    .hero-enter__but{
        font-size: 14px;
        padding: 16px 10px ;
        margin-top: 33px;
        width: 230px;
    }
    .img-fv{
        width: 130px;
    }
  
    .infocontact__h{
        font-size: 34px;
    }
    .infocontact__p{
        font-size: 18px;
    }
    .g-maps__iframe{
        height: 65vh;
    }
}

@media screen and (max-width: 740px) {
    .hero-container{
        height: 160vh;
    }
    .hero-wrapper{
        height: 140vh;
    }

    .background-h{
        height: 140vh;
    }
    .big-b{
        width: 65px;
        height: 65px;
        top: 4rem;
        right: 4rem;
    }
    .line-b{
        width: 38px;
        height: 2px;
    }

    .hero-enter{
        top: 26%;
        margin-left:6.5rem;
    }

    .hero-enter__title{
        font-size: 52px;
    }

    .g-maps__iframe{
        height: 100vh;
    }
    .p-bs{
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .p-bs2{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .m-bot{
        margin-bottom: 1rem;
    }


}

@media screen and (max-width: 667px) {
    .hero-enter{
        top: 26%;
        margin-left:5.4rem;
    }
    .hero-enter__title{
        font-size: 48px;
    }
    .hero-enter__but{
        font-size: 10px;
        padding: 16px 10px ;
        margin-top: 33px;
        width: 150px;
    }
    .p-bs{
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .p-bs2{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .m-bot{
        margin-bottom: 1rem;
    }
    
    .infocontact__h{
        font-size: 30px;
    }
    .infocontact__p{
        font-size: 16px;
    }
}


@media screen and (max-width: 450px) {
    .big-b{
        width: 55px;
        height: 55px;
        top: 2rem;
        right: 3rem;
    }
    .line-b{
        width: 34px;
        height: 2px;
    }
    .hero-enter{
        top: 20%;
        margin-left:3rem;
    }

    .hero-enter__title{
        font-size: 45px;
    }
    .hero-enter__but{
        margin-top: 24px;
    }

    .handpot{
        top: 70vw;
        width: 60vw;
    }

    .hero-container{
        height: 75vh;
    }
    
    .hero-wrapper{
        height: 75vh;
    }
    
    .background-h{
        height: 95vh;
    }
    .p-bs{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .p-bs2{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .m-bot{
        margin-bottom: 1rem;
    }

    .imgsizes{
        height: 40vh;
    }

    .hero-enter__but {
        width: 60%;
    }
    
    
    
    .types-fv{
        flex-direction: column;
        align-items: center;
    }

    .img-fv{
        width: 170px;
        margin-bottom: 1rem;
    }
    .m-topbot{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .imgcaste{
        height: 60vh;
    }

    .g-maps__iframe{
        height: 50vh;
    }    

    .infocontact__h{
        font-size: 30px;
    }
    .infocontact__p{
        font-size: 18px;
    }
}
@media screen and (max-width: 400px) {

    .infocontact{
        top: 30%;
    }
}


.loader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #9ba1c4;
    z-index: 1000;
  }
  
  .loader-app {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .loader-logo {
    opacity: 0;
  }

/* INIT */


.hero-enter__but {
    transition: all .35s cubic-bezier(.73,.29,0,1);
}

.hero-enter__but a {
    transition: all .45s cubic-bezier(.73,.29,0,1);
}

.hero-enter__but:hover {
    background-color: #fff !important;
}

.hero-enter__but:hover a {
    color: #9ba1c4 !important;
}

/* MEDIAS */

@media screen and (max-width: 850px) {

    #s-2 figure {
        height: inherit !important;
    }

    .featured-arrows {
        width: 100%;
        padding: 0 20px;
    }

    .gal-2 {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .gallery {
        width: 100%;
        height: 380px !important;
        margin-bottom: 0 !important;
    }

    .c-maps-of-g {
        margin-bottom: 0 !important;
    }

    .info-footer {
        flex-direction: column-reverse;
    }

    #s-6 {
        padding-bottom: 0;
    }

    .ww50 {
        width: 100%;
    }

    .infocontact {
        position: relative !important;
        left: 0 !important;
    }

    .c-feedig-qwe {
        margin-bottom: 0 !important;
    }

    .footer__inner {
        align-items: center;
    }

    .c-sellmayor__inner {
        margin-bottom: 30px !important;
    }

    .burger {
        margin-right: 6vw;
    }

    .cajaprueba {
        height: 200px !important;
    }

    .row-footer {
        flex-direction: column-reverse !important;
    }

    .c-dropdown-menu {
        margin-top: 90px;
    }

    .mailDropLink {
        margin-bottom: 10px;
    }

    .dropdown-info {
        width: 100%;
    }

    .dropdown-info-sabores {
        padding: 20vw 6vw 6vw;
    }
}

.mnnp p {
    margin-bottom: 10px !important;
}