* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --first-color:#001689;
    --second-color:#6096BA;
    --third-color:#000e5c;
    --fourth-color:#E5782E;
    --fifth-color: #E7ECEF;
    --white-color:#ffffff;
    --black-color:#111313;
    --gray-color: #A4A4A5;
    --gray-dark: #444444;

    --main-gradient:linear-gradient(90deg, #6096BA 0%, #001689 97.39%);
    --second-gradient: linear-gradient(95deg, #001689 34%, #6096BA 227.85%);
    --tertiary-gradient: linear-gradient(180deg, #FFFFFF 0%, #E7ECEF 100%);

    --primary-font: "Ubuntu", sans-serif;
    --secondary-font: "Hind Vadodara", sans-serif;
}

/* ////////// GENERALES ////////// */
main {
    overflow: hidden;
}
body {
    font-family: var(--secondary-font);
}
a {
    text-decoration: none;
}
i {
    display: flex;
}
i::before {
    display: flex;
    align-items: center;
}
h1 {
    font-size: 50px;
    font-family: var(--primary-font);
    font-weight: 500;
}
h3 {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 34px;
}
h4 {
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: 600;
}
h5 {
    font-size: 18px;
    font-weight: 400;
}
.txtGradient1 {
    background: var(--main-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
input {
    width: 100%;
    border: none;
    border-bottom: .5px var(--gray-color) solid;
    background: transparent;
    font-family: var(--secondary-font);
    color: var(--first-color);
    margin-bottom: 26px;
    font-size: 16px;
    font-weight: 400;
}
textarea {
    width: 100%;
    border: none;
    border-bottom: .5px var(--gray-color) solid;
    background: transparent;
    font-family: var(--secondary-font);
    color: var(--first-color);
    margin-bottom: 26px;
    font-size: 16px;
    font-weight: 400;
}
input, textarea {
    outline: none;
}

/* ////////// BUTTONS ////////// */
.btnPrimary {
    background-color: var(--first-color);
    color: var(--white-color);
    font-size: 14px;
    font-family: var(--primary-font);
    font-weight: 400;
    padding: 4px 16px;
    border-radius: 999px;
    display: flex;
    gap: 4px;
    width: fit-content;
    text-decoration: none;
    border: none;
    transition: all .5s ease-in-out;
}
.btnPrimary:hover {
    background-color: var(--third-color);
}
.btnSecondary {
    background-color: var(--white-color);
    color: var(--first-color);
    font-size: 14px;
    font-family: var(--primary-font);
    font-weight: 400;
    padding: 4px 16px;
    border-radius: 999px;
    border: none;
    display: flex;
    gap: 4px;
    width: fit-content;
    text-decoration: none;
    transition: all .5s ease-in-out;
}
.btnSecondary:hover {
    background-color: var(--fifth-color);
}
/* ////////// CINTILLO ////////// */
#cintillo {
    background-color: var(--first-color);
    padding-top: 6px;
    padding-bottom: 6px;
    z-index: 1001;
    position: relative;
    min-height: 33px;
    display: flex;
}
#cintillo .socials {
    display: flex;
    gap: 10px;
}
#cintillo .socials .btnSocial {
    background-color: var(--first-color);
    color: var(--white-color);
}
#cintillo .socials .btnSocial i {
    font-size: 16px;
}
.contactoCintillo {
    display: flex;
    gap: 10px;
    justify-content: end;
}
.contactoCintillo a {
    color: var(--white-color);
    font-size: 14px;
}
.telContactoCintillo span {
    text-decoration: underline;
}
.contactoCintillo i {
    display: none;
    font-size: 16px;
}
@media (max-width:575px) {
    .contactoCintillo i {
        display: block;
    }
    .contactoCintillo span {
        display: none;
    }
}
/* ////////// NAV ////////// */
.navbarMain {
    padding-top: 33px;
    padding-bottom: 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    transition: all .5s ease-in-out;
}
.navbarMain.sticky {
    background: var(--white-color);
    padding-top: 0;
}
.navbarMain .container-fluid {
    justify-content: flex-start;
    gap: 10px;
}
.navbarMain .navbar-brand {
    margin-right: auto;
}
.navbar-nav {
    width: 100%;
    padding-right: 10px;
    justify-content: end;
}
.navbar-collapse {
    justify-content: end;
}
.logoNavbar {
    height: 36px;
    transition: all .5s ease-in-out;
}
.btnMenu {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 14px;
    color: var(--first-color);
    transition: all .5s ease-in-out;
}
.btnMenu.active {
    color: var(--first-color)!important;
    text-decoration: underline;
}
.navbar-toggler {
    border: none;
    background-color: var(--white-color);
    width: fit-content;
    padding: 6px 10px;
    color: var(--first-color);
}
.navbar-toggler:focus, .navbar-toggler:focus-visible {
    outline: none;
    box-shadow: none;
}
.dropdown-menu {
    border: none;
}
/* ////////// HERO ////////// */
#hero {
    margin-top: 100px;
    min-height: 400px;
}
#hero h1 {
    color: var(--gray-dark);
}
.heroButtons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
#hero h1 span {
    color: var(--first-color);
}
/* ////////// HERO 2 ////////// */
#hero2 {
    margin-top: 46px;
    /* min-height: 400px; */
    /* padding-top: 80px; */
    padding-bottom: 80px;
    background: var(--main-gradient);
    position: relative;
    transition: all .5s ease-in-out;
}
#hero2::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../img/lines.svg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
#hero2 .container {
    padding-top: 80px;
    z-index: 3;
}
#hero2 h1 {
    color: var(--white-color);
}
#hero2 h1 span {
    color: var(--white-color);
}
#hero2 h5 {
    color: var(--white-color);
}
/* ////////// HERO 3 ////////// */
#hero3 {
    margin-top: 46px;
    /* min-height: 400px; */
    /* padding-top: 80px; */
    padding-bottom: 80px;
    /* background-image: url(../img/productos/silibake/1.jpg); */
    background-position: bottom;
    /* background-attachment: fixed; */
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    transition: all .5s ease-in-out;
}
#hero3::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
#hero3 .container {
    padding-top: 80px;
    z-index: 3;
    position: relative;
}
#hero3 h1 {
    color: var(--white-color);
}
#hero3 h1 span {
    color: var(--white-color);
}
#hero3 h5 {
    color: var(--white-color);
}


