* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

:root{
    --borderBtn: 25px;
    --colorPrimario: rgb(18, 75, 96);
    --colorSecundario: #0296b8;
    --colorTerciario: #097795;
    --colorComplementario: #1adaf6; /*#a2f6ff*/
    --colorBlanco: rgb(255,255,255);
    --colorGris: rgb(85,85,85);
}

.dancing-script{
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.eb-garamond{
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.open-sans{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* background */
.contBack{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerFilter{
    width: 100%;
    height: 100%;
    background-image: url(../img/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filterBack{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgb(0, 0, 0, .8), rgb(70, 70, 70, .7));
}

.back{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.textBack{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.iconBack{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.iconBack img{
    width: 80px;
    height: 70px;
    margin-bottom: 5px;
    object-fit: contain;
}

.hrs{
    display: flex;
    justify-content: center;
    align-items: center;
}

.hrs hr{
    width: 90px;
    height: 2px;
    border: none;
    background-color: var(--colorBlanco);
}

.hrs p{
    font-size: 26px;
    font-weight: 200;
    color: var(--colorBlanco);
    margin: 0 5px;
}

.infoBack{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.infoBack h2{
    font-size: 60px;
    color: var(--colorBlanco);
    margin-bottom: 5px;
}

.infoBack p{
    width: 75%;
    font-size: 20px;
    font-weight: 500;
    color: var(--colorBlanco);
    margin-bottom: 20px;
}

.btnBack{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn1{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

.btn1 a{
    text-decoration: none;
}

.btn1 a button{
    width: 200px;
    height: 45px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: var(--borderBtn);
    background-color: var(--colorPrimario);
    color: var(--colorBlanco);
    transition: .6s;
}

.btn1 a button:hover{
    transform: translateY(-10px);
}

.btn1 a button i{
    font-size: 15px;
    margin-left: 5px;
    color: var(--colorBlanco);
    transition: .6s;
}

.btn1 a button:hover i{
    transform: rotate(360deg);
}

.btn2{
    width: 70px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 5px;
    background-color: var(--colorPrimario);
}

.btn2 i{
    color: var(--colorBlanco);
    transform: rotate(270deg);
    transition: .6s;
    font-size: 20px;
}

.btn2:hover i{
    transform: rotate(360deg);
}

.contItemBack{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px 10px;
    background-color: var(--colorPrimario);
}

.itemBack{
    width: 100%;
    height: auto;
    margin: 0 10px;
}

.imgItemBack{
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgItemBack img{
    width: 70px;
    height: 60px;
    object-fit: contain;
}

.textItemBack{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: none;
}

.contItemBack:hover .textItemBack {
    display: flex;
}

.textItemBack h2{
    font-size: 25px;
    color: var(--colorBlanco);
    margin-bottom: 5px;
}

.textItemBack p{
    font-size: 15px;
    font-weight: 400;
    color: var(--colorBlanco);
}

@media only screen and (max-width: 1550px){
    .iconBack img{
        width: 65px;
        height: 55px;
    }
    .hrs hr{
        width: 80px;
    }
    .hrs p{
        font-size: 22px;
    }
    .infoBack{
        width: 75%;
    }
    .infoBack h2{
        font-size: 50px;
    }
    .infoBack p{
        width: 75%;
        font-size: 18px;
    }
    .imgItemBack img{
        width: 60px;
        height: 60px;
    }
    .textItemBack h2{
        font-size: 20px;
    }
    .textItemBack p{
        font-size: 14px;
    }
}

@media only screen and (max-width: 1550px){
    .infoBack h2{
        font-size: 40px;
    }
}

@media only screen and (max-width: 950px){
    .iconBack img{
        width: 60px;
        height: 50px;
    }
    .hrs hr{
        width: 70px;
    }
    .hrs p{
        font-size: 20px;
    }
    .infoBack h2{
        font-size: 35px;
    }
    
    .infoBack p{
        font-size: 16px;
    }
    .btn1 a button{
        width: 180px;
        height: 40px;
        font-size: 15px;
    }
    .btn1 a button i{
        font-size: 14px;
    }
    .btn2{
        width: 60px;
        height: 45px;
    }
    .btn2 i{
        font-size: 17px;
    }
    .imgItemBack img{
        width: 55px;
        height: 55px;
    }
    .textItemBack h2{
        font-size: 17px;
    }
    .textItemBack p{
        font-size: 13px;
    }
}

@media only screen and (max-width: 850px){
    .iconBack img{
        width: 55px;
        height: 45px;
    }
    .hrs hr{
        width: 60px;
    }
    .hrs p{
        font-size: 18px;
    }
    .infoBack{
        width: 80%;
    }
    .infoBack h2{
        font-size: 30px;
    }
    .infoBack p{
        font-size: 14px;
    }
    .imgItemBack img{
        width: 50px;
        height: 50px;
    }
    .textItemBack h2{
        font-size: 15px;
    }
    .textItemBack p{
        font-size: 13px;
    }
}

@media only screen and (max-width: 750px){
    .iconBack img{
        width: 50px;
        height: 40px;
    }
    .hrs hr{
        width: 55px;
    }
    .hrs p{
        font-size: 17px;
    }
    .infoBack{
        width: 85%;
    }
    .btn2{
        width: 50px;
        height: 40px;
    }
    .btn2 i{
        font-size: 16px;
    }
    .infoBack h2{
        font-size: 28px;
    }
    .infoBack p{
        font-size: 13px;
    }
    .imgItemBack img{
        width: 50px;
        height: 50px;
    }
    .textItemBack h2{
        font-size: 14px;
    }
    .textItemBack p{
        font-size: 13px;
    }
}

@media only screen and (max-width: 500px){
    .iconBack img{
        width: 45px;
        height: 40px;
    }
    .hrs hr{
        width: 55px;
    }
    .hrs p{
        font-size: 16px;
    }
    .infoBack{
        width: 90%;
    }
    .btn2{
        width: 45px;
        height: 35px;
    }
    .btn2 i{
        font-size: 14px;
    }
    .btn1 a button{
        width: 170px;
        font-size: 14.5px;
    }
    .btn1 a button i{
        font-size: 13.5px;
    }
    .infoBack h2{
        font-size: 25px;
    }
    .infoBack p{
        width: 80%;
        font-size: 13px;
    }
    .imgItemBack img{
        width: 45px;
        height: 45px;
    }
    .textItemBack h2{
        font-size: 12px;
        font-weight: 550;
    }
    .textItemBack p{
        font-size: 12px;
    }
}

@media only screen and (max-width: 414px){
    .btn1 a button{
        width: 160px;
        font-size: 14px;
    }
    .btn1 a button i{
        font-size: 13px;
    }
    .infoBack p{
        width: 95%;
        font-size: 13px;
    }
    .imgItemBack img{
        width: 45px;
        height: 45px;
    }
    .textItemBack h2{
        font-size: 10px;
        font-weight: 550;
    }
    .textItemBack p{
        font-size: 9px;
    }
}


/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Nosotros */
.contWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.we{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.letrasWe {
    width: 100%;
    height: auto;
}

.letrasWe img {
    width: 600px;
    height: 100px;
    object-fit: contain;
    opacity: .2;
}

.we2{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    margin-top: -30px;
}

.contTextWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textWe{
    width: 50%;
    height: auto;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.textWe p{
    font-size: 30px;
    font-weight: 600;
    color: var(--colorGris);
    font-family: "Dancing Script", cursive;
}

.textWe h2{
    font-size: 50px;
    color: var(--colorPrimario);
}

.textWe2{
    width: 50%;
    height: auto;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.textWe2 h2{
    font-size: 30px;
    color: var(--colorPrimario);
    margin-bottom: 5px;
}

.textWe2 span{
    font-size: 15px;
    font-weight: 550;
    color: var(--colorGris);
}

.infoWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.imgWeInfo{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.imgWeInfo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textInfoWe{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10px;
}

.textInfoWe p{
    width: 80%;
    font-size: 30px;
    font-weight: 300;
    color: var(--colorGris);
    margin-bottom: 10px;
    font-family: "EB Garamond", serif;
}

.textInfoWe h2{
    font-size: 25px;
    color: var(--colorPrimario);
    margin-bottom: 5px;
    font-weight: 600;
}

.textInfoWe span{
    font-size: 16px;
    font-weight: 550;
    color: var(--colorGris);
}

.textInfoWe a{
    text-decoration: none;
}

.textInfoWe a button{
    width: 155px;
    height: 40px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    border-radius: var(--borderBtn);
    background-color: var(--colorPrimario);
    color: var(--colorBlanco);
    cursor: pointer;
    transition: .6s;
}

.textInfoWe a button:hover{
    transform: translateY(-10px);
}

.textInfoWe a button i{
    font-size: 13px;
    color: var(--colorBlanco);
    margin-left: 3px;
    transition: .6s;
}

.textInfoWe a button:hover i{
    transform: rotate(360deg);
}

@media only screen and (max-width: 1550px){
    .letrasWe img {
        width: 580px;
    }
    .we2{
        width: 90%; 
        margin-top: -50px;
    }
    .textWe p{
        font-size: 29px;
    }
    .textWe h2{
        font-size: 45px;
    }
    .textWe2 h2{
        font-size: 25px;
    }
    .textWe2 span{
        font-weight: 500;
    }
    .textInfoWe p{
        width: 85%;
        font-size: 25px;
    }
    .textInfoWe h2{
        font-size: 22px;
    }
    .textInfoWe span{
        font-weight: 500;
    }
    .textInfoWe a button{
        font-size: 14px;
    }
    .textInfoWe a button i{
        font-size: 12px;
    }
}

@media only screen and (max-width: 1280px){
    .letrasWe img {
        width: 550px;
    }
    .we2{
        width: 90%; 
        margin-top: -60px;
    }
    .textWe p{
        font-size: 28px;
    }
    .textWe h2{
        font-size: 42px;
    }
    .textWe2 h2{
        font-size: 23px;
    }
    .textInfoWe p{
        font-size: 21px;
    }
    .textInfoWe h2{
        font-size: 20px;
    }
}

@media only screen and (max-width: 1150px){
    .letrasWe img {
        width: 500px;
        height: 90px;
    }
    .we2{
        margin-top: -40px;
    }
    .textWe h2{
        font-size: 35px;
    }
    .textWe2 h2{
        font-size: 18px;
    }
    .textInfoWe p{
        font-size: 18px;
    }
    .textWe2 span{
        font-size: 12px;
    }
    .textInfoWe h2{
        font-size: 18px;
    }
    .textInfoWe span{
        font-size: 15px;
    }
    .textInfoWe a button{
        font-size: 14px;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 950px){
    .contTextWe{
        flex-direction: column;
        margin: 15px 0;
    }
    .we2{
        width: 95%;
    }
    .textWe{
        width: 100%;
    }
    .textWe2{
        width: 100%;
        margin: 10px 0;
    }
    .textWe2 h2{
        font-size: 19px;
    }
    .textWe2 span{
        font-size: 13px;
    }
}

@media only screen and (max-width: 850px){
    .textInfoWe p{
        width: 95%;
        font-size: 16px;
    }
    .textInfoWe h2{
        font-size: 15px;
    }
    .textInfoWe span{
        font-size: 14px;
    }
    .textInfoWe a button{
        width: 130px;
        height: 35px;
        font-size: 12px;
        margin-top: 10px;
    }
    .textInfoWe a button i{
        font-size: 11px;
    }
    .textInfoWe a button:hover{
        transform: translate(10px);
    }
}

@media only screen and (max-width: 768px){
    .we2{
        margin-top: -35px;
    }
    .letrasWe img {
        width: 450px;
        height: 85px;
    }
    .textWe h2{
        font-size: 32px;
    }
    .textWe2 h2{
        font-size: 18px;
    }
    .infoWe{
        flex-direction: column;
    }
    .imgWeInfo{
        width: 80%;
        margin: 10px 0;
    }
    .textWe2 span{
        font-size: 14px;
        font-weight: 450;
    }
    .textInfoWe{
        width: 80%;
        margin: 10px 0;
        align-items: center;
    }
    .textInfoWe h2{
        font-size: 18px;
    }
    .textInfoWe p{
        font-size: 19px;
    }
}

@media only screen and (max-width: 600px){
    .infoWe{
        margin-top: 0px;
    }
    .textWe h2{
        font-size: 29px;
    }
    .textWe2 h2{
        font-size: 18px;
    }
    .textWe2 span{
        font-size: 14px;
        font-weight: 450;
    }
    .textInfoWe h2{
        font-size: 18px;
    }
    .textInfoWe p{
        font-size: 19px;
    }
}

@media only screen and (max-width: 500px){
    .letrasWe img {
        width: 350px;
        height: 80px;
    }
    .textWe p{
        font-size: 26px;
    }
    .textWe h2{
        font-size: 25px;
    }
    .textWe2 h2{
        font-size: 15px;
    }
    .textWe2 span{
        font-size: 13px;
        font-weight: 400;
    }
    .textInfoWe h2{
        font-size: 18px;
    }
    .textInfoWe p{
        font-size: 18px;
    }
}

@media only screen and (max-width: 414px){
    .letrasWe img {
        width: 300px;
        height: 75px;
    }
    .imgWeInfo{
        width: 95%;
    }
    .textInfoWe{
        width: 90%;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Servicios */
.contService{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.service{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titleService{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titleService hr{
    width: 300px;
    height: 3px;
    border: none;
    margin: 10px 0;
    border-radius: 50%;
    background-color: var(--colorPrimario);
}

.titleService h2{
    margin: 10px;
    color: var(--colorPrimario);
    font-size: 40px;
}

.hrServ{
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hrServ hr{
    width: 150px;
    height: 3px;
    border-radius: 50%;
    border: none;
    background-color: var(--colorTerciario);
}

.hrServ img{
    width: 38px;
    height: 28px;
    margin: 10px;
    object-fit: contain;
}

.contTjetServ{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.tarjetServ{
    width: 40%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tarjetServ::before{
    position: absolute;
    content: '';
    width: 35%;
    height: 190%;
    background-color: var(--colorPrimario);
    transform: rotate(60deg);
    transition: .6s;
}

.tarjetServ:hover::before{
    width: 110%;
}

.tarjetServ::after{
    position: absolute;
    content: '';
    inset: 8px;
    background: rgb(255, 255, 255);
    z-index: 1;
}

.imgServ{
    width: 100%;
    height: 96.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 8px;
}

.imgServ img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    margin: 8px;
}

.infoServ{
    width: 98%;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 0;
    padding: 15px;
    background: linear-gradient(360deg, rgb(0, 0, 0, .5), rgb(70, 70, 70, .2));
    transition: .6s;
    z-index: 2;
    margin-bottom: 8px;
}

.tarjetServ:hover .infoServ{
    height: 60%;
    z-index: 2;
}

.infoServ h2{
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--colorBlanco);
    z-index: 2;
}

.infoServ p{
    width: 80%;
    font-size: 16px;
    font-weight: 550;
    display: none;
    color: var(--colorBlanco);
    transition: .6s;
    z-index: 2;
}

.tarjetServ:hover .infoServ p{
    display: block;
    z-index: 2;
}

.infoServ a{
    text-decoration: none;
    z-index: 2;
}

.infoServ a button{
    width: 140px;
    height: 40px;
    font-size: 15px;
    margin-top: 20px;
    font-weight: 550;
    cursor: pointer;
    border: none;
    display: none;
    border-radius: var(--borderBtn);
    background-color: var(--colorPrimario);
    color: var(--colorBlanco);
    transition: .6s;
    z-index: 2;
    overflow: hidden;
}

.infoServ a button:hover{
    transform: translate(10px);
}

.tarjetServ:hover .infoServ a button{
    display: block; 
    z-index: 2;
}

.infoServ a button i{
    font-size: 14px;
    color: var(--colorBlanco);
    margin-left: 3px;
    transition: .6s;
}

.infoServ a button:hover i{
    transform: translate(30px);
}

@media only screen and (max-width: 1550px){
    .tarjetServ{
        width: 45%;
    }
    .titleService hr{
        width: 250px;
    }
    .titleService h2{
        font-size: 35px;
    }
    .hrServ hr{
        width: 120px;
    }
    .hrServ img{
        width: 35px;
        height: 25px;
    }
    .infoServ{
        width: 97.5%;
        margin-bottom: 8px;
    }
    .imgServ{
        width: 97.5%;
        height: 100%;
    }
    .infoServ h2{
        font-size: 25px;
    }
    .infoServ p{
        width: 85%;
        font-size: 15px;
        font-weight: 450;
    }
    .infoServ a button{
        width: 130px;
        height: 40px;
        font-size: 14px;
        margin-top: 15px;
        font-weight: 500;
    }
    .infoServ a button i{
        font-size: 13px;
    }
}

@media only screen and (max-width: 1280px){
    .infoServ{
        width: 97%;
    }
    .imgServ{
        width: 97%;
        height: 100%;
    }
    .infoServ h2{
        font-size: 22px;
    }
    .infoServ p{
        font-size: 14px;
    }
}

@media only screen and (max-width: 1050px){
    .infoServ{
        width: 96%;
        margin-bottom: 5px;
    }
    .imgServ{
        width: 96%;
        margin-bottom: 5px;
    }
    .infoServ h2{
        font-size: 20px;
    }
    .infoServ p{
        width: 90%;
        font-size: 13px;
        font-weight: 400;
    }
    .infoServ a button{
        height: 35px;
        font-size: 13px;
    }
    .infoServ a button i{
        font-size: 12px;
    }
}

@media only screen and (max-width: 850px){
    .infoServ{
        width: 96.5%;
    }
    .imgServ{
        width: 96.5%;
    }
    .infoServ h2{
        font-size: 18px;
    }
    .infoServ p{
        font-size: 12px;
    }
}


@media only screen and (max-width: 768px){
    .infoServ{
        width: 95.5%;
    }
    .imgServ{
        width: 95.5%;
    }
    .infoServ h2{
        font-size: 16px;
    }
    .infoServ p{
        font-size: 11px;
    }
    .infoServ a button{
        width: 125px;
        height: 30px;
        font-size: 12px;
    }
    .infoServ a button i{
        font-size: 11px;
    }
    .titleService hr{
        width: 200px;
    }
    .titleService h2{
        font-size: 32px;
    }
    .hrServ hr{
        width: 125px;
    }
    .hrServ img{
        width: 32px;
        height: 22px;
    }
}

@media only screen and (max-width: 700px){
    .tarjetServ{
        width: 45%;
    }
    .infoServ{
        width: 95%;
        margin-bottom: 7px;
    }
    .imgServ{
        width: 95%;
        margin: 7px;
    }
    .imgServ img{
        margin: 7px;
    }
}

@media only screen and (max-width: 650px){
    .tarjetServ{
        width: 95%;
    }
    .infoServ{
        width: 97%;
    }
    .imgServ{
        width: 98.5%;
    }
    .imgServ img{
        width: 98.5%;
    }
    .infoServ h2{
        font-size: 18px;
    }
    .infoServ p{
        font-size: 13px;
    }
    .titleService hr{
        width: 180px;
    }
    .titleService h2{
        font-size: 26px;
    }
    .hrServ hr{
        width: 110px;
    }
    .hrServ img{
        width: 30px;
        height: 20px;
    }
}

@media only screen and (max-width: 500px){
    .imgServ{
        width: 98%;
    }
    .imgServ img{
        width: 98%;
    }
    .infoServ{
        width: 96%;
    }
    .titleService hr{
        width: 190px;
    }
    .titleService h2{
        font-size: 23px;
    }
    .hrServ hr{
        width: 80px;
    }
    .hrServ img{
        width: 25px;
        height: 15px;
    }
}

@media only screen and (max-width: 414px){
    .titleService hr{
        width: 120px;
    }
    .titleService h2{
        font-size: 23px;
        text-align: center;
    }
    .hrServ hr{
        width: 80px;
    }
    .hrServ img{
        width: 25px;
        height: 15px;
    }
}


/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Section */
.contSection{
    width: 100%;
    height: auto;
    background-image: url(../img/backsection.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 30px;
}

.section{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.itemSection{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textSection{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 10px;
}

.textSection h3{
    font-size: 75px;
    color: var(--colorPrimario);
}

.textSection h2{
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--colorBlanco);
}

.textSection p{
    width: 65%;
    font-size: 16px;
    font-weight: 350;
    color: var(--colorBlanco);
    margin-bottom: 10px;
    margin-top: 20px;
}

.lineaPresencial{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineaPresencial p{
    font-size: 16px;
    font-weight: 550;
    margin-top: 10px;
    color: var(--colorBlanco);
}

.lineaPresencial hr{
    width: 50px;
    height: 1px;
    border: none;
    margin: 0 5px;
    transform: rotate(90deg);
    background-color: var(--colorBlanco);
}

.imgSection{
    width: 50%;
    height: auto;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgSection img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textSection a{
    text-decoration: none;
}

.textSection a button{
    width: 175px;
    height: 40px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: 30px;
    background-color: var(--colorBlanco);
    color: var(--colorPrimario);
    border-radius: var(--borderBtn);
    transition: .6s;
    cursor: pointer;
}

.textSection a button:hover{
    transform: translateY(-10px);
}

.textSection a button i{
    font-size: 14px;
    margin-left: 3px;
    color: var(--colorPrimario);
    transition: .6s;
}

.textSection a button:hover i{
    transform: rotate(360deg);
}

.microServSection{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.titleServSect{
    width: 100%;
    height: auto;
    text-align: center;
}

.titleServSect h2{
    font-size: 45px;
    margin-bottom: 20px;
    color: var(--colorBlanco);
}

.servSection{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.servSection ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.servSection ul li{
    width: 30%;
    height: auto;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.servSection ul li img{
    width: 90px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.servSection ul li h2{
    font-size: 25px;
    color: var(--colorBlanco);
    margin-bottom: 5px;
}

.servSection ul li p{
    width: 80%;
    font-size: 15px;
    font-weight: 350;
    color: var(--colorBlanco);
}

.servSection a{
    text-decoration: none;
}

.servSection a button{
    width: 250px;
    height: 45px;
    border: none;
    background-color: var(--colorBlanco);
    color: var(--colorPrimario);
    border-radius: var(--borderBtn);
    font-size: 17px;
    font-weight: 550;
    margin: 20px 0;
    cursor: pointer;
    transition: .6s;
}

.servSection a button:hover{
    transform: translateY(-10px);
}

.servSection a button i{
    font-size: 16px;
    margin-left: 5px;
    color: var(--colorPrimario);
    transition: .6s;
}

.servSection a button:hover i{
    transform: rotate(360deg);
}

@media only screen and (max-width: 1550px){
    .textSection p{
        width: 85%;
    }
    .textSection h2{
        margin-bottom: 15px;
        color: var(--colorPrimario);
    }
}

@media only screen and (max-width: 1280px){
    .textSection p{
        width: 95%;
    }
    .textSection h3{
        font-size: 60px;
    }
    .textSection h2{
        font-size: 25px;
        margin-bottom: 45px;
    }
    .textSection p{
        font-size: 15px;
    }
    .textSection a button{
        width: 165px;
        height: 35px;
        font-size: 14px;
        margin-top: 5px;
    }
    .titleServSect h2{
        font-size: 40px;
    }
    .servSection ul li h2{
        font-size: 22px;
    }
    .servSection ul li p{
        font-size: 14px;
    }
}

@media only screen and (max-width: 1050px){
    .titleServSect h2{
        font-size: 32px;
    }
    .servSection ul li h2{
        font-size: 20px;
    }
    .servSection ul li p{
        font-size: 12px;
    }
    .servSection a button{
        width: 235px;
    }
    .microServSection{
        margin-top: 20px;
    }
}

@media only screen and (max-width: 950px){
    .contSection{
        background-color: var(--colorPrimario);
    }
    .section{
        flex-direction: column;
    }
    .textSection h3{
        font-size: 60px;
        color: var(--colorBlanco);
    }
    .textSection h2{
        font-size: 21px;
        margin-bottom: 10px;
        color: var(--colorBlanco);
    }
    .lineaPresencial hr{
        background-color: var(--colorBlanco);
    }
    .textSection p{
        width: 70%;
        font-size: 16px;
        margin-top: 0px;
        color: var(--colorBlanco);
    }
    .textSection a button{
        width: 165px;
        font-size: 14px;
        background-color: var(--colorBlanco);
        color: var(--colorPrimario);
    }
    .textSection a button i{
        font-size: 13px;
        color: var(--colorPrimario);
    }
    .itemSection{
        flex-direction: column;
    }
    .textSection{
        width: 95%;
        margin: 10px 0;
    }
    .imgSection{
        width: 100%;
        margin: 10px 0;
    }
}

@media only screen and (max-width: 768px){
    .servSection a button{
        width: 225px;
    }
    .textSection h3{
        font-size: 45px;
    }
    .textSection h2{
        font-size: 19px;
    }
    .textSection p{
        width: 90%;
    }
    .titleServSect h2{
        font-size: 30px;
    }
    .servSection ul li h2{
        font-size: 18px;
    }
    .servSection ul li p{
        width: 100%;
        font-size: 12px;
    }
    .servSection ul li img{
        width: 75px;
        height: 65px;
    }
    
}

@media only screen and (max-width: 600px){
    .servSection a button{
        width: 180px;
        height: 40px;
    }
    .titleServSect h2{
        font-size: 28px;
    }
    .textSection h3{
        font-size: 43px;
    }
    .textSection h2{
        font-size: 17px;
    }
    .servSection ul li h2{
        font-size: 15px;
        font-weight: 650;
    }
    .servSection ul li p{
        font-size: 11px;
        font-weight: 350;
    }
    .servSection ul li img{
        width: 70px;
        height: 60px;
    }
}

@media only screen and (max-width: 414px){
    .servSection a button{
        width: 180px;
        height: 40px;
    }
    .textSection h3{
        font-size: 40px;
    }
    .titleServSect h2{
        font-size: 26px;
    }
    .servSection ul li h2{
        font-size: 14px;
        font-weight: 600;
    }
    .servSection ul li p{
        font-size: 10.5px;
        font-weight: 300;
    }
    .servSection ul li img{
        width: 65px;
        height: 55px;
    }
    .textSection h2{
        font-size: 19px;
    }
    .textSection p{
        width: 100%;
        font-size: 12px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Visitanos xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.contVisit{
    width: 100%;
    height: auto;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    position: relative;
}

.visit{
    width: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
}

.visit iframe{
    width: 100%;
    height: 500px;
}

.contactVisit{
    width: 400px;
    height: 350px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #097795;
}

.titleVisit{
    width: 100%;
    height: auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.titleVisit h2{
    font-size: 30px;
    color: var(--colorBlanco);
    margin-bottom: 10px;
}

.formVisit{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

.form-group{
    width: 100%;
    height: auto;
    margin: 10px 0;
}

.form-group input,
.form-group select{
    width: 100%;
    height: 40px;
    border: none;
    padding: 10px;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
    color: var(--colorGris);
}

.form-group button{
    width: 100px;
    height: 30px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--colorBlanco);
    color: var(--colorPrimario);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--borderBtn);
    overflow: hidden;
    transition: .6s;
}

.form-group button:hover{
    transform: translateY(-10px);
}

.form-group button i{
    font-size: 12px;
    margin-left: 5px;
    color: var(--colorPrimario);
    transition: .6s;
    transform: rotate(60deg);
}

.form-group button:hover i{
    transform: translate(50px);
}

@media only screen and (max-width: 1280px){
    .contactVisit{
        width: 350px;
        height: 300px;
    }
    .titleVisit h2{
        font-size: 25px;
    }
    .form-group input,
    .form-group select{
        height: 35px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 950px){
    .contactVisit{
        width: 300px;
        height: 250px;
    }
    .titleVisit h2{
        font-size: 22px;
    }
    .form-group input,
    .form-group select{
        height: 27px;
        font-size: 11px;
    }
    .form-group button{
        width: 90px;
        height: 27px;
        font-size: 12px;
        font-weight: 500;
    }
    .form-group button i{
        font-size: 11px;
    }
}

@media only screen and (max-width: 650px){
    .contactVisit{
        width: 250px;
        height: 230px;
    }
    .titleVisit h2{
        font-size: 18px;
    }
    .form-group input,
    .form-group select{
        height: 25px;
    }
    .form-group button{
        width: 85px;
        height: 25px;
        font-weight: 450;
    }
}