:root{
    --gris-textos : #717171;
    --gris-oscuro-textos : #51525B;
    --gris-botones : #717171;
    --gris-fondos: #D3D4DD;
    --gris-fondos-claros: #EBEBEC;
    --azul-botones: #1C74BA;
    --azul-fondo: #1C74BA;
    --anranjado-textos: #F26E22;
    --morado-oscuro-texto: #51525B;
    --morado-texto: #882077;   
    --cafe-claro-botones: #D2B383;   
    --negro-titulos: #51525B;
}

@font-face {
    font-family: 'gintoBold';
    src: url('../fonts/ABCGintoNord-Bold-Trial-BF651b7b7670e10.otf') format('woff2');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'gintoRegular';
    src: url('../fonts/ABCGintoNormal-Regular-Trial-BF651b7b7846685.otf') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gintoMedium';
    src: url('../fonts/ABCGintoNord-Medium-Trial-BF651b7b7839fc0.otf') format('woff2');
    font-weight: normal;
    font-style: normal;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid red; */
}




.main-banner-cover svg{
    max-height: 85vh;
    position: absolute;
    top: -5%;
    left: -5%;
    transform: translateY( 0%);
    fill: var(--azul-fondo);
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));

}

body{
    background-color: #fff9f1;
}

nav{
    width: 45rem;
}

.banner-box{
    width: 500px;
    height: 500px;
    background: rgb(22,97,157);
    background: linear-gradient(90deg, rgba(22,97,157,1) -100%, rgba(28,116,186,1) 100%);
    border-radius: 30px;
    position: relative;
    transition: all 1s;
    transform-style: preserve-3d;
    background-image: url('../img/banners/banner-box.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-box p{
    background-color: #20b1dc;
    display: block;
    width: 150px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    position: absolute;
    top: 50%;
    left: 0;
    box-shadow: -1px 5px 10px #00000029;
    font-size: 1.3rem;
}

.banner-box .dot{
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 100000;
    cursor: pointer;
    animation-name: colorZoom;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    z-index: 10000000;
    box-shadow: 0px 7px 10px rgb(0 0 0 / 10%);
}
.banner-box .dot1{
    top: 10%;
    left: -15%;
    background-color: #00a79d;
    animation-delay: 0.5s;
}
.banner-box .dot2{
    bottom: 10%;
    right: -15%;
    background-color: #662d91;
    animation-delay: 1s;
}
.banner-box .dot3{
    bottom: -5%;
    right: 25%;
    background-color: #d7df23;
    animation-delay: 1s;
}
.banner-box .dot4{
    bottom: -15%;
    left:0%;
    background-color: #2e3192;
    animation-delay: 1s;
}

.material-symbols-rounded{
    transform: translate(0px, 4px);
}

@keyframes colorZoom {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}


/** Estilos para el main banner */
section.main_banner .container-fluid{
    min-height: 70vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

section.main_banner .container-fluid .row{
    min-height: 90vh;
    align-items: center;
}
.main_banner h1{
    font-family: 'gintoBold', sans-serif;
    font-weight: 800;
    font-size: 55px;
    letter-spacing: 2px;
    color: var(--azul-botones);
}
.main_banner h2{
    color: var(--gris-textos);
}



/** Estilos para la primera seccion de la pagina make_impact */
.make_impact{
    margin-top: 100px;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.impact_text h2{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    color: var(--gris-oscuro-textos);
}
.impact_text h2 span{
    animation: escribir 2s steps(40);
    border: 1px solid transparent;
    position: relative;
    color: var(--morado-oscuro-texto);
    font-size: 4rem;
}.impact_text h2 span.text-change::after{
    content: ' ';
    display: inline-block;
    transform: translate(0, -50%);
    position: absolute;
    top: 55%;
    right: -5;
    width: 2px;
    height: 30px;
    background-color: #181818;
    animation: blink 1s infinite;
}
.impact_text p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--gris-textos);
    margin-top: 10px;
}

@keyframes escribir {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes blink {
    0%{ background-color: #101010; }
    50%{ background-color: transparent; }
    100% { background-color: #101010; }
}


/** Estilos para sección de express your style */
.color_selector ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.color_selector ul li{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin: 10px 5px;
    display: inline-block;
    background-color: #101010;
    cursor: pointer;
}
.express_style{
    background-color: var(--gris-fondos-claros);
}




/** Estilos para bottlecards */
.bottlecaps_cards{
    margin-top: 100px;
}
.bottlecard{
    margin: 0px 15px;
}

.bottlecaps_cards .title h2{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--azul-fondo);
}
.bottlecaps_cards .title p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--gris-textos);
    max-width: 50%;
    margin: 0px auto;
}
.bottlecard{
    background-color: var(--gris-fondos);
    border-radius: 10px;
    padding: 0px 10px 10px;
}
.bottlecard h3{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--azul-botones);
}
.bottlecard p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: var(--gris-textos);
}
.bottlecard button{
    outline: none;
    border: none;
    border-radius: 3px;
    width: 80%;
    margin: 0px auto 10px;
    display: block;
    padding: 5px 0px;
    background-color: var(--azul-fondo);
    color: #fff;
}
.bottlecard button i{
    color: #fff;
}
.bottlecard img{
    display: block;
    margin: 0px auto;
    max-height: 150px;
}