/* ////////// VIDEO BANNER ////////// */
.videoBannerCont {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 0 20px 0 20px;
    transition: all .5s ease-in-out;
}
.videoBannerCont video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ////////// TESTIMONIOS ////////// */
#testimonios {
    min-height: 700px;
    background: var(--main-gradient);
    position: relative;
    z-index: 1;
    margin-top: 100px;
    transition: all .5s ease-in-out;
}
#testimonios::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../img/lines.svg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
#testimonios .titleSection {
    padding-top: 80px;
    position: relative;
    z-index: 2;
}
#testimonios .container-fluid {
    position: relative;
    z-index: 2;
    /* padding-top: 80px;
    padding-bottom: 80px; */
    padding: 80px 0;
}
#testimonios h1 {
    color: var(--white-color);
}
.swiperTestimonios, .swiperTestimonios2 {
    width: 100%;
    /* min-height: 300px; */
    /* pointer-events: none; */
}
.swiperTestimonios .swiper-wrapper, .swiperTestimonios2 .swiper-wrapper {
    transition-timing-function: linear!important;
}
.testimonio-card {
    display: flex;
    flex-direction: column;
    height: auto !important;
    background-color: var(--white-color);
    width: 400px!important;
    border-radius: 0 20px 0 20px;
    padding: 10px;
    transition: all .5s ease-in-out;
}
.testimonio-card .testimonio-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 6px;
    color: var(--first-color);
}
.testimonio-card .testimonio-stars .empty-star {
    display: none;
}
.testimonio-card .testimonio-nombre {
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: var(--first-color);
    margin-bottom: 6px;
}
.testimonio-card .testimonio-body {
    font-size: 14px;
    font-family: var(--secondary-font);
    font-weight: 400;
    color: var(--gray-dark);
    margin-bottom: 10px;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden; */
}
.testimonio-card .testimonio-fecha {
    font-size: 12px;
    font-family: var(--secondary-font);
    font-weight: 400;
    color: var(--gray-dark);
    margin: 0;
    margin-top: auto;
}

/* ////////// TESTIMONIOS FORMULARIO ////////// */
#testimonioModal h1 {
    color: var(--first-color);
}
#testimonioModal .testimonio-stars-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 30px;
    margin-top: 8px;
    /* margin-bottom: 30px; */
}
#testimonioModal .testimonio-stars-form i {
    color: var(--gray-color);
    transition: all .5s ease-in-out;
}
.selected-stars {
    color: var(--first-color)!important; 
}
.testimonio-stars-form i {
    cursor: pointer;
}
#testimonioModal .testimonio-stars-form .hover-star {
    color: var(--first-color);
}

