@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;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

* {
    margin: 0;
    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;
}

body::before {
    z-index: -3;
    /* Para que no interfiera la pseudoclase con el body */
    content: "";
    position: absolute;
    top: -150px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: var(--opacity--bkg);
}


ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.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;
    }
}

/* input hide  */
.hidee {
    opacity: 0;
    animation: fading 0.7s linear;
}

@keyframes fading {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*=============== 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: #1abc9c;
        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 {
    background-color: var(--body-color);
    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 #1abc9c;
    }

    .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 #1abc9c;
        background-color: transparent;
    }
}

/* ESTILO MODAL ISO */
.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;
}

/* ESTILOS MODAL SHOW / HIDE ANIMATION */
.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;
    }
}

/* Contact info */
.container-contact {
    margin-top: 8rem;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: space-around;
}

.content-city p {
    font-size: 3.5rem;
    font-weight: 200;
}

.dot {
    margin-right: 5px;
    font-size: 0.7rem;
    color: #1abc9c;
}

.content-address .title,
.content-mail .title,
.content-phone .title {
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 2spx;
    font-size: 0.8rem;
    font-weight: 500;
    color: #222;
}

.content-address .address {
    margin-top: 10px;
    color: hsl(228, 15%, 50%);
    font-size: 1rem;
    font-weight: 350;
}

.content-mail a,
.content-phone a {
    margin-top: 10px;
    text-decoration: none;
    color: hsl(228, 15%, 50%);
    font-size: 1rem;
    font-weight: 350;
}

@media (max-width:600px) {
    .container-contact {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .content-city,
    .content-address,
    .content-mail,
    .content-phone {
        text-align: center;
    }


}

/* GALERIA INICIAL */
.row {
    display: flex;
    flex-wrap: nowrap;
    padding: 3rem;
}

.column {
    /* flex: 50%; */
    padding: 1rem;
}

.column img {
    width: 100%;
    border-radius: 50px;
    margin-top: 1rem;
}

#contactImg2 img {
    height: 90%;
}

@media (max-width:600px) {
    .row {
        flex-wrap: wrap;
        padding: 10px;
    }

    .column {
        flex: 100%;
        padding: 2px;
    }
}

/* EMPLEOS & COTIZAR TABS  */
section {
    width: 65%;
    margin: 6.5rem auto 0;
}

.titleTabs {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 1rem;
}

.titleTabs.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #149279;
    font-weight: 400;
}


.tabsCotizar {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}


.tabsCotizar li {
    font-size: 1.5rem;
    font-weight: 400;
    color: #263238;
    cursor: pointer;
    position: relative;
}


.tabsCotizar li::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -3%;
    width: 0%;
    height: 5px;
    background: #263238;
    border-radius: 30px;
    transition: width 0.8s ease;
}


.tabsCotizar li.active::after {
    width: 104%;
}

/* .container {
    position: relative;
} */

