/*$primary: #0A52E4*/

@font-face {
    font-family: "Gotham";
    src: url("../fonts/gotham/Gotham-Book.otf") format("opentype");
}

:root {
    --principal-green: #2F5F4F;
    --hover-green: #234539;
    --transparence-green: color-mix(in srgb, var(--hover-green), transparent 30%);
    ;
    --basc-text: rgb(156, 163, 175);
    --fs-h1: 3.5rem;
    /* 56px */
    --fs-h2: 2.25rem;
    /* 36px */
    --fs-h3: 1.25rem;
    /* 20px */
    --fs-body: 1rem;
    /* 16px */
    --fs-small: 0.875rem;
    /* 14px */
    --margin-lateral: 10%;
    --margin-lateral-xl: 18%;
    --margin-lateral-md: 10%;
    --margin-lateral-sm: 5%;
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
    font-family: 'Gotham', sans-serif;
    overflow-x: hidden;
    font-size: var(--fs-body);
    cursor: url(../img/icons/cursor1.png), auto;
}

.header-style {
    width: 100%;
    position: fixed;
    z-index: 999;
}

.content-wrapper {
    padding-left: var(--margin-lateral) !important;
    padding-right: var(--margin-lateral) !important;
}

#menu {
    background-color: rgba(255, 255, 255, 0);
    color: white;
}

#menu a {
    color: inherit;
    text-decoration: none;
    font-size: var(--fs-small);
}

.menu-padding {
    padding-left: 10%;
    padding-right: 10%
}

#btn-language {
    background-color: rgba(255, 255, 255, 0);
    color: white;
    font-size: var(--fs-small);
}


/*#btn-language.scrolled {
    color: var(--principal-green) !important;
    border: none;
}*/

#btn-cont {
    background-color: white;
    color: var(--principal-green);
    font-size: var(--fs-small);
}

#btn-cont.scrolled {
    background-color: var(--principal-green) !important;
    color: white !important;
}

.scrolled {
    background-color: rgba(47, 95, 79, 0.9) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /*color: #333 !important;*/
    font-weight: bold;
}

.nav-logo {
    width: 250px;
    height: 200px!important;
}

.logo-p {
    width: 220px;
    height: 70px
}

.nav-logo2 {
    /* width: 135px; */
    min-width: auto;
    max-height: 50px;
}

.logo-scroll {
    display: none !important;
}

#menu.scrolled .logo-inicial {
    display: none !important;
}

#menu.scrolled .logo-scroll {
    display: block !important;
}

.nav-logo {
    transition: all 0.3s ease-in-out;
}

.logo-web {
    display: block;
}

.logo-mobile {
    display: none;
}

.logo-menu-mobile {
    max-height: 50px;
    /* Ajusta este valor según el alto de tu menú */
    width: auto;
}

.fondo-imagen {
    /* background: linear-gradient(to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.8) 25%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.3) 100%
        ), url(../img/gml-1.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; */
    /* height: 100vh; */
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mantiene la proporción y llena el div */
    z-index: 1;
    /* Lo envía al fondo de todo */
}


/* Capa para oscurecer el video y que el texto blanco resalte */

.video-overlay {
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    inset: 0;
    /* width: 100%; */
    /* height: 100%; */
    background: rgba(0, 0, 0, 0.2);
    /* Negro con 40% de opacidad */
    z-index: 2;
}

.principal-container {
    padding-top: 5vh;
    padding-left: 25%;
    padding-right: 25%;
    text-align: left;
    position: relative;
    z-index: 3;
}


/* ====== ONDAS SVG ====== */

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    transform: scaleY(-1);
    transform-origin: center;
    z-index: 4;
    pointer-events: none;
}


/* Primera capa */

.wave-1 {
    fill: #2F5F4F;
    opacity: 0.12;
    animation: wavePulse 5s ease-in-out infinite;
}


/* Segunda capa */

.wave-2 {
    fill: #2F5F4F;
    opacity: 0.22;
    animation: wavePulse 7s ease-in-out infinite;
}


