@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 2.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(228, 66%, 53%);
    --first-color-alt: hsl(228, 66%, 47%);
    --first-color-light: hsl(228, 62%, 59%);
    --first-color-lighten: hsl(228, 100%, 97%);
    --second-color: hsl(25, 83%, 53%);
    --title-color: hsl(228, 57%, 28%);
    --text-color: hsl(228, 15%, 50%);
    --text-color-light: hsl(228, 12%, 75%);
    --border-color: hsl(228, 99%, 98%);
    --body-color: #fff;
    --container-color: #fff;
    --scholastico-color1: #3AAF00;
    --scholastico-color2: #38A900;
    --text-color-dark: #000000;
    --text-color-white: #fff;

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 800;
    /*========== Opacity background ==========*/
    --opacity--bkg: rgba(255, 255, 255, 0.95);
    /*========== Smartphone menu text color ==========*/
    --clr: #222327;

    /*==========ECO VIEW & PARALLAX & SMOOTH SCROLL ==========*/
    --index: calc(1vw + 1vh);
    --color-header: #f4efec;
    --color-text: #cdc6c3;
    --gallery-gap: calc(var(--index) * 7.5);
}

* {
    /* height:100vh; */
    margin: 0;
    /* display:flex;
    justify-content: center;
    align-items: center; */
    /* flex-direction: column; */
    padding: 0;
    box-sizing: border-box;
}

body,
input,
textarea {
    font-family: "Poppins", sans-serif;
}

body {
    position: relative;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* background-color: var(--body-color); */
    background-image: url(../img/bkg_lineas.png);
    background-size: contain;
    /* background-size: auto auto; */
    color: var(--text-color);
    transition: .3s;
    /* For animation dark mode */
}

body::before {
    z-index: -3;
    /* Para que no interfiera la pseudoclase con el body */
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: var(--opacity--bkg);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.hide-scroll {
    overflow: hidden;
}

.container {
    max-width: 1024px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

@media screen and (max-width: 375px) {
    .container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

/*Laptops con 1040px*/
@media screen and (min-width: 1040px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}

/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    /*background-color: transparent; este background es como estaba antes*/
    background-color: #fff;
    z-index: var(--z-fixed);
    transition: .4s;
    /* For animation dark mode */
    /* box-shadow: 0 1px 1px var(--text-color-light); */
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);

    /*efecto para diferenciar header del contenido con una sombra*/
}

.hiding {
    /*transition-property: background-color;*/
    /*transition-delay: 3s;*/
    opacity: 0;
    animation: fadeOut 1.5s linear;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.showing {
    animation: showIn 1s;
}

@keyframes showIn {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.10;
    }

    25% {
        opacity: 0.20;
    }

    35% {
        opacity: 0.30;
    }

    50% {
        opacity: 0.50;
    }

    60% {
        opacity: 0.60;
    }

    75% {
        opacity: 0.80;
    }

    100% {
        opacity: 1;
    }
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    width: 24%;
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    transition: .3s;
}

.nav__logo i {
    font-size: 1rem;
}

.nav__logo:hover {
    color: var(--first-color);
}

/*Diseño responsivo de el NavBar header aplica en smartphones y Tableta*/
@media screen and (max-width: 1023px) {

    /*Hiding original header nav menu*/
    #nav_menu_part1 {
        display: none;
    }

    #nav_menu_part2 {
        display: none;
    }

    /*Responsive Header Nav*/
    .header {
        top: 50px;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav__logo {
        position: absolute;
        margin-top: 2px;
        left: 50%;
        transform: translate(-50%);
        column-gap: none;
    }

    /* NEW RESPONSIVE MENU BAR BOTTOM FOR SMARTPHONE */
    .cont-navigation {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 1rem;
        margin: 0 auto;
        width: 90%;
        z-index: 3;
    }

    .navigation {
        /* width: 400px; */
        /* background: #fff; */
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 0.5rem 0.9rem rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.62);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        height: 70px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 1.25rem;
        transition: .4s;
        /* z-index: 3; */
    }

    .navigation ul {
        display: flex;
        width: 320px;
    }

    .navigation ul li {
        position: relative;
        list-style: none;
        width: 80px;
        height: 80px;
        z-index: 1;
    }

    .navigation ul li a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
        font-weight: 500;
    }

    .navigation ul li a .iconMobileMenu {
        position: relative;
        display: block;
        line-height: 75px;
        font-size: 1.5em;
        text-align: center;
        transition: 0.5s;
        color: var(--text-color);
    }

    .navigation ul li.active a .iconMobileMenu {
        transform: translateY(-32px);
    }

    .navigation ul li.active i {
        padding: 1rem 1rem;
        background-color: #7AD300;
        border-radius: 50%;
        color: var(--text-color-dark);
    }

    .navigation ul li a .txtMobileMenu {
        position: absolute;
        color: var(--clr);
        font-weight: 400;
        font-size: 0.70em;
        letter-spacing: 0.05em;
        transition: 0.5s;
        opacity: 1;
        transform: translateY(20px);
    }

    .navigation ul li.active a .txtMobileMenu {
        opacity: 1;
        transform: translateY(10px);
    }



}