.content {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.content.active {
    display: block;
    animation: fade 1s ease;
}

.content img {
    width: 100%;
    height: 20rem;
}

.content p {
    font-size: 1.5rem;
    text-align: center;
    width: 70%;
    margin: 1rem auto 0rem;
    color: #222;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 800px) {
    section {
        width: 90%; /* Antes estaba en 100% */
        /* padding: 1rem; */
    }

    .tabsCotizar li {
        font-size: 1rem;
    }
}


/* COTIZAR FORM */
.titleCotizar {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 200;
}

.container-form {
    /* position: relative; */
    width: 100%;
    /* min-height: 100vh; */
    padding: 2rem;
    /* background-color: #fafafa; */
    background-color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;

}

.container-form.active {
    display: block;
    animation: fade 1s ease;
}

.form {
    margin-top: 0.2rem;
    width: 100%;
    max-width: 820px;
    /* height: 500px; */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    /* z-index: 1000; */
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-info {
    background-color: #fff;
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border: 22px solid #1abc9c;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    /* opacity: 0.3; */
}

.contact-info .title {
    color: #1abc9c;
}

.text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.icon {
    font-size: 1.2rem;
    margin-right: 0.7rem;
    color: #fff;
}

.social-media {
    padding: 1rem 0 0 0;
}

.social-media p {
    color: #333;
}

.social-icons {
    display: flex;
    margin-top: 0.2rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: linear-gradient(45deg, #1abc9c, #149279);
    color: #fff;
    text-align: center;
    line-height: 52px;
    /* margin-right: 0.5rem; */
    transition: 0.3s;
    font-size: 2rem;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.contact-form {
    background-color: #1abc9c;
    position: relative;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #1abc9c;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #149279);
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 0px;
}

form {
    padding: 2.3rem 2.2rem;
    /* z-index: 10; */
    overflow: hidden;
    position: relative;
}

.title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.input-container {
    position: relative;
    margin: 1rem 0;
}

/* FOR RESPONSIVE CAPTCHA */
@media screen and (max-width: 570px) {
    .g-recaptcha:first-child {
        width: 100px;
    }

    iframe {
        position: relative;
        width: 75%;
    }
}

/* label {
    display: none;
} */

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.input-container .select option {
    color: #000;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 600;
    transition: 0.5s;
}

.inputServicio {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #1abc9c;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3;
    line-height: 1;
    margin-top: 1rem;
    /* margin: 0; */
}

.inputServicio:hover {
    background-color: transparent;
    color: #fff;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
    /* background-color: red; */
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #1abc9c;
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label,
.input-container.date label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after,
.input-container.date span:before,
.input-container.date span:after {
    width: 50%;
    opacity: 1;
}

.pInvalid {
    font-size: 0.8rem;
    color: #000;
}

/* .input-container.date label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
} */

/* .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #1cd4af, #159b80);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}

.big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
} */

.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

/* Responsive */
@media (max-width: 850px) {
    .form {
        grid-template-columns: 1fr;
    }

    .contact-info:before {
        display: none;
        /* bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95); */
    }

    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .text {
        margin: 1rem 0 1.5rem 0;
    }

    .social-media {
        padding: 0.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .container-form {
        padding: 1.5rem;
    }

    .contact-info:before {
        display: none;
    }

    .square,
    .big-circle {
        display: none;
    }

    form,
    .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .text,
    .social-media p {
        font-size: 0.8rem;
    }

    .title {
        font-size: 1.15rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        line-height: 38px;
        font-size: 1.4rem;
    }

    .icon {
        width: 23px;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }

    .inputServicio {
        padding: 0.45rem 1.2rem;
    }
}

/* EMPLEOS  */
.container-empleos {
    margin-top: 2rem;
    background: #fff;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.wrapper {
    width: 750px;
    max-width: 100%;
    /* background: linear-gradient(90deg, #fff, #212121);
    animation: change 10s ease-in-out infinite; */
    background-size: 400% 400%;
    /* box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); */
    margin: 2.5rem auto 0;
    padding: 0px 50px;
    border-radius: 50px;
    /* display: none; */
    position: relative;
    /* overflow: hidden; */
}


/* SLIDER STYLES FOR EMPLEOS OPERADORES */
.popular__container {
    padding: 2.5rem 0 0rem;
    /* width: 100%; */
}

.popular__card {
    width: 290px;
    padding: .5rem .5rem 1.5rem;
    border-radius: 1rem;
    margin: 0 auto;
    transition: .4s;
    background: transparent;
    /* Aqui empieza efecto de glasmorfismo*/
    /* box-shadow: 0 8px 12px 0 rgba(31, 38, 135, 0.37); */
    /* backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.popular__img {
    width: 200px;
    /* Ajusta el tamaño de imagen adecuado dentro del div contenedor   */
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.cont_operador_info {
    width: 80%;
    background-color: #149279;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-color-white);
    padding: 0.5rem 0.5rem;
}

@media screen and (max-width: 320px) {
    .popular__card {
        width: 230px;
        padding: .5rem .5rem .75rem;
    }
}

@media screen and (max-width: 576px) {
    .popular__container {
        padding: 2.5rem 0 5rem;
    }

    .popular__card {
        width: 200px;
        padding: .5rem .5rem .75rem;
    }

    .popular__img {
        width: 160px;
    }
}

@media screen and (min-width: 1023px) {
    .popular__card {
        width: 280px;
        padding: .75rem .75rem 2rem;
    }
}

/* .popular__card:hover {
    box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
  } */

/* Swiper class */
.swiper-wrapper {
    margin-bottom: 1.5rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

.bxs-chevron-left,
.bxs-chevron-right {
    pointer-events: none;
}

.swiper-button-prev,
.swiper-button-next {
    top: initial;
    bottom: 0;
    width: initial;
    height: initial;
    /* background-image: linear-gradient(147deg, #008904 20%, #7AD300 64%, #C8F000); */
    /* box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); */
    padding: 6px;
    border-radius: .5rem;
    font-size: 2rem;
    color: #149279;
    transition: .4s;
    display: block;
}

@media screen and (min-width: 768px) {
    .swiper-wrapper {
        margin-bottom: 0.5rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

/* .swiper-button-prev:hover,
.swiper-button-next:hover {
    font-size: 1.8rem;
} */

.swiper-button-prev {
    left: calc(50% - 3rem);
}

.swiper-button-next {
    right: calc(50% - 3rem);
}

/* Empieza estilos empleos Admin */
.wrapper .adminInfo {
    text-align: center;
}

.wrapper .adminInfo p {
    font-size: 1.5rem;
    color: #149279;
}

.adminLinks {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.adminLinks a {
    text-decoration: none;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: #149279;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--text-color-white);
    -webkit-tap-highlight-color: transparent;
    /* z-index: 3; */
}

/* ESTILO NUEVO REDES SOCIALES */
.line {
    height: 5px;
    background-color: var(--text-color-light);
    padding: 0rem 4rem;
}

.admin {
    margin-top: 3rem;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin_postular {
    width: 50%;
}

.admin_postular h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color-dark);
}

.admin_postular p {
    font-size: 1.5rem;
    /* color: var(); */
    text-align: justify;
}

.container_social {
    padding: 0rem 5rem;
    /* margin-right: 3rem; */
    /* text-align: left; */
}

.social_list {
    position: relative;
    transform: skewY(-15deg);
}

.social_list li {
    position: relative;
    list-style: none;
    width: 130px;
    background: #149279;
    padding: 15px;
    transition: 0.5s;
    z-index: calc(1 * var(--sn));
}

.social_list li:last-child::after {
    box-shadow: -120px 120px 20px rgba(0, 0, 0, 0.25);
}

.social_list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    background: #149279;
    filter: brightness(0.7);
    transform-origin: right;
    transform: skewY(45deg);
    transition: 0.5s;
}

.social_list li:hover::before {
    background: var(--clr);
    filter: brightness(0.7);
}

/* Google  */
.social_list li:last-child:hover::before {
    background: #4285F4;
}

.social_list li:hover {
    transform: translateX(-50px);
    background: var(--clr);
}

/* Google  */
.social_list li:last-child:hover {
    background: #FBBC05;
}

.social_list li::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #149279;
    filter: brightness(0.9);
    transform-origin: bottom;
    transform: skewX(45deg);
    transition: 0.5s;
}

.social_list li:hover::after {
    background: var(--clr);
    filter: brightness(0.9);
}


.social_list li a {
    text-decoration: none;
    color: #fff;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.5s;
}

.social_list li:hover a {
    color: #fff;
}

.social_list li span {
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    /* filter: brightness(0.7); */
    transform-origin: right;
    transform: skewY(45deg);
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25em;
}

.indeed,
.occmundial {
    width: 20px;
}

@media screen and (max-width: 1024px) {
    .container-empleos {
        background: transparent;
        box-shadow: none;
        border-radius: none;
    }

    .admin {
        padding: 1rem 2rem;
        margin-top: 0.5rem;
        flex-direction: column;
    }

    .admin_postular {
        width: 100%;
    }

    .admin_postular p {
        text-align: center;
    }

    .container_social {
        margin-top: 4rem;
        margin-left: 2rem;
        /* padding: 0rem 1rem; */

    }
}

/* ESTILO GENERAL DE BUZON */
.container-buzon {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* overflow: hidden; */
    /* padding: 1rem; */
}

.container-buzon p {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 200;
}

.container-buzon p.subtitle {
    margin-top: 2rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #149279;
    font-weight: 400;
}

.container-buzon a {
    color: hsl(228, 15%, 50%);
    text-align: center;
}

.container-frmBuzon {
    width: 500px;
    max-width: 100%;
    background: #fff;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    margin: 2.5rem auto 0;
    padding: 50px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.container-frmBuzon:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border: 22px solid #1abc9c;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    /* opacity: 0.3; */
}

.container-frmBuzon:after {
    content: "";
    position: absolute;
    width: 33px;
    height: 33px;
    border: 11px solid #1abc9c;
    border-radius: 50%;
    top: 10px;
    right: 20px;
    /* z-index: -3; */
    /* opacity: 0.3; */
}

.container-frmBuzon .data-buzon .cont-inputsBuzon {
    width: 350px;
    max-width: 100%;
    margin: 0 auto 20px;
}

/* For error valid in buzon form */
.cont-inputsBuzon p {
    font-size: 0.8rem;
    font-weight: 300;
}

.container-frmBuzon .data-buzon .cont-inputsBuzon label {
    display: block;
    margin-bottom: 8px;
}

.data-buzon input,
.data-buzon select,
.data-buzon input,
.data-buzon textarea {
    outline: none;
    border: 2px solid #000;
    border-radius: 25px;
    padding: 10px;
    display: block;
    width: 100%;
    font-size: 16px;
    transition: 0.5s ease;
}

.data-buzon input:focus,
.data-buzon textarea:focus {
    border-color: #149279;
}

.data-buzon input.buzon {
    width: 50%;
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #1abc9c;
    font-size: 0.95rem;
    color: #000;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3;
    line-height: 1;
    margin-top: 1rem;
}

.data-buzon input.buzon:hover {
    background-color: #1abc9c;
    color: #fff;
}

textarea.txtAreaBuzon {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

@media (max-width: 768px) {
    /*Esconde circulos de buzon*/
    /* .container-buzon {
        overflow: visible;
    }

    .container-frmBuzon:before {
        display: none;
    } */

    /* .container-frmBuzon {
        width: 330px;
    } */

    .data-buzon input.buzon {
        width: 82%;
    }
}


/* ESTILO DE FILE UPLOAD */
.container-upload {
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    padding: 30px;
    border-radius: 20px;
    /* box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); */
    /* border: 3px solid #1abc9c; */
    /* background: red; */
}

.container-upload header {
    color: #149279;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.browse {
    /* height: 150px; */
    display: flex;
    margin: 30px 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 30px;
    background: hsl(228, 12%, 95%);
    border: 2px solid #1abc9c;
    cursor: pointer;
}

.browse :where(i, p) {
    color: #149279;
}

.browse i {
    margin-top: 1rem;
    font-size: 3.5rem;
}

.browse p {
    text-align: center;
    font-size: 1rem;
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
}

.progress-area .rowUpload,
.uploaded-area .rowUpload {
    background: hsl(228, 12%, 95%);
    list-style: none;
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.progress-area .rowUpload i,
.uploaded-area .rowUpload i {
    font-size: 3rem;
    color: #149279;
}

.progress-area .details span,
.uploaded-area .details span {
    font-size: 0.8rem;
}

.progress-area .rowUpload .content-upload {
    width: 100%;
    margin-left: 15px;
}

.progress-area .details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
    border-radius: 30px;
}

.progress-area .progress-bar {
    height: 6px;
    width: 100%;
    background: #fff;
    margin-bottom: 4px;
}

.progress-bar .progress {
    height: 100%;
    width: 10%;
    background: #149279;
    border-radius: inherit;
}

.uploaded-area {
    max-height: 150px;
    overflow-y: scroll;
}

.uploaded-area::-webkit-scrollbar {
    width: 0px;
}



.uploaded-area .rowUpload .content-uploadReady {
    display: flex;
    align-items: center;
}

.uploaded-area .rowUpload .details {
    display: flex;
    margin-left: 15px;
    flex-direction: column;
}

.uploaded-area .details .size {
    font-size: 0.9rem;
    color: #149279;
}

.uploaded-area .bx-check {
    font-size: 16px;
}

@media screen and (max-width: 850px) {

    .progress-area .rowUpload i,
    .uploaded-area .rowUpload i {
        font-size: 1.6rem;
        color: #149279;
    }

    .uploaded-area .bx-check {
        display: none;
        font-size: 16px;
    }

    .progress-area .details {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* ESTILO FOOTER */
/* .section {
} */

.footer {
    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: 6rem;
    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: 1s ease-in-out all;
}

.izquierda {
    transform: translateX(-18px);
}

.derecha {
    transform: translateX(18px);
}

.visible {
    opacity: 1;
    transform: scale(1) translateX(0);
}