/** Estilos para create_yours */
.create_yours{
    margin-top: 100px;
    background: rgb(28,116,186);
    background: linear-gradient(39deg, rgba(28,116,186,1) 54%, rgba(95,184,255,1) 130%);
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 40px;
}

.create_yours .titles h2{
    background-color: #fff;
    border-radius: 15px;
    width: auto;
    padding: 10px 30px;
    margin: auto;  
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--azul-botones);
}
.create_yours .pasos h3{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.create_yours .pasos h3 span{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--cafe-claro-botones);
}

.create_yours .pasos svg{
    width: 100%;
    height: 100%;
    max-height: 100px;
    max-width: 100px;
    margin: 0px auto;
    display: block;
}
.create_yours .pasos p{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 45px;
    color: var(--cafe-claro-botones);
}
.create_yours .pasos p span{
    font-weight: 800;
    font-size: 50px;
    color: #fff;
}


/** Estilos para slider brands */
.brands{
    margin-top: 100px;
}
.brands h2{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--azul-fondo);
}


/** Estilos para best_quality */
.best_quality{
    margin-top: 100px;
}
.best_quality h2{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--azul-fondo);
}
.best_quality .quality_card h3{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--azul-fondo);
}
.best_quality .quality_card p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--gris-textos);
}



/** Estilos para sección de footer */   
footer{
    margin-top: 100px;
    background-color: var(--gris-fondos-claros);
    padding: 50px 0px 0px;
}
footer .info p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--gris-textos);
}

footer .copy{
    background-color: var(--azul-botones);
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding-top: 15px;
    font-size: 14px;
}
footer .copy a{
    color: #fff;
}

footer .social-media a{
    color: #fff;
    background-color: var(--gris-botones);
    display: inline-block;
    padding: 3px 0px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    margin: 0px 2px;
    transition: all 0.4s ease;
    border-radius: 3px;
}
footer .social-media a:hover{
    transform: scale(1.1);
}
footer .social-media a.facebook:hover{
    background-color: #3b5998;   
}
footer .social-media a.instagram:hover{
    background-color: #e4405f;   
}
footer .social-media a.linkedin:hover{
    background-color: #0077b5;  
}
footer .social-media a.twitter:hover{
    background-color: #1da1f2;  
}
footer .contact-data h4{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--morado-oscuro-texto);
}
footer .contact-data ul{
    list-style: none;
    padding: 3px 0px 3px 5px;
    margin: 0px;
}
footer .contact-data ul li{
    margin: 5px 0px;
}

footer .contact-data ul li a{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--gris-textos);
    text-decoration: none;
}
footer .contact-data ul.quick li{
    display: inline-block;
    width: 49%;
}
footer input{
    background-color: #D3D4DD !important;
    border: none !important;
    color: #51525B !important;
}
footer button{
    background-color: var(--azul-botones) !important;
    border: none !important;
    color: #fff !important;
}
footer input:focus{
    box-shadow: none !important;
}
footer .newsletter h3{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--morado-oscuro-texto);
}



/** Estilos para contenedor de cap 3d */

.capcontainer {
    position: fixed;
    top: 37%;
    left: 25%;
    width: 500px;
    height: 500px;
    transform: translateY(-50%);
    transition: all 0.6s ease;
    z-index: 1000;
    cursor: pointer;
}
.capcontainer canvas{
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
}

.color_selector{
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    /* background-color: #fff; */
    /* box-shadow: 0px 7px 10px 0px #00000026; */
    border-radius: 5px;
    padding: 0px 10px;
}


