@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}
body{
    overflow-x: hidden;
}
.content{
    width: 85%;
    margin: 0 auto;
}
a{
    text-decoration: none!important;
}
.mobile{
    display: none;
}
h3{
    font-weight: 700;
    color: #DF248F;
    font-size: 30pt;
    margin: 0;
}
.btn{
    background-color: #DF248F!important;
    color: white!important;
    box-shadow: none!important;
}
.btn:hover{
    opacity: .9;
}

@media screen and (max-width: 767px){
    .content{
        width: 90%;
    }
    h3{
        font-size: 25pt;
    }
    .desktop{
        display: none;
    }
    .mobile{
        display: block;
    }
}

/* -------------- H E A D E R ------------ */
header{
    background-color: #df248f;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}
.navbar-brand img{
    width: 400px;
    transition: width 0.4s ease-out;
}
.nav-item{
    margin-left: 15px;
}
.navbar-dark .navbar-nav .nav-link{
    color: white!important;
    font-size: 14pt;
}
.navbar-dark .navbar-nav .nav-link:hover{
    font-weight: 600;
}
.scroll{
    -webkit-box-shadow: 0px 4px 10px 0px rgba(69,69,69,0.56); 
    -moz-box-shadow: 0px 4px 10px 0px rgba(69,69,69,0.56); 
    box-shadow: 0px 4px 10px 0px rgba(69,69,69,0.56);
}
.scroll .navbar-brand img{
    width: 180px;
}
.navbar-dark .navbar-toggler{
    border: none;
    padding: 0;
    outline: none!important;
}
.navbar-dark .navbar-toggler-icon{
    background-image: url('../assets/img/icn_menu.svg');
    width: 40px;
    height: 40px;
}
.body::before{
    content: "";
    height: 148.39px;
    display: block;
    visibility: hidden;
    transition: height 0.4s ease-out;
}
.bodyScroll::before{
    height: 81.08px;
}
@media screen and (max-width: 991px){
    .navbar{
        padding: 3px 0;
    }
    .navbar-collapse{
        padding: 20px 0;
    }
    .dropdown-menu{
        background-color: transparent!important;
        border: none;
    }
    .dropdown-item{
        color: white;
    }
    .nav-link{
        margin-left: 0;
    }
    .navbar-brand img{
        width: 215px;
    }
    .scroll .navbar-brand img{
        width: 130px;
    }
    .body::before{
        height: 81.79px;
    }
    .bodyScroll::before{
        height: 55.78px;
    }
    .scrollable-menu {
        height: auto;
        max-height: 88vh;
        overflow-x: hidden;
    }
}

/* ------------- B A N N E R ------------ */
.banner{
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.banner .overlay{
    background-color: rgba(0,0,0,.4);
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner h2{
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 60pt;
    text-shadow: -1px 0px 30px rgba(0, 0, 0, 1);
}

@media screen and (max-width: 767px){
    .banner{
        height: 60vh;
    }
    .banner h2{
        font-size: 35pt;
    }
}

/* ---------------- N O S O T R O S ---------------- */
.nosotros{
    padding: 100px 0;
}
.nosotros img{
    width: 100%;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(69,69,69,0.56);
    -moz-box-shadow: 0px 0px 30px 0px rgba(69,69,69,0.56);
    box-shadow: 0px 0px 30px 0px rgba(69,69,69,0.56);
}
.nosotros .row{
    align-items: center;
}
.nosotros p{
    margin: 0;
}
.nosotros p.text1{
    margin: 20px 0;
}
#quienes_somos{
    width: 100%; 
    height: 1px; 
    position: absolute; 
    bottom: 50px;
}
@media screen and (max-width: 767px){
    .nosotros{
        padding: 80px 0;
    }
    .nosotros h3{
        margin-top: 30px;
    }
}

/* ------------- P R O D U C T O S ------------ */
.productos{
    padding: 100px 0;
    background-color: #f2f2f2;
    text-align: center;
}
.productos .row{
    justify-content: center;
}
.productos h3{
    margin-bottom: 40px;
}
.productos .producto{
    margin: 20px 0;
}
.productos img{
    width: 65%;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    display: block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(69,69,69,0.40);
    -moz-box-shadow: 0px 0px 20px 0px rgba(69,69,69,0.40);
    box-shadow: 0px 0px 20px 0px rgba(69,69,69,0.40);
}
.productos strong{
    color: #0094D5;
    font-size: 15pt;
}
.card-header .btn{
    background-color: transparent!important;
    color: black!important;
}

@media screen and (max-width: 767px){
    .productos{
        padding: 80px 0;
    }
    .productos img{
        width: 100%;
    }
    .productos strong{
        font-size: 12pt;
    }
}

/* ------------- P A R A L L A X ------------- */
.parallax{
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}
.parallax h1{
    text-align: center;
    color: #DF248F;
    font-weight: 700;
    margin: 0;
    font-size: 40pt;
}

@media screen and (max-width: 767px){
    .parallax{
        padding: 80px 0;
    }
    .parallax h1{
        font-size: 25pt;
    }
}

/* ------------ P R O D U C T O S  2 -------------- */
.productos2{
    padding: 100px 0 40px 0;
}
.productos2 .row{
    justify-content: center;
}
.productos2 .contentCard{
    margin-bottom: 60px;
}
.productos2 .card{
    border: none;
    height: 100%;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(69,69,69,0.40);
    -moz-box-shadow: 0px 0px 20px 0px rgba(69,69,69,0.40);
    box-shadow: 0px 0px 20px 0px rgba(69,69,69,0.40);
}
.productos2 h3{
    text-align: center;
    margin-bottom: 60px;
}
.productos2 strong{
    color: #0094D5;
    font-size: 14pt;
}
.productos2 a{
    color: #0094D5;
    font-size: 11pt;
    font-weight: 600;
}
.modal{
    z-index: 99999;
}
.modal-header{
    border: none;
}
.modal-header .close{
    outline: none!important;
}
.modal-body{
    padding: 0 5% 40px 5%;
}
.modal .row{
    align-items: center;
}
.modal h3{
    margin-bottom: 20px;
}
.modal img{
    width: 100%;
}
.modal ul li{
    list-style-position: inside;
}
.modal .btn{
    margin-top: 20px;
}

@media screen and (max-width: 991px){
    .modal-body{
        padding-bottom: 20px;
    }
    .modal h3{
        margin-top: 30px;
    }
}
@media screen and (max-width: 767px){
    .productos2{
        padding: 80px 0 20px 0;
    }
}

/* ------------- F R A S E ------------- */
.frase{
    padding: 100px 0;
    text-align: center;
    background-color: #F2F2F2;
}
.frase .content{
    width: 92.5%;
    margin: 0 0 0 auto;
}
.frase .row{
    align-items: center;
}
.frase h4{
    font-weight: 600;
    font-size: 20pt;
    margin: 0;
    color: #DF248F;
}

.frase img{
    width: 100%;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(69,69,69,0.56);
    -moz-box-shadow: 0px 0px 30px 0px rgba(69,69,69,0.56);
    box-shadow: 0px 0px 30px 0px rgba(69,69,69,0.56);
}

@media screen and (max-width: 991px){
    .frase h4{
        font-size: 18pt;
    }
}
@media screen and (max-width: 767px){
    .frase{
        padding: 80px 0;
    }
    .frase h4{
        font-size: 15pt;
        margin-top: 30px;
    }
    .frase .content{
        width: 90%;
        margin: 0 auto;
    }
}

/* ------------- M A R C A S ------------- */
.marcas{
    padding: 80px 0;
    text-align: center;
}
.marcas h3{
    margin-bottom: 40px;
}
.marcas img{
    width: 100%;
    filter: grayscale(1);
}
.marca{
    padding: 0 30px;
}
.slick-initialized .slick-slide{
    outline: none!important;
}

/* ------------- C O N T A C T O ------------- */
.contacto{
    background-color: #F2F2F2;
    border-top: 4px solid #DF248F;
    border-bottom: 4px solid #DF248F;
    overflow-x: 0;
}
.contacto .content{
    width: 92.5%;
    margin: 0 0 0 auto;
}
.contacto h3{
    margin-bottom: 60px;
}
.contacto .row{
    align-items: center;
    margin: 0;
}
.contacto .dato{
    margin: 30px 0;
    display: flex;
    align-items: center;
}
.contacto a{
    color: #212529;
    display: flex;
    align-items: center;
}
.contacto img{
    width: 30px;
    margin-right: 15px;
}
.contacto .direccion{
    margin-top: 40px;
}
.contacto p{
    margin: 0;
    display: inline-block;
    max-width: 300px;
    vertical-align: middle;
}
.contacto .direccion{
    text-align: center;
}
.contacto .contentMapa{
    padding: 0;
}
.mapa{
    width: 100%;
    height: 500px;
}

@media screen and (max-width: 991px){
    .contacto .content{
        width: 100%;
    }
    .contacto .datos{
        width: 70%;
        margin: 0 auto;
        padding: 80px 0 50px 0;
    }
    .contacto img{
        width: 18px;
    }
    .contacto .contentMapa{
        border-top: 4px solid #DF248F;
    }
}
@media screen and (max-width: 767px){
    .contacto .datos{
        width: 90%;
        margin: 0;
    }
}

/* ------------ F O O T E R ------------ */
footer{
    background-color: #363636;
    text-align: center;
    padding: 15px 0;
}
footer small{
    color: white;
}
