/* Estilos para los botones flotantes */

.float-whatsapp{
    position: fixed;
	width: 60px;
	height: 60px;
	bottom: 30px;
	right: 30px;
	border-radius: 50px;
	text-align: center;
    font-size: 30px;
    z-index: 1;
}

.float-whatsapp img{
    max-width: 100%;
    margin: auto;
    border-radius:50px;
}

.float-whatsapp::before,
.float-whatsapp::after
{
    content: "";
    position: absolute;
	width: 60px;
	height: 60px;
	top: -0px;
	left: -0px;
	border-radius: 50px;
	text-align: center;
    font-size: 30px;
    z-index: -1;
    background: #63d99c;
    animation: onda 2s infinite;
    opacity: 0;
}

.float-whatsapp::before{
    animation-delay: 1s;
}

.float-whatsapp::after{
    animation-delay: 1.5s;
}

@keyframes onda{
    0%{
        transform: scale(1);
    }
    15%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: scale(2);
    }
}

/* Estilos para las ventanas emergentes */

.window-notice {
    background: rgba(33, 41, 52, .85);
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    display: flex;
    position: fixed;
    z-index: 1100;
}

.window-notice .content {
    background: #fff;
    box-shadow: 5px 5px 5px rgba(33, 41, 52, .75);
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 90%;
}

.window-notice .content .form{
    margin: auto;
    max-width: 90%;
    text-align: center;
}

.window-notice .content .form h1{
    text-align: center;
    font-family: Arial;
}

.window-notice .content .form h3{
    text-align: center;
    font-family: Arial;
}

.window-notice .content .form input{
    height: 35px;
    width: 80%;
    margin: 0.5em auto;
    background-color: rgb(255, 255, 255);
    font-family: Calibri;
    font-size: 1rem;
    border-style: solid;
    border-color: #949494;
    border-width: 0.3mm;
    text-align: center;
}

.window-notice .content .form .boton{
    height: 35px;
    width: 150px;
    margin: 1em auto;
    font-family: Arial;
    font-size: 10pt;
    color: #ffffff;
    background: rgb(30, 106, 128);
    cursor: pointer;
    border-style: none;
}

.window-notice .content .form .boton:hover{
    background: #262626;
    transition: all 0.5s;
}

.window-notice .content .form .link{
    margin: auto;
    text-decoration:none;
    font-family: Arial;
    font-size: 10pt;
    color: rgb(0, 0, 0);
}

.window-notice .content .Image{
    margin: auto;
    max-width: 100%;
    display: flex;
}

.window-notice .content .Image img{
    max-width: 100%;
    object-fit: cover;
}

.window-notice .content .pop{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin: 0.5em;
    background-color: rgb(0, 0, 0);
    z-index: 1000;
    display: flex;
    position: fixed;
    align-items: center;
    align-content: center;
}

.window-notice .content .pop:hover {
    background-color: rgb(34, 34, 34);
}

.window-notice .content .pop .link{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    text-align: center;
    text-decoration:none;
    font-family: Arial;
    font-size: 18pt;
    color: rgb(255, 255, 255);
}

.window-notice .content .pop .link p{
    margin: auto;
}

.about{
    max-width: 90%;
    margin: auto;
}

/* Estilos para la información acerca de la compañía */

.about .imagen{
    margin: 1em;
    display: flex;
}

.about .imagen img{
    width: 100%;
    margin: auto;
    display: flex;
}

.about .texto {
    margin: 1em;
}

.about .texto h2{
    font-family: Verdana;
    text-align: center;
    font-weight: normal;
    font-size: 16pt;
    color: indianred;
}

.about .texto h3{
    font-family: Calibri;
    text-align: justify;
    font-weight: normal;
    font-size: 14pt;
}

.perfiles{
    max-width: 90%;
    margin: auto;
}

.perfiles .perfil{
    grid-template-rows: 0.5fr 0.1fr;
}

.perfiles .perfil .imagen{
    margin: 1em;
}

.perfiles .perfil .imagen img{
    width: 50%;
    margin: auto;
    display: flex;
}

.perfiles .perfil h2{
    text-align: center;
    font-family: Arial;
    color: rgb(31, 33, 37);
    font-size: 20pt;
}