.namme-input-rating {
    margin-top: 30px;
}

.rating-error-message {
    color: red;
    font-size: 14px;
    margin-top: 0.25rem;
    display: none;
    justify-content: center;
    text-align: center;
    font-family: var(--secondary-font);
    /* margin-bottom: 30px; */
}


#form-message {
    background-color: var(--white-color);
    margin-top: 10px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 300px;
    z-index: 10000;
    border-radius: 10px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 15px 0px rgba(164, 207, 247, 0.20);
    transform: translateY(50%);
    opacity: 0;
    animation: alertTransition 5s ease-in-out forwards;
}
@keyframes alertTransition {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

    20% {
        transform: translateY(0%);
        opacity: 1;
    }

    80% {
        transform: translateY(0%);
        opacity: 1;
    }

    100% {
        transform: translateY(50%);
        opacity: 0;
    }
}
#form-message h1 {
    color: var(--first-color);
    font-size: 20px;
    text-align: center;
}
  

/* ////////// PRODUCTOS ////////// */
#productos {
    min-height: 600px;
    padding-top: 100px;
    padding-bottom: 100px;
    transition: all .5s ease-in-out;
}
#productos h1 {
    color: var(--first-color);
}

.swiperProductos {
    width: 100%;
    height: auto;
}

.swiperProductos-controls {
    display: flex;
    justify-content: right;
    align-items: center;
}

.swiper-button-next-productos, .swiper-button-prev-productos {
    position: relative!important;
    background-color: var(--first-color);
    width: 28px!important;
    height: 28px!important;
    border-radius: 999px;
    left: unset!important;
    right: unset!important;
    top: unset!important;
    bottom: unset!important;
    margin-top: 0!important;
    margin: 2px;
}
.swiper-button-next-productos i, .swiper-button-prev-productos i {
    font-size: 18px;
    color: var(--white-color);
}
.swiper-button-next-productos::after, .swiper-button-prev-productos::after {
    display: none;
}
.swiper-pagination-productos {
    position: relative!important;
    width: fit-content!important;
    left: unset!important;
    right: unset!important;
    top: unset!important;
    bottom: unset!important;
    margin-right: 14px;
    color: var(--gray-color)!important;
    font-size: 20px;
    font-weight: 500;
    transition: all .5s ease-in-out;
}
.swiper-pagination-productos span {
    font-family: var(--primary-font);
    transition: all .5s ease-in-out;
}
.swiper-pagination-productos span:first-child {
    color: var(--first-color);
    font-size: 50px;
}
.swiperProductos .swiper-wrapper {
    min-height: 400px;
}
.swiperProductos .swiper-slide {
    border-radius: 6px;
    overflow: hidden;
    height: fit-content;
    min-height: 300px;
    transition: all 2s ease-in-out;
    background-color: var(--white-color);
    margin-top: auto;
    color: var(--white-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(.8);
    transition: all 2s ease-in-out;
}
.swiperProductos .swiper-slide.swiper-slide-active {
    min-height: 400px;
    filter: grayscale(0);
    transition: all 2s ease-in-out;
}
.swiperProductos .swiper-slide img, .swiperProductos .swiper-slide.swiper-slide-active img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiperProductos .swiper-slide .slide-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 300px;
    padding: 20px;
    transition: all 2s ease-in-out;
}
.swiperProductos .swiper-slide.swiper-slide-active .slide-content {
    min-height: 400px;
}
.swiperProductos .swiper-slide .slide-content .logo-producto {
    width: 140px;
    margin-bottom: auto;
    /* filter: brightness(150); */
}


.swiperProductos .swiper-slide.silibake {
    background-image: url(../img/productos/silibake.jpg);
}
.swiperProductos .swiper-slide.silibake .slide-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(229, 120, 46, 0.80) 100%);
}
.swiperProductos .swiper-slide.silipack {
    background-image: url(../img/productos/silipack.jpg);
}
.swiperProductos .swiper-slide.silipack .slide-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(79, 151, 73, 0.80) 100%);
}
.swiperProductos .swiper-slide.siliwax {
    background-image: url(../img/gallery/2.jpg);
}
.swiperProductos .swiper-slide.siliwax .slide-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(20, 20, 120, 0.80) 73.67%, rgba(228, 126, 33, 0.80) 105.68%);
}
.swiperProductos .swiper-slide.ecotransfer {
    background-image: url(../img/productos/ecotransfer.jpg);
}
.swiperProductos .swiper-slide.ecotransfer .slide-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(11, 165, 218,0.80) 100%);
}
.swiperProductos .swiper-slide.silicoat {
    background-image: url(../img/productos/silicoat/2.jpg);
}
.swiperProductos .swiper-slide.silicoat .slide-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 80, 149,0.80) 100%);
}
.swiperProductos .swiper-slide.silimed {
    background-image: url(../img/productos/silimed/1.jpg);
}
.swiperProductos .swiper-slide.silimed .slide-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(20, 20, 120, 0.80) 100%);
}