/* Change background header */

.scroll-header {
    box-shadow: 0 1px 5px var(--text-color-light);
}

.scroll-header .nav__logo {
    color: var(--first-color);
}

.scroll-header .change-theme {
    color: var(--title-color);
}

.active-link {
    background-color: #1abc9c;
    color: var(--text-color-white);
}

/* For medium devices */
@media screen and (min-width: 576px) {
    .nav__logo {
        width: 16%;
    }
}

@media screen and (min-width: 767px) {
    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__logo {
        width: 14%;
    }
}

@media screen and (min-width: 1023px) {
    .scroll-header .nav__link {
        /*Color que toma los links del Nav en el header al hacerse scroll así como boton del cambio de tema */
        color: var(--text-color-dark);
    }

    /* .scroll-header .nav__link span {
        font-size: 0.85rem;
    } */

    .scroll-header .nav__link:hover {
        border-bottom: 2px solid #7AD300;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__logo {
        width: 10%;
    }

    /*Escondemos el nav responsive menu y botón de tema, contacto y ventas*/

    .navigation {
        display: none;
    }

    .nav__list {
        display: flex;
        column-gap: 2.4rem;
        /*Antes en 4rem*/
    }

    .nav__link {
        color: var(--text-color-dark);
    }

    .nav__link:hover {
        border-bottom: 2px solid var(--text-color-dark);
    }

    .nav__link i {
        display: none;
    }

    .nav__link span {
        font-size: 0.9rem;
    }

    .active-link {
        border-bottom: 2px solid #7AD300;
        background-color: transparent;
    }
}

/*=============== MODAL NUESTRA HISTORIA STYLES ===============*/
.modal-view {
    position: fixed;
    /*  display: flex;
    justify-content: center;
    align-items: center;  */
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    /*flex-direction: column;*/
    /*background-color: #000;*/
    z-index: -5;
    /*display: none;*/
    opacity: 0;
    overflow-y: scroll;
}

.timeline {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 700px;
    position: relative;
}


.timeline-content i {
    font-size: 3rem;
    cursor: pointer;
    color: var(--text-color-light);
}

.timeline_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content-title {
    font-weight: 700;
    font-size: 3rem;
    margin: -10px 0 0 0;
    transition: 0.4s;
    padding: 0 10px;
    box-sizing: border-box;
    color: var(--text-color-light);
    display: none;
}

.timeline-content-desc {
    /* position: absolute; SE AGREGO ESTA PROPIEDAD NO ESTABA */
    text-align: justify;
    /* SE AGREGO ESTA PROPIEDAD NO ESTABA */
    margin: 0;
    font-size: 1rem;
    /* box-sizing: border-box; */
    color: var(--text-color-white);
    /* color: rgba(255, 255, 255, 1); */
    font-weight: normal;
    line-height: 25px;
}

.timeline::before {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    content: '';
    background: var(--text-color-light);
    border-radius: 60px;
}

/* #txtVision {
    width: 180%;
} */

#txtValores {
    right: 30%;
    transform: translateX(-30%);
    width: 180%;
}