.modellabel{
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 0px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 23px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: center;
    color: #fff;
    background-color: #ffffff3d;
    border-radius: 15px;
    pointer-events: none;
}

.modellabel p{
    margin: 10px 15px;
    padding: 0px 10px;
}









/**  ======================== **/
/** Estilos Resposive */
/**  ======================== **/

@media (max-width: 1300px) {
    .main-banner-cover svg{
        left: -15%;
    }
    .banner-box .dot1{
        top: 10%;
        left: -2%;
    }
    .banner-box .dot2{
        bottom: 10%;
        right: -3%;
    }
    .banner-box .dot3{
        bottom: -5%;
        right: 25%;
    }
    .banner-box .dot4{
        bottom: -8%;
        left:0%;
    }
}

/** MacBook */
@media (max-width: 1541px) and (max-height: 761px){
    .main-banner-cover svg {
        left: -10%;
    }
    .capcontainer{
        top: 55%;
        width: 500px;
        height: 500px;
    }
}

/** MacBook */
@media (max-width: 1440px) and (max-height: 726px){
    .capcontainer{
        transform: translateY(-62%);
        left: 25%;
    }
}


/** MacBook Pro*/
@media (max-width: 1280px) and (max-height: 800px){
    .capcontainer{
        transform: translateY(-60%);
        left: 25%;
    }
}

@media (max-width: 1200px) {
    .main-banner-cover svg{
        left: -20%;
        top: -10%;
    }
    /* .capcontainer{
        left: 0px !important;
    } */
    .capcontainer canvas{
        width: 500px !important;
        height: 500px !important;
    }
}

@media (max-width: 1024px) and (max-height: 1366px) {
    .main-banner-cover svg {
        left: -34%;
        top: 2%;
    }
}
@media (max-width: 1024px) and (max-height: 600px) {
    .main-banner-cover svg {
        left: -20% !important;
        top: -1%;
    }
}

/** Ipad Pro */
@media only screen and (max-width: 834px) and (max-height: 1194px){
    .banner_text_container{
        width: 100%;
        text-align: center;
    }
    .main_banner h2{
        color: #fff;
    }
    .main_banner h1 span{
        padding: 0 !important;
        margin: 0 !important;
    }
    section.main_banner .container-fluid{
        background-color: #1c74ba !important;
        background: #1c74ba !important;
        background-image: none;
    }
    .main-banner-cover {
        display: none;
    }
    h1{
        color: #fff !important;
    }
    .capcontainer{
        top: 35%;
        transform: translateY(-60%)translateX(-40%);
        left: 50%;
        position: absolute;
    }
    .make_impact .content{
        width: 100%;
    }
    .make_impact{
        height: 50vh;
    }
    .brand-container{
        width: 45% !important;
    }
}

/** iPad Air */
@media (max-width: 820px) and (max-height: 1180px) {
    .main-banner-cover {
        display: none;
    }
    .main_banner h2{
        color: #fff;
    }
    .main_banner h1 span{
        padding: 0 !important;
        margin: 0 !important;
    }
    .banner_text{
        margin: auto;
        text-align: center;
    }
    .capcontainer{
        width: 100%;
        height: 80vw;
        top: 0%;
        left: 50% !important;
        transform: translate(-50%, 0%);
    }
    .modellabel{
        bottom: 30%;
    }
    .capcontainer canvas{
        width: 85% !important;
        height: 80% !important;
        margin: auto;
    }
    .banner_text_container{
        width: 100%;
    }
    .brands img{
        max-width: 100%;
    }
    .brand-container{
        width: 45% !important;
    }
    .make_impact .content{
        width: 100%;
    }
    .color_selector{
        bottom: 15%;
    }
    .footer-section{
        width: 45%;
    }
    .footer-section.newsletter{
        width: 80%;
    }
    .quality_card_container{
        width: 100%;
    }
    .quality_card_container .row{
        justify-content: center;
    }
    .quality_card{
        width: 45%;
        text-align: center;
    }
    .process_item{
        width: 50%;
    }
}