/* ////////// CONÓCENOS ////////// */
#conocenos {
    min-height: 600px;
    background-color: var(--first-color);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    display: flex;
    transition: all .5s ease-in-out;
}
#conocenos .container {
    position: relative;
    z-index: 3;
}
#conocenos::before {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: '';
    background-image: url(../img/cualidades1.svg);
    background-position: center right;
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
}
#conocenos span{
    background: red;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    pointer-events: none;
    background: url(../img/cualidades2.svg);
    background-position: center right;
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
}

/* ////////// FAQS ////////// */
#faqs {
    min-height: 600px;
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url(../img/logo-back.svg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: -50% 40vh;
}
#faqs h4 {
    color: var(--first-color);
}
#faqs .accordion-button {
    color: var(--first-color);
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
}
#faqs .accordion-button:not(.collapsed) {
    background-color: transparent;
}
#faqs .accordion-button:focus-visible, #faqs .accordion-button:focus {
    outline: none;
    box-shadow: none;
}
#faqs .accordion-flush > .accordion-item {
    background-color: transparent;
}

/* ////////// CONTACTO ////////// */
#contacto {
    background: var(--main-gradient);
    min-height: 350px;
    margin-bottom: 60px;
    /* margin-top: 300px; */
    position: relative;
    /* display: flex;
    align-items: end;
    justify-content: center; */
    z-index: 1;
    transition: all .5s ease-in-out;
}
#contacto::before {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url(../img/lines.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
#contacto .contactanosSvg {
    width: 100vw;
    position: absolute;
    bottom: 0;
}
.goToContacto {
    min-height: 350px;
    display: flex;
    width: 100%;
  z-index: 1000;
  position: relative;
}


#contacto .container {
    position: relative;
    z-index: 4;
}
#contacto .formContainer {
    position: absolute;
    width: 100%;
    transform: translateY(-180px);
}
#contacto .form {
    /* background: var(--tertiary-gradient); */
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 6px;
    -webkit-box-shadow: 4px 4px 20px 0px rgba(160, 160, 160, .3);
    -moz-box-shadow: 4px 4px 20px 0px rgba(160, 160, 160, .3);
    box-shadow: 4px 4px 20px 0px rgba(160, 160, 160, .3);
}
#contacto .form h4 {
    margin-bottom: 0;
    color: var(--first-color);
}
/* @media (min-width:1200px) {
    #contacto {
        min-height: 400px;
    }
    #contacto .formContainer {
        transform: translateY(-200px);
    }
}
@media (max-width:767px) {
    #contacto {
        margin-top: 200px;
    }
}
@media (max-width:575px) {
    #contacto {
        margin-bottom: 30px;
    }
}
@media (max-width: 375px) {
    #contacto {
        margin-top: 250px;
    }
} */
/* ////////// FOOTER ////////// */
footer {
    color: var(--gray-dark);
    padding-bottom: 20px;
}
footer h3 {
    color: var(--first-color);
}
footer p {
    margin-bottom: 0;
}
footer a {
    text-decoration: none;
    color: var(--gray-dark);
}
footer .socials {
    display: flex;
    gap: 10px;
}
footer .socials .btnSocial {
    background-color: var(--white-color);
    color: var(--first-color);
}
footer .socials .btnSocial i {
    font-size: 20px;
}
.mailsFooter {
    display: flex;
    flex-direction: column;
}
footer .logoFooter {
    height: 64px;
}
.avisos {
    display: flex;
    justify-content: end;
    gap: 4px;
}
.avisos a {
    text-decoration: underline;
    color: var(--first-color);
}

@media (max-width:767px) {
    h1 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 26px;
    }
    footer h3 {
        font-size: 24px;
    }
    footer .logoFooter {
        display: none;
    }
    .avisos {
        justify-content: left;
        flex-direction: column;
    }
}

/* ////////// AVISO DE PRIVACIDAD PROVEEDORES ////////// */
#aviso-privacidad-proveedores {
    padding-top: 100px;
    padding-bottom: 100px;
}

#aviso-privacidad-proveedores h4 {
    color: var(--first-color);
}