@media only screen and (max-width: 1025px) {

    /* Para smartphones y tablet (Antes 767px u 820px) */
    /* #txtVision {
        width: inherit;
    } */

    #txtValores {
        right: none;
        transform: none;
        width: inherit;
    }

    .timeline::before {
        left: 40px;
    }
}

.timeline-item {
    padding: 40px 0;
    opacity: 0.3;
    filter: blur(2px);
    transition: 0.5s;
    box-sizing: border-box;
    width: calc(50% - 40px);
    display: flex;
    position: relative;
    transform: translateY(-80px);
}

.timeline-item:before {
    content: attr(data-text);
    /* letter-spacing: 3px; */
    width: 100%;
    position: absolute;
    /* background-color: var(--text-color-dark); */
    color: var(--text-color-light);
    /* color: rgba(255, 255, 255, 0.5); */
    font-size: 5rem;
    font-weight: 700;
    /* border-left: 2px solid rgba(255, 255, 255, 0.5); */
    top: 70%;
    margin-top: -5px;
    padding-left: 15px;
    opacity: 0;
    /* right: -100%; */
    right: calc(-100% - 56px);
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
}

.timeline-item:nth-child(even)::before {
    right: auto;
    text-align: right;
    left: calc(-100% - 56px);
    padding-left: 0;
    border-left: none;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    padding-right: 15px;
}

.timeline-item--active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.timeline-item--active::before {
    top: 50%;
    transition: 0.3s all 0.2s;
    opacity: 1;
}

/* .timeline-item--active .timeline-content-title {
    margin: -50px 0 20px 0;
} */

@media only screen and (max-width: 767px) {
    .timeline-content-title {
        display: block;
    }

    .timeline-item {
        align-self: baseline !important;
        width: 100%;
        padding: 0 30px 150px 80px;
    }

    .timeline-item::before {
        left: 10px !important;
        padding: 0 !important;
        top: 50px;
        text-align: center !important;
        width: 60px;
        border: none !important;
        display: none;
    }

    .timeline-item:last-child {
        padding-bottom: 40px;
    }
}

.timeline-img {
    max-width: 100%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}

.timeline-container {
    width: 100%;
    position: relative;
    padding: 80px 0;
    transition: 0.3s ease 0s;
    background-attachment: fixed;
    background-size: cover;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.4); */
    background: rgba(0, 0, 0, 0.85);
    /* background: rgba(99, 99, 99, 0.8); */
}

.timeline-header {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.modal-close {
    position: fixed;
    top: 15px;
    right: 30px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.modal-close i {
    font-size: 22px;
    color: #fff;
}

.modal-close:hover {
    transform: scale(1.3);
}

/* ESTILO MODAL ISO & MODAL CARD ECOS */
.modal-iso {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -5;
    /*background-color: #000;*/
    /* z-index: 20000; */
    /* display: none; */
    opacity: 0;
}

.modal-iso-block {
    justify-content: center;
    align-items: center;
    padding: 1rem;
    height: 100vh;
    overflow: hidden;
}

.modal-data,
.modal-dataIso {
    box-shadow: 0px 20px 30px rgba(28, 40, 44, 0.2);
    position: relative;
    /* max-width: 400px; */
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
}

#modalCrossEco,
#modalCrossIso {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#modalCrossEco i,
#modalCrossIso i {
    font-size: 22px;
}

#modalCrossEco:hover,
#modalCrossIso:hover {
    transform: scale(1.3);
}

.modal-iso-text {
    padding: 1.8rem 1.8rem;
    /* height: 400px; */
    /* overflow: scroll; */
}

.modal-iso-title {
    text-align: center;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 100;
    font-size: 1rem;
    animation: slideTitleModal 0.5s ease-in;
    -webkit-animation: slideTitleModal 0.5s ease-in;
}

.modal-iso-title {
    margin-top: 1rem;
    font-weight: 700;
}

.modal-iso-info {
    font-size: 0.9rem;
    text-align: center;
}

.rowModal {
    display: flex;
}

/* BTN ESR */
.contEsr {
    text-align: center;
    margin-top: 1rem;
}