@media (max-width: 780px) {
    .main_banner .container-fluid{
        background-color: #0077b5 !important;
        background-image: none !important;
    }
    .main_banner h2{
        color: #fff;
    }
    .main_banner h1 span{
        padding: 0 !important;
        margin: 0 !important;
    }
    .main-banner-cover svg{
        display: none;
    }
    .capcontainer{
        left: 50%;
        top: 0%;
        transform: translateX(-50%) !important;
        z-index: 100000;
    }
    .capcontainer canvas{
        width: 400px !important;
        height: 350px !important;
        margin: auto;
    }

    .banner_text{
        margin: auto;
        text-align: center;
    }
    .banner_text h1{
        color: #fff;
        text-align: center;
    }

    .banner_text .btn-primary{
        background-color: #D3D4DD;
        color: #0F0E0E;
    }
    .bottlecaps_cards .title p{
        max-width: 70%;
    }
    
}

/** Ipad */
@media (max-width: 768px) and (max-height: 1024px) {
    .capcontainer{
        width: 100%;
        height: 80vw;
        left: 50% !important;
        transform: translate(-50%, 0%);
        position: absolute;
    }
    .modellabel{
        bottom: 30%;
    }
    .capcontainer canvas{
        width: 500px !important;
        height: 450px !important;
    }
    .banner_text_container{
        width: 100%;
    }
    .brands img{
        max-width: 100%;
    }
    .brand-container{
        width: 45% !important;
    }
    .make_impact .content{
        width: 100%;
    }
    .color_selector{
        bottom: 15%;
    }
    .footer-section{
        width: 45%;
    }
    .footer-section.newsletter{
        width: 80%;
    }
    .quality_card_container{
        width: 100%;
    }
    .quality_card_container .row{
        justify-content: center;
    }
    .quality_card{
        width: 45%;
        text-align: center;
    }
    .process_item{
        width: 50%;
    }
}

@media (max-width: 768px){
    .capcontainer canvas {
        width: 600px !important;
        height: 600px !important;
        max-width: 100% !important;
        max-height: 100vw;
        top: 10% !important;
    }
    .capcontainer{
        top: 0 !important;
        left: 0 !important;
        height: 100% !important;
        width: 70% !important;
        transform: translate(0, 0) !important;
        position: relative !important;
    }
    .rowCapcontaier{
        justify-content: center !important;
    }
    section.main_banner .container-fluid{
        min-height: auto !important;
    }
    section.main_banner .container-fluid .row{
        min-height: 60vh;
        align-items: end;
        padding-bottom: 20px;
    }
    .make_impact{
        margin-top: 20px;
    }
}

@media (max-height: 740px) {
    .main-banner-cover svg{
        left: -15%;
    }
}

@media (max-width: 414px) and (max-height: 896px) {
    .capcontainer{
        top: 5%;
    }
    .modellabel{
        width: 80%;
        bottom: 10%;
    }
    .process_item{
        width: 90%;
        margin: auto;
    }
    .quality_card{
        width: 95%;
        margin: auto;
    } 
}

@media (max-width: 412px) and (max-height: 915px) {
    .capcontainer{
        top: 10%;
    }
    .modellabel{
        width: 80%;
        bottom: 10%;
    }
    .process_item{
        width: 90%;
        margin: auto;
    }
    .quality_card{
        width: 95%;
        margin: auto;
    } 
}


@media (max-width: 375px) and (max-height: 667px) {
    .capcontainer{
        top: 5% !important;
    }
    .modellabel{
        width: 80%;
        bottom: 10%;
    }
}

@media (max-width: 440px) {    
    .capcontainer{
        top: 10%;
    }
    .capcontainer canvas{
        width: 300px !important;
        height: 250px !important;
    }
    .banner_text h1{
        font-size: 35px;
    }
    section.main_banner .container-fluid .row{
        padding-bottom: 30px;
    }
    .process_item{
        width: 90%;
        margin-top: 15px;
        margin: auto;
    }

}

@media (max-width: 400px) {
    .create_yours {
     margin: 100px 0px 0px !important;
     border-radius: 0px;
     }
 }


 @media (max-width: 320px) {
    .capcontainer{
        top: 5%;
        max-width: 100% !important;
        height: 300px !important;
    }
    
    .capcontainer canvas{
        width: 100% !important;
        height: 300px !important;
        max-height: 100vw;
        margin: auto;
        max-width: 100% !important;
    }
    .banner_text h1{
        font-size: 35px;
    }

    .banner_text .btn-primary{
        background-color: #D3D4DD;
        color: #0F0E0E;
    }
    .express_style{
        padding: 10px 0px !important;
    }
    .bottlecaps_cards .title p{
        max-width: 95%;
    }
    .create_yours .container-fluid{
        padding: 10px 5px !important;
    }
}
