.aviso-privacidad-proveedores #contacto {
    margin-top: 0;
    min-height: 200px;
}

/* ////////// AVISO DE PRIVACIDAD CLIENTES ////////// */
#aviso-privacidad-clientes {
    padding-top: 100px;
    padding-bottom: 100px;
}

#aviso-privacidad-clientes h4 {
    color: var(--first-color);
}

.aviso-privacidad-clientes #contacto {
    margin-top: 0;
    min-height: 200px;
}

@media (min-width: 576px) {
    .aviso-privacidad-proveedores #contacto, .aviso-privacidad-clientes #contacto {
        min-height: 300px;
    }
}

/* ////////// ALERTAS ////////// */
.alert {
    width: 100%;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    z-index: 1;
    border: none;
    /* background-color: rgba(4, 3, 14, .6); */
    background: transparent;
}

.alert-box {
    position: relative;
    /* top: 20px; */
    /* right: 20px; */
    z-index: 9999;
    padding: 20px 20px;
    border-radius: 20px;
    /* min-width: 450px; */
    min-height: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* background: var(--main-gradient); */
    background: var(--white-color);
    border: none;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: auto 0 0 auto;
    box-shadow: 0px 0px 15px 0px rgba(164, 207, 247, 0.20);
    transform: translateY(50%);
    opacity: 0;
    -webkit-box-shadow: 4px 4px 14px 0px rgba(74,74,74,0.3);
    -moz-box-shadow: 4px 4px 14px 0px rgba(74,74,74,0.3);
    box-shadow: 4px 4px 14px 0px rgba(74,74,74,0.3);
    animation: alertTransition 5s ease-in-out forwards;
}

@keyframes alertTransition {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

    20% {
        transform: translateY(0%);
        opacity: 1;
    }

    80% {
        transform: translateY(0%);
        opacity: 1;
    }

    100% {
        transform: translateY(50%);
        opacity: 0;
    }
}

.alert-box::before {
    position: absolute;
    content: '';
    background-color: var(--tertiary-color);
    width: 50px;
    height: 50px;
    border-radius: 20px;
}

.alert-box h1 {
    font-size: 24px;
    margin-bottom: 6px;
    font-family: var(--primary-font);
    color: var(--first-color);
    font-weight: 600;
}

.alert-box.error h1::before {
    /* content: url(../img/alert/send.gif); */
    content: '';
    background-image: url(../img/alertas/comment-xmark.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.alert-box.success h1::before {
    /* content: url(../img/alert/send.gif); */
    content: '';
    background-image: url(../img/alertas/comment-check.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.alert-box p {
    z-index: 2;
    line-height: normal;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--gray-dark);
}


/* ////////// CONTÁCTANOS PÁGINA ////////// */
#contactanos {
    padding-top: 100px;
    padding-bottom: 100px;
    border-top: 1px solid var(--gray-color);
    transition: all .5s ease-in-out;
}
#contactanos h4 {
    color: var(--first-color);
}

/* ////////// CONÓCENOS PÁGINA ////////// */
#filosofia {
    padding-top: 120px;
    padding-bottom: 120px;
}
#filosofia h4 {
    color: var(--first-color);
}
#filosofia i {
    color: var(--gray-color);
    font-size: 24px;
    margin-bottom: 6px;
}
#valores {
    /* background: var(--main-gradient); */
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 120px;
    border-top: 1px solid var(--gray-color);
}
/* #valores::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../img/lines.svg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
} */
#valores .titleSection {
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
}
#valores .titleSection h1 {
    color: var(--first-color);
}
.valor-card {
    background-color: var(--fifth-color);
    padding: 10px;
    border-radius: 6px;
    height: 100%;
}
.valor-card h4 {
    color: var(--first-color);
}
.valor-card p {
    margin-bottom: 0;
}
.swiper-divider-gallery {
    width: 100%;
    height: 300px;
}
.swiper-divider-gallery .swiper-wrapper {
    transition-timing-function: linear!important;
}
.swiper-divider-gallery .swiper-slide {
    height: 100%;
    width: 34%;
    transition: all .5s ease-in-out;
}
.swiper-divider-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .5s ease-in-out;
}
.swiper-divider-gallery .swiper-slide img:hover {
    transform: scale(1.1);
}
/* ////////// PRODUCTOS PÁGINA ////////// */
#producto-info {
    padding-top: 100px;
    padding-bottom: 100px;
}
#producto-info h4 {
    color: var(--first-color);
}
.card-img-product {
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px 0 10px 0;
}
.card-img-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