/* Animación tipo parpadeo */

@keyframes wavePulse {
    0%,
    100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.35;
    }
}

.principal-sup-title {
    /* width: 350px; */
    width: fit-content;
    inline-size: fit-content;
    /* background-color: var(--hover-green); */
    background-color: #234539;
    background-color: var(--transparence-green);
    border: 1px solid var(--principal-green);
    margin-top: 10px;
    margin-bottom: 10px;
    /* text-align: center; */
    padding: 8px 20px;
    border-radius: 40px;
    font-size: var(--fs-small);
}

.text-white {
    color: white;
}

.principal-title {
    font-size: var(--fs-h1) !important;
    font-weight: 900;
}

.principal-text {
    font-size: var(--fs-body);
    color: var(--basc-text);
    -webkit-text-stroke: .5px white;
}

.btn-know {
    background-color: var(--principal-green);
    border-radius: 8px;
    color: white;
    padding: 8px 25px;
    overflow: hidden;
    font-size: var(--fs-body);
}

.btn-know:hover {
    background-color: var(--hover-green);
    color: white;
    border: 1px solid green;
}

.btn-know i {
    transition: transform 0.2s ease-in-out;
    display: inline-block;
    color: white;
}

.btn-know:hover i {
    transform: translateX(5px);
}

.btn-contact {
    background-color: white;
    border-radius: 5px;
    color: black;
    padding: 8px 25px;
    /* font-size: 1.3vw; */
    font-size: var(--fs-body);
}

.btn-contact:hover {
    background-color: black;
    color: white;
    border: 1px solid white;
}

.our-section {
    background-color: rgb(249 250 251);
    padding-top: 3%;
    padding-bottom: 3%;
}

.our-alignment {
    text-align: center;
    padding-top: 50px;
}

.our-card {
    border-radius: 15px;
    height: 375px;
    border: none;
}

.our-card:hover,
.link-a:hover {
    background-color: var(--principal-green);
    color: white;
    transition: background-color 0.3s ease;
    a {
        color: white;
        font-weight: bold;
    }
}

.our-title {
    color: var(--principal-green);
    font-weight: bold;
    font-size: var(--fs-small);
}