.btnEsr {
    padding: 5px 10px;
    border-radius: 30px;
    border: 2px solid var(--text-color-light);
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-color-light);
    max-width: 50px;
    font-size: 0.8rem;
}

.btnEsr:hover {
    background-color: var(--text-color-light);
    color: var(--text-color-white);
}

/* ESTILO MODAL POLÍTICAS */
.modal-polytics {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -5;
    /*background-color: #000;*/
    /* z-index: 20000; */
    /* display: none; */
    opacity: 0;
}

.modal-polytics-block {
    justify-content: center;
    align-items: center;
    padding: 1rem;
    height: 100vh;
    /* overflow: hidden; */
}

.modal-polytics-block .modal-data {
    box-shadow: 0px 20px 30px rgba(28, 40, 44, 0.2);
    position: relative;
    max-width: 400px;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
}

#modalCross {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#modalCross i {
    font-size: 22px;
}

#modalCross:hover {
    transform: scale(1.3);
}

.modal-cookies {
    padding: 1.8rem 2.6rem;
    /* height: 400px; */
    /* overflow: scroll; */
}

.modal-title {
    text-align: center;
    position: relative;
    /* margin-top: 1rem; */
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 300;
    font-size: 1rem;
    /* animation: slideTitleModal 0.5s ease-in;
    -webkit-animation: slideTitleModal 0.5s ease-in; */
}

.modal-content {
    text-align: justify;
    position: relative;
    font-size: 0.8rem;
    /* animation: slidePModal 0.5s ease-in;
    -webkit-animation: slidePModal 0.5s ease-in; */
}

/* .modal-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.modal-close i {
    font-size: 22px;
    color: #fff;
}

.modal-close:hover {
    transform: scale(1.3);
} */


/*=============== DIV NOTIFICATION ALERT ===============*/
.notification {
    background-color: #008904;
    width: 100%;
    padding: 2px 5px;
    /* font-size: 1rem; */
    z-index: 200;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.4s;
    /* opacity: 1; */
}

.contactSch {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contactSch a {
    color: var(--text-color-white);
    font-size: 0.8rem;
}

.contactSch i {
    color: #008904;
    background-color: var(--text-color-white);
    border-radius: 50%;
    font-size: 0.5rem;
    padding: 5px;
}

.mailSch {
    display: inline-block;
    margin-left: none;
}

.contactExtras {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__social {
    display: flex;
    column-gap: 1rem;
}

.header__social-link {
    font-size: 1.25rem;
    color: var(--text-color-white);
    transition: .3s;
}

.header__social-link:hover.header__social-link i {
    background-color: var(--text-color-white);
    color: #008904;
    border-radius: 50%;
    padding: 2px;
}

.modal_show {
    animation: showModal 0.5s;
}

@keyframes showModal {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.10;
    }

    25% {
        opacity: 0.20;
    }

    35% {
        opacity: 0.30;
    }

    50% {
        opacity: 0.50;
    }

    60% {
        opacity: 0.60;
    }

    75% {
        opacity: 0.80;
    }

    100% {
        opacity: 1;
    }
}

.modal_hide {
    opacity: 0;
    animation: fadeModal 0.5s linear;
    /*fadeOut animation that is used in the video begining*/
}

@keyframes fadeModal {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0.75;
    }

    50% {
        opacity: 0.50;
    }

    75% {
        opacity: 0.25;
    }

    100% {
        opacity: 0;
    }
}