@media screen and (min-width: 1100px){
    .about{
        max-width: 70%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .perfiles{
        max-width: 60%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .perfiles .perfil{
        margin: 1em;
    }

    .perfiles .perfil .imagen img{
        width: 100%;
    }
}


/* Estilos para una información */

.info {
    background: linear-gradient(to bottom right, rgb(49, 189, 172), rgb(0, 176, 240));
    display: grid;
    grid-template-columns: 70% 30%;
}

.info .info-content{
    margin: auto;
    max-width: 90%;
}

.info .info-content h1{
    color: ghostwhite;
    font-family: Calibri;
    font-size: 20pt;
    text-align: left;
}

.info .info-image img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media screen and (min-width: 1000px){
    .info .info-content{
        max-width: 70%;
    }

    .info .info-content h1{
        font-size: 25pt;
    }

}

@media screen and (max-width: 700px){
    .info {
        grid-template-columns: 60% 40%;
    }

    .info .info-content h1{
        font-size: 15pt;
    }
}

.info-only {
    max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 60% 40%;
}

.info-only .info-content{
    margin: auto;
    max-width: 90%;
}

.info-only .info-content h1{
    color: rgb(0, 0, 0);
    font-family: Verdana;
    font-size: 25pt;
    text-align: left;
}

.info-only .info-content h2{
    color: rgb(0, 0, 0);
    font-family: Verdana;
    font-size: 18pt;
    text-align: left;
    font-weight: normal;
}

.info-only .info-image img{
    display: flex;
    max-width: 90%;
    margin: auto;
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 50px;
}

@media screen and (min-width: 1000px){
    .info-only {
        max-width: 70%;
    }

}

@media screen and (max-width: 800px){
    .info-only {
        grid-template-columns: 100%;
    }

    .info-only .info-image img{
        height: 300px;
    }
}

.info-only-inverted {
    max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 50% 50%;
}

.info-only-inverted .info-content{
    margin: auto;
    max-width: 90%;
    order: 2;
}

.info-only-inverted .info-content h1{
    color: rgb(0, 0, 0);
    font-family: Verdana;
    font-size: 25pt;
    text-align: left;
}

.info-only-inverted .info-content h2{
    color: rgb(0, 0, 0);
    font-family: Verdana;
    font-size: 15pt;
    text-align: left;
    font-weight: normal;
}

.info-only-inverted .info-image img{
    display: flex;
    max-width: 90%;
    margin: auto;
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 50px;
}

@media screen and (min-width: 1000px){
    .info-only-inverted {
        max-width: 70%;
    }

}

@media screen and (max-width: 800px){
    .info-only-inverted {
        grid-template-columns: 100%;
    }

    .info-only-inverted .info-content{
        order: 1;
    }

    .info-only-inverted .info-image {
        order: 2;
    }

    .info-only-inverted .info-image img{
        height: 300px;
    }
}

/* Estilos para los servicios */

.section-c{
    margin: auto;
    max-width: 90%;
}

.section-c .card-item{
    background: #fdfdfd;
    border: 1px none rgb(206, 206, 206);
    border-radius: 0px;
    box-shadow: 0px 0px 10px 1px rgb(209, 209, 209);
    margin: 1em;
    height: fit-content;
    transition: all 1s;
}

.section-c .card-item:hover{
    cursor: pointer;
    transform: scale(1);
    box-shadow: 0px 0px 15px 10px rgb(209, 209, 209);
}

.section-c .card-item:hover .imagen img{
    transform: scale(1.1);
}

.section-c .card-item .imagen{
    margin: auto;
    overflow: hidden;
}

.section-c .card-item .imagen img{
    max-width: 100%;
    margin: auto;
    display: flex;
    border-radius: 0px;
    transition: 400ms;
}

.section-c .card-item .texto{
    color: #262626;
    margin: 2em;
}

.section-c .card-item .texto h2{
    background:linear-gradient(to bottom right,  #004853, #00b9bd);
    background-clip: text; 
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;
    text-align: left;
    font: bold 20pt Garamond;
}

.section-c .card-item .texto h3{
    text-align: justify;
    color: rgb(106, 106, 106);
    font: normal 12pt Garamond;
}

.section-c .card-item .texto-list{
    color: #262626;
    margin: 1.5em 2em;
}

.section-c .card-item .texto-list h2{
    color: rgb(70, 70, 70);
    text-align: left;
    font: bold 20pt Garamond;
}

.section-c .card-item .texto-list h3{
    color: rgb(106, 106, 106);
    font: normal 14pt Garamond;
}

.section-c .card-item .texto-list h4{
    color: rgb(255, 255, 255);
    background-color: #0360a6ff;
    border-radius: 12px;
    width: fit-content;
    padding: 5px 10px;
    font: bold 12pt Garamond;
}

.section-c .card-item .texto-list ul{
    margin: 1em;
}

.section-c .card-item .texto-list ul li{
    font: normal 14pt Garamond;
    color: rgb(106, 106, 106);
    list-style: none;
    counter-increment: step-counter;
}

.section-c .card-item .texto-list ul li::before{
    content: counter(step-counter, decimal) ".";
    margin: .5em .5em .5em 0em;
}


@media screen and (min-width: 1400px){
    .section-c{
        display: grid;
        grid-template-columns: repeat(4,auto);
    }
}

@media screen and (max-width: 1400px){
    .section-c{
        display: grid;
        grid-template-columns: repeat(3,auto);
    }
}

@media screen and (max-width: 1000px){
    .section-c{
        display: grid;
        grid-template-columns: repeat(2,auto);
    }
}

@media screen and (max-width: 700px){
    .section-c{
        display: grid;
        grid-template-columns: 100%;
    }
}

/* Estilos para la barra de contacto */

.contactanos{
    max-width: 100%;
    margin: auto;
    border-radius: 0px;
    background: linear-gradient(to right, #6c5b7b, #355c7d);
}

.contactanos .content{
    background: #1e1e1e;
    max-width: 100%;
    margin: 10em auto;
}

.contactanos .content .text{
    margin: 5em 2em;
}

.contactanos .content h1{
    color: rgb(255, 255, 255);
    font-family: Calibri;
    font-size: 35pt;
    font-weight: bold;
    text-align: center;
}

.contactanos .content h2{
    color: rgb(255, 255, 255);
    font-family: Calibri;
    font-size: 30pt;
    font-weight: normal;
    text-align: center;
}

@media screen and (min-width: 1200px){
    .contactanos .content{
        max-width: 60%;
    }
}

/* Estilos para botones */
.boton-pb{
    height: 50px;
    width: fit-content;
    margin: 1em auto;
    font-family: Arial;
    font-size: 14pt;
    display: flex;
    align-items: center;
    color: #ffffff;
    background: rgb(255, 2, 171);
    cursor: pointer;
    border-style: none;
    border-radius: 25px;
    padding: 0px 25px;
    box-sizing: border-box;
}

.boton-pb:hover{
    background: rgb(189, 0, 126);
}

.boton-b{
    align-items: center;
    background: #0094e0ff;
    border-radius: 20px;
    border-style: none;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font: bold 12pt Garamond;
    height: 40px;
    margin: auto;
    padding: 0px 15px;
    width: fit-content;
}

.boton-b:hover{
    background: #1969a6;
}

.boton-p{
    height: 50px;
    width: 150px;
    margin: 1em auto;
    font-family: Arial;
    font-size: 14pt;
    font-weight: bold;
    color: #ffffff;
    background: rgb(254, 49, 169);
    cursor: pointer;
    border-style: none;
    border-radius: 25px;
    padding: 10px;
    box-sizing: border-box;
}

.boton-p:hover{
    background: #000000;
}

/* Estilos para formularios */
.contact-message{
    max-width: 90%;
    margin: 1em auto;
}

.contact-message .data{
    max-width: 90%;
    margin: auto;
}

.contact-message .data h1{
    font-family: Calibri;
    color: hsl(217, 100%, 50%);
    font-size: 30pt;
    text-align: left;
}

.contact-message .data h2{
    font-family: Calibri;
    color: #000000;
    font-size: 25pt;
}

.contact-message .data h3{
    font-family: Calibri;
    color: #000000;
    font-size: 15pt;
    font-weight: normal;
}

.contact-message .Respuesta{
    margin: auto;
    max-width: 40%;
    text-align: center;
    font-family: Calibri;
    font-size: 14pt;
}

@media screen and (min-width: 1100px){
    .contact-message{
        display: grid;
        grid-column: 1 / 2;
        grid-template-columns: 60% 40%;
        max-width: 80%;
    }
}

@media screen and (max-width: 1100px){
    .contact-message{
        display: grid;
        grid-column: 1 / 2;
        grid-template-columns: 50% 50%;
        max-width: 80%;
    }
}

@media screen and (max-width: 900px){
    .contact-message{
        display: grid;
        grid-template-columns: 100%;
        max-width: 80%;
    }
}



/* Estilos para formularios */
.form-overline{
    margin: auto;
}

.form-overline h1{
    font: 35px Arial;
    text-align: left;
}

.form-overline h2{
    text-align: left;
    font-family: Arial;
    font-size: 25px;
}

.form-inline{
    border: #e2e2e2 solid 1px;
    border-radius: 15px;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 0px #adb1bb;
    max-width: 90%;
    margin: auto;
    padding: 25px;
}

.form-inline h1{
    font: bold 40px Garamond;
    text-align: center;
}

.form-inline h2{
    font: 30px Garamond;
    text-align: left;
}

.data-form{
    max-width: 100%;
    margin: auto;
}

.data-form .title-input{
    margin: 0em;
}

.data-form .title-input h3{
    color: rgb(0, 0, 0);
    font: bold 14pt Garamond;
    margin: 1em auto 0.5em 0em;
    text-align: left;
}

.data-form input{
    background-color: rgb(245, 245, 245);
    border: solid #cecece 0.3mm;
    box-sizing: border-box;
    border-radius: 5px;
    font: normal 12pt Garamond;
    height: 35px;
    padding-left: 10px;
    width: 100%;
    margin: 0em;
}

.data-form select{
    height: 35px;
    width: 100%;
    margin: 0em;
    background-color: rgb(245, 245, 245);
    font: normal 12pt Garamond;
    border: solid #cecece 0.3mm;
    border-radius: 5px;
    padding-left: 10px;
    box-sizing: border-box;
}

.data-form textarea{
    width: 100%;
    margin: 0em;
    background-color: rgb(245, 245, 245);
    font: normal 12pt Garamond;
    border: solid #cecece 0.3mm;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}

.answer{
    margin: auto;
    width: 90%;
    font: bold 14pt Garamond;
    text-align: center;
}


/* Estilos para formularios del sistema */
.information-user{
    margin: 0em 2em;
}

.information-user h1{
    margin: 0.2em auto;
    font-family: Arial;
    background: linear-gradient(to bottom right, rgb(49, 189, 172), rgb(0, 176, 240));
    background-clip: text; 
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;
    font-size: 22pt;
    text-align: center;
    font-weight: bold;
}

.information-user h2{
    margin: 0.5em auto;
    font-family: Arial;
    color: rgb(117, 116, 116);
    font-size: 12pt;
    font-weight: normal;
    text-align: center;
}

.information-user .results{
    max-width: 90%;
    margin: auto;
    text-align: center;
}

.information-user .results a{
    max-width: 90%;
    margin: auto;
    color: rgb(21, 164, 193);
    text-decoration: underline;
    text-align: center;
    font: normal 12pt Arial;
}

.information-user .data{
    margin: 0em;
}

.data .title-input{
    margin: 0em;
}

.data .title-input h3{
    font-family: Arial;
    background: linear-gradient(to bottom right, rgb(49, 189, 172), rgb(0, 176, 240));
    background-clip: text; 
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;
    font-size: 12pt;
    margin: 1em auto 0.5em 0em;
    text-align: left;
    font-weight: bold;
}

.data input{
    height: 35px;
    width: 100%;
    margin: 0em;
    background-color: rgb(245, 245, 245);
    font-family: Arial;
    font-size: 1rem;
    border-style: solid;
    border-color: #cecece;
    border-width: 0.3mm;
    padding-left: 10px;
    box-sizing: border-box;
    border-radius: 5px;
}

.data select{
    height: 35px;
    width: 100%;
    margin: 0em;
    background-color: rgb(245, 245, 245);
    font-family: Arial;
    font-size: 1rem;
    border-style: solid;
    border-color: #cecece;
    border-width: 0.3mm;
    padding-left: 10px;
    box-sizing: border-box;
}


.boton-gb{
    height: 40px;
    width: 120px;
    margin: 1em auto;
    font-family: Arial;
    font-size: 10pt;
    color: #ffffff;
    background: linear-gradient(to bottom right, rgb(49, 189, 172), rgb(0, 176, 240));
    box-shadow: 5px 5px 20px 0px #a3d4fe;
    cursor: pointer;
    border-style: none;
    border-radius: 15px;
}

.boton-gb:hover{
    background: rgb(41, 41, 41);
    transition: all 2s;
}

#Personal{
    max-width: 90%; 
    margin: auto;
}

#Username-section{
    max-width: 90%; 
    margin: auto;
}

#Password-section{
    position: absolute;
    transform: translate(200px,0);
    max-width: 90%; 
    margin: auto;
    opacity: 0;
    transition: all 0.5s linear;
}

#User{
    position: absolute;
    transform: translate(200px,0);
    max-width: 90%; 
    margin: auto;
    opacity: 0;
    transition: all 0.5s linear;
}

#Validation{
    position: absolute;
    transform: translate(200px,0);
    max-width: 90%; 
    margin: auto;
    opacity: 0;
    transition: all 0.5s linear;
}

/* Estilos para mapas */
.mapa{
    max-width: 90%;
    height: 500px;
    margin: 4em auto;
    display: flex;
}

/* Estilos para titulos */

.title {
    display: flex;
}

.title h1{
    margin: auto;
    text-align: center;
    text-transform: uppercase;
    font-family: Arial;
    font-weight: bold;
    background: linear-gradient(90deg, #203864ff 0%, #0360a6ff 50%, #0094e0ff 100%);
    background-clip: text; 
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;
    font-size: 25pt;
}

@media screen and (min-width: 1100px){
    .title h1{
        font-size: 40pt;
    }
}