@font-face {
    font-family: 'ddvyr';
    src: url('../fonts/HelveticaNeue.otf') format('opentype');
}

@font-face {
    font-family: 'ddvyrcnd';
    src: url('../fonts/HelveticaNeue-Cnd.otf') format('opentype');
}

@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');

@keyframes anim-opacity {
    0% {opacity: 0;}
    100% {opacity: 100%;}
}


/*-----*/


*{  
    transition: all 300ms ease-in-out;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

html{background-color:var(--dvyr-palo);}

:root {
    --globalpad: 25px;

    --dvyr-black: #000;
    --dvyr-white: #fcfcfc;
    --dvyr-pink:#F9B5D1;
    --dvyr-palo: #FFF7FA;
    --dvyr-brown: #482D1A;
}

/*    ---------    */


.ofcover{width: 100%; height: 100%; object-fit: cover;}
.ofcover-h{height: 100%; object-fit: cover;}
.ofcover-w{width: 100%; object-fit: cover;}


::-webkit-scrollbar {
    display: none; 
  }



a{text-decoration: none; color: var(--dvyr-brown); cursor: pointer;}
a:hover{text-decoration: underline;}


ul{
    list-style: none;
    margin: 0; padding: 0;
}

::selection {
    background-color: var(--dvyr-brown); 
    color: var(--dvyr-white);
  }

.pinkcolor{color: var(--dvyr-pink);}
.logo-no{opacity: 0;}
.active{text-decoration: underline;}


/*    -------   */

body{
    width: 100vw; 

    font-family: "ddvyr", sans-serif;
    background-color: var(--dvyr-palo);

    font-size: 12px;
}


/*    HEADER    */


header{
    width: 100%;
    padding: var(--globalpad);

    position: fixed;

    z-index: 20;
}

.header-desktop{
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-desktop img{ 
    width: 140px;
}

.desktop-nav{
    width: 420px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 18px;
    text-align: right;
}

.burger-btn{
    display: none;

    width: 78px; height: max-content;
    padding: 6px 12px;
    border-radius: 100px;


    background-color: var(--dvyr-pink);

    font-family: "ddvyrcnd", sans-serif;
    font-size: 16px;
    text-transform: uppercase;

    cursor: pointer;
}

.burger-btn:hover{text-decoration: underline;}

.burger-btn p{
    margin-top: 4px;

    opacity: 1;

    line-height: normal;
    text-align: center;
}

.header-burger{
    width: 100vw; height: 100vh;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    position: fixed;
    top: 0; left: 0;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 36px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;

    background-color: var(--dvyr-pink);
    animation: anim-opacity 600ms;

    z-index: 18;
}

ul.burger-nav{
    margin-bottom: 80px;
}

ul.burger-nav-contact{
    margin-bottom: 40px;
}

.header-burger-footer{
    position: absolute;
    bottom: 40px;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;

}

/*    HOME    */

.home-main{
    height: 100vh;

    overflow: hidden;
}

.home-main-bg{
    width: 100%; height: 100%;
    object-fit: cover;

    position: absolute;
    top: 0; left: 0;
}

.home-main-info{
    width: 50%;

    position: fixed;
    top: var(--globalpad); left: var(--globalpad);
    
    z-index: 15;
}

.home-main-info img{
    width: 50%;
    min-width: 200px;
    max-width: 350px;
}

.home-main-info p{
    width: 75%; max-width: 550px;
    
    margin-top: 25px;

    color: var(--dvyr-pink);

    font-size: 22px;
    /* line-height: 22px; */
    line-height: 130%;
}

.home-lang{
    width: 70px;

    position: absolute;
    bottom: var(--globalpad);
    left: 50%; right: 50%;
    transform: translate(-50%, 0);

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--dvyr-pink);
}

.home-lang p a{
    color: var(--dvyr-pink);
}

.home-centrado{
    width: 400px;
    position: absolute;
    top: 300px;
    right: 50%; left: 50%;

    color: var(--dvyr-pink);
    font-size: 22px;
    line-height: 130%;
    text-align: center;

    transform: translate(-50%, -50%);
    
    z-index: 15;
}

/*    GALLERY    */

.gallery-main {
  width: 100vw;
  height: 100vh;
  padding: 110px 0 70px 0;
  background-color: var(--dvyr-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-wrapper {
  opacity: 0;
  transition: opacity 1s;
  width: 170vh;
  overflow: hidden;
  display: flex;
  justify-content: center;

  transition: all 1s;
}

.carousel-wrapper.carousel-ready {
  opacity: 1;
}

.carousel-track {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-track.no-transition {
  transition: none !important;
}

.carousel-item {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms, width 450ms ease-out;
  width: 0%;
  height: 0;
  overflow: hidden;
  z-index: 1;
  display: flex;
}

.carousel-item.pos-0,
.carousel-item.pos-1,
.carousel-item.pos-2,
.carousel-item.pos-3,
.carousel-item.pos-4 {
  position: static;
  opacity: 1;
  pointer-events: auto;
  overflow: visible;
  z-index: 2;
  display: flex;
  height: auto;
}

.carousel-item.no-transition {
  transition: none !important;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-item.pos-0,
.carousel-item.pos-4 {
  width: 8% !important;
}

.carousel-item.pos-1,
.carousel-item.pos-3 {
  width: 18% !important;
}

.carousel-item.pos-2 {
  width: 30% !important;
}


.gallery-main-mobile{
    width: 100vw;
    margin-top: 0px;

    display: none;
}

.gallery-main-mobile p{
    width: 220px;
    margin-bottom: 80px;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    color: var(--dvyr-brown);
}

.gallery-item{
    margin-bottom: 15px;
}




/*    PRESS    */

.press-main{
    width: 100vw; 
    height: 100vh;
    padding: 110px var(--globalpad) 70px var(--globalpad) ;

}

.press-main-desc{
    width: 25%;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;

    color: var(--dvyr-brown);
}

.press-main-grid{
    width: 100%;
    margin-top: 25px; padding-bottom: 40px;

    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: space-between;
}

.press-main-grid-item{
    width: 49%; height: 35vw;
    margin-bottom: 100px;

    display: flex;
}

.press-main-grid-item-img{
    width: 55%;
    /* max-width: 340px; */
    overflow: hidden;

    border-radius: 5px;
}

.press-main-grid-item-img img{
    width: 100%; height: 100%;
    object-fit: cover;
}

.press-main-grid-item-desc{
    width: 45%;
    margin-left: 40px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
}

.press-main-grid-item-desc p{
    max-width: 70%;
}

.press-main-grid-item-desc img{
    height: 30px;

}

.press-main-grid-title{
    display: none;

    width: 220px;
    margin-bottom: 80px;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    color: var(--dvyr-brown);
}



/*    ABOUT    */

.about-main{
    width: 100vw; 
    height: 100vh;
    padding: 110px var(--globalpad) 70px var(--globalpad) ;

    background-color: var(--dvyr-pink);

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.about-main-left{
    width: 25%; height: 100%;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;

    color: var(--dvyr-brown);
}

.about-main-center{
    width: 35%; height: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;

    color: var(--dvyr-brown);
}

.about-main-center img{
    height: 100%;
    object-fit: cover;
}

.about-main-center p{
    max-width: 300px;

    display: none;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 34px;
    line-height: 30px;
    text-transform: uppercase; 
}

.about-main-right{
    width: 25%; height: 100%;
    padding-top: 100px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 34px;
    line-height: 30px;

    color: var(--dvyr-brown);
}

.about-main-right p{
    max-width: 450px;
}

.about-main-right p:first-child{
    text-transform: uppercase;
}

.about-main-right p:nth-child(2){
    
    font-family: "ddvyr", sans-serif;
    font-size: 20px;
    line-height: 21px;

}

.about-main-right p:nth-child(3){display: none;}



.about-main-left p:nth-child(2),
.about-main-left p:nth-child(3){
    max-width: 80%;

    margin-top: 60px;
    font-size: 28px;
    line-height: 26px;
}


/*    CONTACT    */

.contact-main{
    width: 100vw; 
    height: 100vh;
    padding: 110px var(--globalpad) 70px var(--globalpad) ;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-main-desc{
    width: 25%;
    position: fixed;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;

    color: var(--dvyr-brown);
}

.contact-main-desc p:nth-child(2),
.contact-main-desc p:nth-child(3){
    max-width: 75%;

    margin-top: 60px;
    font-size: 28px;
    line-height: 26px;
}


.contact-main-form{
    width: 75%; height: 85%;
    margin-left: 25%;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.contact-main-form div{
    width: 100%;

    display: flex;
}

.contact-main-form-one{
    width: 35%; height: 100%;
    margin-left: 20px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;

}

.contact-main-form-two{
    width: 65%; height: 100%;

    margin-left: 20px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;

}

.contact-main-form-final{
    margin-top: 18px;

    justify-content: end;
    align-items: center;
}

.contact-main-form-two textarea{
    height: 50%;

}

.contact-main-form-submit{
    width: 110px;
    text-align: center;
    margin-left: 70px;
}

.contact-main-form-final span{display: flex; align-items: center;}


/*   FORM   */

.contact-main-form-form{height: 70vh;}

input, textarea{
    width: 100%;

    font-family: "ddvyr", sans-serif;
    font-size: 15px;

    padding: 0px 15px;
    margin-bottom: 5px;

    border: solid 1px var(--dvyr-brown);
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    outline:none;
    resize: none;
    color: #000;

    font-weight: 400;
    text-align: left;
}

input{
    height: 4.5vh; min-height: 16px; max-height: 50px;
    border-radius: 60px;
}

textarea{
    border-radius: 20px;
    padding: 10px 15px;
}

input::placeholder, textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
  }

input[type="checkbox"] {
    appearance: none;
    padding: 0;
    width: 16px;
    height: 16px;
    min-height: 0;

    border: 1px solid var(--dvyr-brown);
    border-radius: 50%;
    outline: none;
    position: relative;
    cursor: pointer;
  }

input[type="checkbox"]:checked {
    width: 16px;
    height: 16px;
    background-color: var(--dvyr-brown); 
    border-color: var(--dvyr-brown); 
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
} 

input[type="submit"] {

    border: none;
    background-color: var(--dvyr-brown);
    color: var(--dvyr-pink);

    font-weight: 400;
    text-align: center;
}

input[type="submit"]:hover {

    border: solid 1px var(--dvyr-brown);
    background-color: transparent;
    color: #000;

    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

label{
    margin-left: 12px;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 12pt;

    color: var(--dvyr-brown);
}

/*    FOOTER    */

.footer-info{
    width: 100%;
    padding: var(--globalpad);

    position: fixed;
    bottom: 0; left: 0;
    pointer-events: none;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: "ddvyrcnd", sans-serif;
    font-size: 18px;
    text-transform: uppercase;

    z-index: 17;
}

.footer-info p a{color: var(--dvyr-brown); pointer-events: all;}

.footer-info p a.pinkcolor{color: var(--dvyr-pink);}



.grecaptcha-badge{visibility: collapse !important;}
.visuallyhidden{
    position: absolute;
    clip:rect(1px 1px 1px 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}


footer{
    width: 100vw;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: var(--dvyr-palo);
}

.footer-logos{
    width: 80%; height: 10%;
    max-width: 1400px;
    margin-bottom: 50px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

footer p{
    font-family: "ddvyrcnd", sans-serif;
    font-size: 16px;
    text-transform: uppercase;

    margin: 25px 0 40px 0;

    color: var(--dvyr-brown);
}
    

.footer-logos img{
    height: 50px;
    max-width: 100px;

    margin-bottom: 25px;
    margin-right: 15px;
    margin-left: 15px;
}



/*    LEGAL    */

.legal-main{
    height: fit-content;
    padding: 110px var(--globalpad);

    flex-direction: column;
    align-items: center;

    display: flex;
    justify-content: center;

    font-family: "ddvyr", sans-serif;
    font-size: 14px;
    line-height: 13px;
    text-align: center;
    color: var(--dvyr-brown);

    background-color: var(--dvyr-pink);
}

.legal-main h2{
    font-family: "ddvyrcnd", sans-serif;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;

    margin-bottom: 40px;
}

.legal-main p{
    width: 90%;

}




@media only screen and (max-width: 840px) {

    /*    HOME    */

    .home-main-info{
        margin-top: 100px;
    }

    .home-main-info img{
        display: none;
    }

    .home-main-info p{
        width: 100%;

        margin-top: -5px;
        font-size: 18px;
        line-height: 20px;
    }

    
    /*    HEADER    */

    .desktop-nav{width: 60%;}
    .logo-no{opacity: 1;}


    /*    CONTACT    */

    .contact-main{
        height:auto;

        margin-bottom: 120px;

        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-main-form-form{
        flex-direction: column;
        height: 100%;
    }

    .contact-main-form{
        width: 75%; height: 85%;
        margin-left: 0; 
    }

    .contact-main-form-one, .contact-main-form-two{
        margin: 0;
    
        align-items: center;
    }

    .contact-main-desc p:first-child, .contact-main-desc p:nth-child(3){
        display: none;
    }

    .contact-main-desc{
        width: 250px;
        margin-bottom: 60px;
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-main-desc p:nth-child(2){
        font-size: 20px;
        line-height: 20px;
    }
    
    input, textarea{text-align: center;}

    .contact-main-form-final{
        flex-direction: column;
    }

    .contact-main-form-submit {
        bottom: 100px;

        margin-top: 40px;
        margin-left: 0;
    }



    /*    PRESS    */


    .press-main-grid-item-desc img{
        height: 24px;

    }

    .press-main-grid-item-desc{
        margin-left: 10px;
    }

    .press-main-grid-item-desc {
        width: 70%;
    }

    .press-main-grid-item-img{
        width: 70%;
    }

}

@media only screen and (max-width: 480px) {

    :root {
    --globalpad: 15px;

    }
    .no-mobile{display: none;}


    /*    HOME    */



    .home-main{height: 95vh;}

    .home-main-info{
        width: 100%; 

        margin-top: 0;
        left: 0;
        top: 0; bottom: 70px;

        position: absolute;

        display: flex;
        align-items: flex-end;
        justify-content: center;

        text-align: center;
    }

    .home-main-info p{
        width: 75%;

        font-family: "ddvyr", sans-serif;
        font-size: 16px;
        line-height: 17px;
    }

    .home-lang{
        bottom: 45px;
    }

    .home-centrado{
        width: 80vw;
        top: 200px;
        right: 50%; left: 50%;

        color: var(--dvyr-pink);
        font-size: 22px;
        line-height: 130%;
        text-align: center;
        line-height: 24px;

        transform: translate(-50%, -50%);
        
        z-index: 15;
    }

    /*    HEADER    */


    .desktop-nav{display: none;}

    .burger-btn{
        display:flex;
        align-items: center;
        justify-content: center;
    }


    
    
    /*    GALLERY    */


    .carousel-wrapper {
        display: none!important;

    }

    .gallery-main{
        height: max-content;

        background-color: var(--dvyr-palo);
    }

    .gallery-main-mobile{
        padding: var(--globalpad);

        display:flex;

        flex-direction: column;
        align-items: center;
        justify-content: center;

    }

    
    /*    ABOUT    */


    .about-main{
        height: fit-content;
        padding: 110px var(--globalpad) 50px var(--globalpad);

        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .about-main-left, .about-main-center, .about-main-right{
        width: 100%;
        display: flex;
        flex-direction: column; align-items: center;
    }

    .about-main-left, .about-main-right{z-index: 5;}

    .about-main-left p:first-child, .about-main-left p:nth-child(3){display: none;}

    .about-main-left{margin-top: 80vh;}

    .about-main-left p:nth-child(2){display: none;}

    .about-main-right{
        height: 650px; 

        padding-top: 110px;
    }

    .about-main-right p:nth-child(2) {
        font-size: 16px; line-height: 18px;
        margin-top: 220px;
    }

    .about-main-right p:nth-child(3){display: block;}

    .about-main-center{
        height: 100dvh;

        position: absolute;
        top: 0; left: 0;
        z-index: 0;
    }

    .about-main-center p{
        position: absolute;
        bottom: 60px;

        display: block;
    } 

    
    /*    PRESS    */

    .press-main{
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    .press-main-grid-item{
 
        width: 49%; height: 50vh;
        flex-direction: column;
    }


    .press-main-desc{
        width: 75%;

        display: flex;
        justify-content: center;
    }

    .press-main-desc p:first-child{display: none;}

    .press-main-grid-title{
        display: block;
        margin-top: 65px;
    }

    .press-main-grid-item-img{
        width: 100%;
    }

    .press-main-grid-item-desc{
        width: 100%;

        margin: 0;

        font-family: "ddvyrcnd", sans-serif;
        font-size: 16px;
        line-height: 15px;
        text-transform: uppercase;
    }

    .press-main-grid-item-desc p{
        margin: 10px 0 35px 0;
    }

    .press-main-grid-item{
        margin-bottom: 75px;
    }

    
    /*    CONTACT    */

    .contact-main-form{width: 100%;}

    input[type="checkbox"] {
        width: 24px;
      }
    
    input[type="checkbox"]:checked {
        width: 24px;
    }

    .contact-main-form-final label{text-align: left;}


    /*    FOOTER    */

    .footer-info{
        justify-content: center;
    }

    .footer-info p:nth-child(2){
        display: none;
    }


    footer{
        height: fit-content;
        justify-content: flex-start;
    }


    .footer-logos img{
        height: 6vw;

        margin-bottom: 30px;
    }
 
}


@media only screen and (min-width: 2000px) {

}



.contruccion{ opacity: 0.5;}