.our-title2 {
    font-size: var(--fs-h2);
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.our-title2::after {
    content: '';
    display: block;
    width: 75px;
    height: 4px;
    background-color: #2e5e4e;
    margin: 0 auto;
    border-radius: 10px;
}

.cuadrado-contenedor {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    background-color: rgba(47, 95, 79, 0.1);
}

.imagen-centrada {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.our-card:hover .cuadrado-contenedor {
    background-color: rgba(255, 255, 255, 0.2);
}

.our-card:hover .imagen-centrada {
    filter: brightness(0) invert(1);
}

.card-text1 {
    font-size: var(--fs-h3);
}

.card-text2 {
    font-size: var(--fs-small);
}

.card-text-limit {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-width: 400px;
}

.link-a {
    color: var(--principal-green);
    font-size: var(--fs-small);
}

.padding-sup-card {
    padding-top: 15px;
}

.padding-medium {
    padding-top: 15px;
    height: 250px;
}

.top-cards {
    padding-top: 0px;
}

.about-gml {
    background-color: white;
}

.about-paddind-content {
    padding-top: 6%;
    padding-bottom: 6%;
}

.about-img {
    /* background: url(../img/1.png); */
    /* background-repeat: no-repeat; */
    /* background-position: center center; */
    height: 500px;
    max-width: 100%;
    border-radius: 40px !important;
    /* background-size: contain; */
}

.cont-about-img {
    height: 500px;
    max-width: 100%;
    background-size: contain;
}

.about-title {
    font-size: var(--fs-small);
    color: var(--principal-green);
}

.about-title2 {
    font-size: var(--fs-h2);
    color: black;
    font-weight: bold;
}

.about-txt {
    font-size: var(--fs-small);
}

.about-list {
    color: var(--principal-green);
    font-size: var(--fs-small);
}

.about-list2 {
    color: white;
    font-size: var(--fs-small);
}

.about-btn {
    color: white;
    background-color: var(--principal-green);
    padding: 5px 25px;
    border-radius: 8px;
    border: var(--hover-green);
    overflow: hidden;
    font-size: var(--fs-small);
}

.about-btn:hover {
    background-color: var(--hover-green);
    border: 1px solid var(--principal-green);
}

.about-btn i {
    transition: transform 0.2s ease-in-out;
    display: inline-block;
}

.about-btn:hover i {
    transform: translateX(5px);
}

.quotation-section {
    height: auto;
    background-color: black;
}

.quotation-div-1 {
    height: auto;
    text-align: center;
    padding-top: 5%;
    padding-bottom: 5%;
}

.quotation-div-2 {
    background-color: white;
    height: 10vh;
}

.quotation-btn1 {
    background-color: var(--principal-green);
    color: white;
    overflow: hidden;
    font-size: var(--fs-body);
}

.quotation-btn1:hover {
    background-color: var(--hover-green);
    border: 1px solid white;
    color: white;
}

.quotation-btn1 i {
    display: inline-block;
    color: white;
}

.quotation-btn1:hover i {
    transform: translateX(5px);
}

.quotation-btn2 {
    background-color: black;
    color: white;
    overflow: hidden;
    border: 1px solid white;
    font-size: var(--fs-body);
}

.quotation-btn2:hover {
    background-color: #0b6730;
    border: 1px solid white;
    color: white;
}

.quotation-btn2 i {
    transition: transform 0.2s ease-in-out;
    display: inline-block;
    color: white;
}

.quotation-btn2:hover i {
    transform: translateX(5px);
}

.quotation-title {
    font-size: var(--fs-h1);
    font-weight: bold;
    color: white;
}

.quotation-subtitle {
    font-size: var(--fs-body);
    font-weight: bold;
    color: var(--basc-text);
}

.footer-section {
    background-color: black;
    height: auto;
}

.footer-container {
    padding-top: 3%;
    padding-bottom: 1%;
}

.footer-section1 {
    text-align: left;
}

.footer-logo {
    max-width: 60%;
}

.footer-section2 {
    padding-top: 0px;
}

.footer-final-txt {
    text-align: left;
    color: var(--basc-text);
    font-size: var(--fs-small);
}

.footer-final-txt2 {
    text-align: right;
    color: var(--basc-text);
    font-size: var(--fs-small);
}

.footer-list-title {
    color: white;
    font-weight: bold;
}

.footer-list-op {
    color: var(--basc-text);
    font-size: var(--fs-small);
}

.social-container {
    display: flex;
    gap: 15px;
}

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2c2c2c;
    border-radius: 12px;
    text-decoration: none;
}

.icon-box i {
    color: #ffffff;
    font-size: 18px;
}

.icon-box:hover {
    background-color: var(--hover-green);
}

.op-menu-footer:hover {
    color: white;
}

.align-social-i {
    display: flex;
    justify-content: left;
    align-items: start;
}

.new-section {
    padding-top: 15px;
    padding-bottom: 0px;
    background-color: var(--principal-green);
}


/* El contenedor limita lo que se ve */

.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    /* Importante: el carril se ajusta al tamaño total de los textos */
    animation: scroll-right 35s linear infinite;
}


/* Pausar al pasar el mouse sobre el carril */

.marquee-track:hover {
    animation-play-state: paused;
    cursor: pointer;
}

.marquee-item {
    color: white;
    font-family: sans-serif;
    font-size: 1.2rem;
    padding: 0 40px;
    white-space: nowrap;
}


/* ANIMACIÓN PARA DESPLAZAR A LA DERECHA */

@keyframes scroll-right {
    0% {
        /* Empezamos desplazados medio carril a la izquierda (ocultando el Grupo 1) */
        transform: translateX(-50%);
    }
    100% {
        /* Terminamos en la posición original (mostrando el Grupo 1) */
        transform: translateX(0);
    }
}