/* NOSOTROS STYLE BEGINING */
.nosotros-bg {
    height: 66vh;
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../img/nosotros_nv.jpg); */
    background: url(../img/nosotros_nv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 40% 78%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nosotros-bg .titleNosotros {
    font-size: 3.5rem;
    font-weight: 100;
    position: absolute;
    top: 80%;
    left: 28%;
    transform: translate(-80%, -28%);
}

.container-nosotros {
    padding: 1rem 8rem;
    text-align: justify;
}

.txtInfoNosotros {
    color: var(--text-color-dark);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.btnNosotros {
    padding: 5px 30px;
    border-radius: 30px;
    background-color: #7AD300;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-color-white);
}

.btnNosotros:hover {
    border: 2px solid #7AD300;
    background-color: var(--text-color-white);
    color: var(--text-color-dark);
}

.line {
    margin-top: 2rem;
    width: 100%;
    height: 2px;
    background-color: var(--text-color-light);
}


@media screen and (max-width: 768px) {
    .nosotros-bg .titleNosotros {
        position: inherit;
        transform: none;
        left: unset;
        top: 40%;
    }

    .container-nosotros {
        padding: 1rem 2rem;
        text-align: justify;
    }

    .txtInfoNosotros {
        font-size: inherit
    }
}

/* MISION & VISION STYLE */
.mision,
.vision {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 2rem 8rem;
}

.img_mision img {
    width: 80%;
    border-radius: 100px;
}

.img_vision img {
    width: 80%;
    border-radius: 100px;
}

.mision .info,
.vision .info {
    margin: 0 auto;
}

.info h2 {
    font-weight: 100;
    font-size: 3.5rem;
    color: var(--text-color-dark);
}

.info p {
    text-align: justify;
    color: var(--text-color-dark);
    font-size: 1.2rem;
}

@media screen and (max-width: 820px) {

    .mision,
    .vision {
        flex-wrap: wrap;
        padding: 2rem;
    }

    .img_mision img,
    .img_vision img {
        width: 100%;
        border-radius: 50px;
    }

    .mision .info,
    .vision .info {
        text-align: center;
    }

    .info p {
        font-size: inherit;
    }
}

/* VALORES STYLE */
.valores-cont {
    padding: 0 8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.titleValores {
    margin: 2rem 0;
    /* margin-top: 2rem; */
    text-align: center;
    font-size: 3.5rem;
    font-weight: 100;
    color: var(--text-color-dark);
}

.valor {
    padding: 1rem;
}

.valor i {
    font-size: 1.5rem;
    color: #7AD300;
}

.valor h2 {
    color: var(--text-color-dark);
}

.valor p {
    text-align: justify;
    color: var(--text-color-dark);
}

@media screen and (max-width: 820px) {
    .valores-cont {
        flex-direction: column;
        padding: 0 1rem;
    }
}

/* MAP STYLE  */
.world-map {
    width: 100%;
    max-width: 100vw;
    /* margin: 0 auto; */
    /* padding: 1rem; */
    position: relative;
}

.world-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50px; */
    /* scale: 6 400%; */
    /* transform: scale(5.0); */
}

.mainTitleMaps {
    text-align: center;
    color: var(--text-color-dark);
    font-weight: 100;
    font-size: 3.5rem;
    margin: 2rem 0;
    /* padding: 0 8rem; */
}

.pin {
    background: #C8F000;
    border-radius: 50%;
    position: absolute;
    width: 0.7em;
    height: 0.7em;
}

.pin::before {
    content: '';
    background: #C8F000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 1.3s ease-in-out infinite;
}

@keyframes pulse {
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}

.pin span {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 3rem;
    padding: 0.3em 0.6em;
    font-size: 0.75rem;
}

.nuevoleon {
    top: 41%;
    left: 57.3%;
}

.gdlj {
    top: 58.5%;
    left: 42.5%;
}

.guanajuato {
    top: 53.8%;
    left: 52.6%;
}

.queretaro {
    top: 56%;
    left: 57.3%;
}

.edomex {
    top: 59.2%;
    left: 57.3%;
}

.cdmx {
    top: 61.6%;
    left: 59.3%;
}

.morelos {
    top: 63.7%;
    left: 59.5%;
}

.puebla {
    top: 65.6%;
    left: 62%;
}

.guerrero {
    top: 68%;
    left: 56%;
}



@media screen and (max-width: 600px) {

    /* Para tamaño de pines */
    .world-map {
        font-size: 6px;
    }

    .pin span {
        /* display: inline-block;
        white-space: nowrap;
        position: absolute; */
        left: 0.5rem;
        /* top: 50%;
        transform: translateY(-50%); */
        /* background: #fff;
        border-radius: 3rem; */
        padding: 0.3em 0.6em;
        font-size: 0.2rem;
    }
}

/* ESTILO FOOTER */
.footer {
    margin-top: -0.4rem;
    padding: 2.5rem 0 0rem;
    border-radius: 100px 100px 0 0;
    background: linear-gradient(90deg, #C8F000, #7AD300, #008904, #23A6D5, #23D5AB, #149279, #1abc9c);
    background-size: 400% 400%;
    position: relative;
    animation: change 30s ease-in-out infinite;
}

.footer__container {
    row-gap: 2.5rem;
}

.grid {
    display: grid;
}

.footer__logo {
    width: 100px;
    display: inline-flex;
    column-gap: .25rem;
    margin-bottom: .75rem;
}

.footer__logo__mer {
    width: 25%;
    display: inline-flex;
    column-gap: .25rem;
    margin-top: .75rem;
}

.footer__logo__esr,
.footer__logo__iso {
    width: 90px;
    display: block;
    column-gap: .25rem;
    margin-top: .75rem;
    cursor: pointer;
}

.footer__description,
.footer__link {
    color: var(--text-color-white);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    transition: 0.5s;
}

.footer__content,
.footer__links {
    display: grid;
}

.footer__content {
    grid-template-columns: repeat(2, max-content);
    gap: 2.5rem 4rem;
}

.footer__title {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
    color: var(--text-color-white);
}

.footer__links {
    row-gap: .5rem;
}

.footer__link {
    color: var(--text-color-white);
    transition: .15s;
}

.footer__link:hover {
    font-size: 1rem;
    border-bottom: 2px solid #C8F000;
    color: #C8F000;
}

.footer__social {
    display: flex;
    column-gap: 1rem;
}

.footer__social-link {
    font-size: 1.25rem;
    color: var(--text-color-white);
    transition: .3s;
}

.footer__social-link:hover {
    font-size: 2rem;
    color: #C8F000;
}

.footer__info,
.footer__privacy {
    display: flex;
}

.footer__info {
    padding-bottom: 7rem;
    margin-top: 5.5rem;
    flex-direction: column;
    /* text-align: center; */
    row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a {
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color-white);
}

.footer__privacy {
    justify-content: center;
    column-gap: 1.25rem;
}

#btnCookies,
#btnPrivacy {
    cursor: pointer;
}

@keyframes change {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

@media screen and (max-width: 320px) {
    .footer__content {
        gap: 2.5rem;
    }
}

@media screen and (min-width: 576px) {
    .footer__content {
        grid-template-columns: repeat(3, max-content);
    }
}

@media screen and (min-width: 767px) {
    .footer__container {
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
    }
}

@media screen and (min-width: 1023px) {
    .notification {
        /* border: 2px solid #000; */
        /* border-radius: 10px; */
        background-color: #026305;
        /* color: var(--text-color-white); */
        width: 100%;
        justify-content: space-between;
        flex-wrap: nowrap;
        padding: 3px 40px;

        /* padding: 0px 40px; */
    }

    .contactSch {
        width: none;
        display: unset;
        align-items: unset;
        justify-content: unset;
    }

    .contactExtras {
        width: unset;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .contactSch a {
        font-size: 0.8rem;
    }

    .contactSch i {
        font-size: 1rem;
    }

    .mailSch {
        margin-left: 3rem;
    }

    .footer__content {
        grid-template-columns: repeat(4, max-content);
    }

    .footer__title {
        margin-bottom: 1.5rem;
    }

    .footer__links {
        row-gap: 1rem;
    }

    .footer__info {
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 2rem;
    }

    .footer__logo__mer {
        width: 50%;
    }

    .footer__logo__esr,
    .footer__logo__iso {
        /* display: block; */
        width: 100px;
    }
}

/*=============== SCROLL REVEAL ===============*/
/*CLASES NECESARIAS PARA FUNCION SCROLL REVEAL*/
.reveal {
    /* overflow: hidden; */
    opacity: 0;
    transform: scale(0.9);
    transition: 1.2s ease-in-out all;
}

.izquierda {
    transform: translateX(-18px);
}

.derecha {
    transform: translateX(18px);
}

.visible {
    opacity: 1;
    transform: scale(1) translateX(0);
}