.certifications-title {
    font-size: var(--fs-h2);
    font-weight: bold;
    color: black;
}

.padding-cards-iso {
    padding-top: 5%;
    padding-bottom: 3%;
    text-align: center;
}

.carrusel {
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    position: relative;
    padding: 10px 0;
}

.carrusel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.card-iso {
    width: 225px;
    height: 225px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.card-iso img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-255px * 4));
    }
}

.carrusel-track:hover {
    animation-play-state: paused;
}


/* Contenedor principal: oculta lo que sobresale */

.slider-container {
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 0px 0;
    position: relative;
}


/* El "riel" que contiene las imágenes */

.slider-track {
    display: flex;
    width: calc(250px * 12);
    /* (Ancho de cada logo * total de logos) */
    animation: scroll 30s linear infinite;
}


/* Pausa la animación al pasar el cursor */

.slider-track:hover {
    animation-play-state: paused;
}


/* Estilo de cada diapositiva */

.slide {
    width: 250px;
    /* Ajusta según el tamaño que desees */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slide img {
    width: 100%;
    height: auto;
    /* filter: grayscale(100%); */
    transition: filter 0.3s;
}

.slide img:hover {
    filter: grayscale(0%);
    /* Vuelven a color al pasar el cursor */
}


/* Animación: se mueve exactamente la mitad del ancho total */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6));
    }
    /* Mueve 6 logos a la izquierda */
}

.company-padding {
    padding-top: 3%;
    padding-bottom: 3%;
    text-align: center;
}

.company-title {
    font-size: var(--fs-h2);
    font-weight: bold;
    color: black;
}


/* +++++++++++++++++++++++++++++ */

@media screen and (min-width: 1537px) {
    .content-wrapper {
        padding-left: var(--margin-lateral-xl) !important;
        padding-right: var(--margin-lateral-xl) !important;
    }
    .principal-container {
        /* padding-top: 0vh; */
        padding-left: 30%;
        padding-right: 30%;
        text-align: left;
    }
}

@media screen and (max-width: 1425px) {
    .content-wrapper {
        padding-left: var(--margin-lateral-md) !important;
        padding-right: var(--margin-lateral-md) !important;
    }
    .our-section {
        background-color: rgb(249 250 251);
        padding-top: 3%;
        padding-bottom: 3%;
    }
    .quotation-div-1 {
        height: auto;
        text-align: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .about-gml {
        background-color: white;
        height: auto;
    }
    .our-card {
        border-radius: 15px;
        height: 380px;
    }
    .quotation-div-1 {
        text-align: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }
}

@media (max-width: 1200px) {
    .menu-padding {
        padding-left: 10%;
        padding-right: 10%
    }
    .principal-container {
        padding-top: 10vh;
        padding-bottom: 10vh;
        padding-left: 10%;
        padding-right: 10%;
        text-align: left;
    }
    .quotation-section {
        height: auto;
        color: white;
        background-color: black;
    }
    .our-section {
        background-color: rgb(249 250 251);
        padding-top: 3%;
        padding-bottom: 3%;
    }
    .our-card {
        border-radius: 15px;
        height: 380px;
    }
    .quotation-div-1 {
        text-align: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }
}

@media screen and (max-width: 991px) {
    .content-wrapper {
        padding-left: var(--margin-lateral-sm) !important;
        padding-right: var(--margin-lateral-sm) !important;
    }
    .logo-web {
        display: none;
    }
    .logo-mobile {
        display: block
    }
    #menu {
        background-color: rgba(0, 0, 0, 0.95);
        color: black;
        font-weight: bold;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1050;
        transition: background-color 0.3s ease;
    }
    #menu a {
        color: inherit;
        text-decoration: none;
    }
    .menu-padding {
        padding-left: 15px;
        padding-right: 15px;
    }
    /* 1. ESTADO INICIAL (Sin scroll) */
    #menu .nav-link {
        color: white !important;
        /* Texto blanco al inicio */
        transition: color 0.3s ease-in-out;
        /* Suaviza el cambio de color */
    }
    /* 2. ESTADO CON SCROLL (Al bajar) */
    #menu.scrolled .nav-link {
        color: black !important;
        /* Texto negro cuando se activa el scroll */
    }
    /* 3. EFECTO HOVER (Al pasar el mouse) */
    /* Lo aplicamos a ambos estados para que siempre sea verde al pasar el cursor */
    #menu .nav-link:hover,
    #menu.scrolled .nav-link:hover {
        color: var(--principal-green) !important;
        /* Verde (usando tu variable) */
        background-color: rgb(from var(--principal-green) r g b / 0.05) !important;
        width: 100%;
        border-radius: 15px;
    }
    /* 1. ESTADO INICIAL (Al top - Icono Blanco) */
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5) !important;
        /* Borde suave blanco */
    }
    .navbar-toggler-icon {
        /* Este filtro convierte el icono negro original de Bootstrap en blanco */
        filter: invert(1) brightness(100%) contrast(100%);
    }
    /* 2. ESTADO CON SCROLL (Al bajar - Icono Oscuro) */
    #menu.scrolled .navbar-toggler {
        border-color: rgba(0, 0, 0, 0.1) !important;
        /* Borde suave oscuro */
    }
    #menu.scrolled .navbar-toggler-icon {
        /* Quitamos el filtro para que vuelva a su color oscuro original */
        filter: none;
    }
    #btn-language {
        background-color: rgba(255, 255, 255, 0);
        color: var(--principal-green) !important;
    }
    #btn-cont {
        background-color: var(--principal-green) !important;
        color: white !important;
    }
    /* .fondo-imagen {
        background: linear-gradient(to right,
                rgba(0, 0, 0, 1) 0%,
                
                rgba(0, 0, 0, 0.8) 25%,
               
                rgba(0, 0, 0, 0.6) 50%,
               
                rgba(0, 0, 0, 0.3) 100%
                
            ),
            url(../img/gml-1.png) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        min-height: 75vh;
    } */
    .principal-container {
        padding-top: 15vh;
        padding-bottom: 10vh;
        padding-left: 10%;
        padding-right: 10%;
        text-align: left;
    }
    .principal-title {
        font-weight: bold;
    }
    .btn-know {
        background-color: var(--principal-green);
        border-radius: 8px;
        color: white;
        padding: 15px 25px;
    }
    .btn-contact {
        background-color: white;
        border-radius: 5px;
        color: black;
        padding: 15px 25px;
    }
    .top-cards {
        padding-top: 15px;
    }
    .card-text1 {
        font-weight: bold;
    }
    .link-a {
        color: var(--principal-green);
    }
    .our-card {
        border-radius: 15px;
        height: 360px;
    }
    .about-gml {
        background-color: white;
        height: auto;
    }
    /* .about-img {
        background: url(../img/1.png);
        background-repeat: no-repeat;
        background-position: center center;
        height: 250px;
        width: 100%;
        border-radius: 40px;
        background-size: cover;
    } */
    .about-img {
        /* background: url(../img/1.png); */
        /* background-repeat: no-repeat; */
        /* background-position: center center; */
        height: 250px;
        max-width: 100%;
        border-radius: 40px !important;
        /* background-size: contain; */
    }
    .cont-about-img {
        height: 250px;
        max-width: 100%;
        background-size: contain;
    }
    .about-paddind-content {
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .about-title {
        color: var(--principal-green);
    }
    .about-title2 {
        color: black;
        font-weight: bold;
    }
    .quotation-div-1 {
        height: auto;
        text-align: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .quotation-title {
        font-weight: bold;
        color: white;
    }
    .quotation-subtitle {
        font-weight: bold;
        color: var(--basc-text);
    }
    .footer-section1 {
        text-align: center;
    }
    .footer-logo {
        max-width: 35%;
    }
    .footer-section2 {
        padding-top: 25px;
    }
    .footer-final-txt {
        text-align: center;
    }
    .footer-final-txt2 {
        text-align: center;
    }
    .align-social-i {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 810px) {
    /* .fondo-imagen {
        background: linear-gradient(to right,
                rgba(0, 0, 0, 1) 0%,
                
                rgba(0, 0, 0, 0.8) 25%,
                
                rgba(0, 0, 0, 0.6) 50%,
                
                rgba(0, 0, 0, 0.3) 100%
                
            ), url(../img/gml-1.png) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        min-height: 70vh;
    } */
    .logo-p {
        width: 140px;
        height: 40px
    }
}

@media screen and (max-width: 767px) {
     :root {
        --fs-h1: 2.25rem;
        /* 36px */
        --fs-h2: 1.5rem;
        /* 24px */
        --fs-h3: 1.0625rem;
        /* 17px */
        --fs-body: 0.9375rem;
        /* 15px */
        --fs-small: 0.8125rem;
        /* 13px */
    }
    /* .fondo-imagen {
        background: linear-gradient(to right,
                rgba(0, 0, 0, 1) 0%,
               
                rgba(0, 0, 0, 0.8) 25%,
                
                rgba(0, 0, 0, 0.6) 50%,
                
                rgba(0, 0, 0, 0.3) 100%
                
            ), url(../img/gml-1.png) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        min-height: 75vh;
    } */
    .top-cards {
        padding-top: 15px;
    }
    .principal-title {
        font-weight: bold;
    }
    .btn-know {
        background-color: var(--principal-green);
        border-radius: 8px;
        color: white;
        padding: 15px 25px;
    }
    .btn-contact {
        background-color: white;
        border-radius: 5px;
        color: black;
        padding: 15px 25px;
    }
    .our-card {
        border-radius: 15px;
        height: 375px;
    }
    .our-title {
        color: var(--principal-green);
        font-weight: bold;
    }
    .our-title2 {
        font-weight: bold;
    }
    .card-text1 {
        font-weight: bold;
    }
    .link-a {
        color: var(--principal-green);
    }
    .about-title {
        color: var(--principal-green);
    }
    .about-title2 {
        color: black;
        font-weight: bold;
    }
    .quotation-div-1 {
        text-align: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .quotation-title {
        font-weight: bold;
        color: white;
    }
    .quotation-subtitle {
        /* font-size: 2.2vw; */
        font-weight: bold;
        color: var(--basc-text);
    }
    .footer-section1 {
        text-align: center;
    }
    .footer-logo {
        max-width: 30%;
    }
}

@media screen and (max-width: 619px) {
    .principal-container {
        padding-top: 15vh;
        padding-bottom: 15vh;
        padding-left: 5%;
        padding-right: 5%;
        text-align: left;
    }
    /* .fondo-imagen {
        background: linear-gradient(to right,
                rgba(0, 0, 0, 1) 0%,
                
                rgba(0, 0, 0, 0.8) 25%,
                
                rgba(0, 0, 0, 0.6) 50%,
                
                rgba(0, 0, 0, 0.3) 100%
                
            ), url(../img/gml-1.png) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        min-height: 65vh;
    } */
    .our-card {
        border-radius: 15px;
        height: 350px;
    }
    .card-text1 {
        font-weight: bold;
    }
    .link-a {
        color: var(--principal-green);
    }
    .about-title {
        color: var(--principal-green);
    }
    .about-title2 {
        color: black;
        font-weight: bold;
    }
    .quotation-section {
        height: auto;
        color: white;
        background-color: black;
    }
    .quotation-div-1 {
        height: auto;
        text-align: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .quotation-div-2 {
        background-color: white;
        height: 10vh;
    }
    .quotation-title {
        font-weight: bold;
        color: white;
    }
    .quotation-subtitle {
        font-weight: bold;
        color: var(--basc-text);
    }
}

@media screen and (max-width: 414px) {
    .our-card {
        border-radius: 15px;
        height: 275px;
    }
}

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