* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

:root{
    --borderBtn: 25px;
    --colorLogo:rgb(88, 163, 218);
    --colorOscuro: #12283f;
    --colorSecundary: #1c5588;
    --colorGray: rgb(85, 85, 85);
    --colorWhite: rgb(255, 255, 255);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.contBack{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.filterBack{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* background-color: rgb(0, 0, 0, .6); */
    background: linear-gradient(to right, rgb(0,0,0, .6) 50%, rgb(255,255,255, .1) 100%);
}

.back{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textBack{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
}

.textBack h1{
    width: 50%;
    font-size: 55px;
    margin-bottom: 5px;
    color: var(--colorWhite);
}

.textBack p{
    width: 50%;
    font-size: 19px;
    font-weight: 450;
    color: var(--colorWhite);
}

.textBack a{
    text-decoration: none;
    margin-top: 20px;
}

.textBack a button{
    width: 195px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid var(--colorWhite);
    background-color: transparent;
    color: var(--colorWhite);
    border-radius: var(--borderBtn);
}

.textBack a button i{
    font-size: 17px;
    margin-left: 5px;
    color: var(--colorWhite);
}

.contExperiencia{
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    align-items: center;
    position: absolute;
    bottom: 0;
    background-color: var(--colorLogo);
}

.experiencia{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spanExp{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spanExp span{
    font-size: 55px;
    font-weight: 550;
    color: var(--colorWhite);
}

.spanExp i{
    font-size: 45px;
    margin-left: 5px;
    margin-top: 5px;
    color: var(--colorWhite);
}

.descript{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    color: var(--colorWhite);
}

@media screen and (max-width: 1550px){
    .textBack h1{
        font-size: 50px;
    }
    .textBack p{
        font-size: 18px;
    }
    .spanExp span{
        font-size: 53px;
    }
    .spanExp i{
        font-size: 43px;
    }
}

@media screen and (max-width: 1280px){
    .textBack h1{
        font-size: 47px;
    }
    .textBack p{
        font-size: 17.5px;
    }
    .spanExp span{
        font-size: 53px;
    }
    .spanExp i{
        font-size: 43px;
    }
}

@media screen and (max-width: 1150px){
    .textBack h1{
        font-size: 45px;
    }
    .textBack p{
        font-size: 17px;
    }
    .spanExp span{
        font-size: 50px;
    }
    .spanExp i{
        font-size: 40px;
    }
}

@media screen and (max-width: 950px){
    .textBack h1{
        font-size: 37px;
    }
    .textBack p{
        font-size: 16px;
    }
    .spanExp span{
        font-size: 45px;
    }
    .spanExp i{
        font-size: 38px;
    }
}

@media screen and (max-width: 850px){
    .textBack h1{
        font-size: 35px;
    }
    .textBack p{
        font-size: 15px;
    }
    .spanExp span{
        font-size: 43px;
    }
    .spanExp i{
        font-size: 36px;
    }
    .descript{
        font-size: 18px;
    }
}

@media screen and (max-width: 768px){
    .textBack{
        align-items: center;
        text-align: center;
        padding-left: 0%;
    }
    .textBack h1{
        width: 90%;
        font-size: 32px;
    }
    .textBack p{
        width: 85%;
        font-size: 17.5px;
    }
    .spanExp span{
        font-size: 43px;
    }
    .spanExp i{
        font-size: 36px;
    }
    .descript{
        font-size: 18px;
    }
    .contExperiencia{
        padding: 0 3%;
    }
}

@media screen and (max-width: 700px){
    .textBack h1{
        width: 95%;
        font-size: 30px;
    }
    .textBack p{
        width: 85%;
        font-size: 17px;
    }
    .spanExp span{
        font-size: 43px;
    }
    .spanExp i{
        font-size: 36px;
    }
    .descript{
        font-size: 18px;
    }
    .contExperiencia{
        padding: 0 1%;
    }
}

@media screen and (max-width: 650px){
    .textBack h1{
        width: 95%;
        font-size: 30px;
    }
    .textBack p{
        width: 85%;
        font-size: 15.5px;
    }
    .spanExp span{
        font-size: 38px;
    }
    .spanExp i{
        font-size: 33px;
    }
    .descript{
        font-size: 16px;
    }
    .contExperiencia{
        padding: 0 0%;
    }
}

@media screen and (max-width: 600px){
    .textBack h1{
        width: 95%;
        font-size: 28px;
    }
    .textBack p{
        width: 85%;
        font-size: 15px;
    }
    .spanExp span{
        font-size: 37px;
    }
    .spanExp i{
        font-size: 32px;
    }
    .descript{
        font-size: 15px;
    }
    .contExperiencia{
        padding: 0 0%;
    }
    .textBack a button{
        width: 190px;
        height: 35px;
        font-size: 16px;
    }
    .textBack a button i{
        font-size: 15px;
    }
}

@media screen and (max-width: 550px){
    .textBack h1{
        width: 95%;
        font-size: 25px;
    }
    .textBack p{
        width: 90%;
        font-size: 14px;
    }
    .spanExp span{
        font-size: 35px;
    }
    .spanExp i{
        font-size: 30px;
    }
    .descript{
        font-size: 14px;
    }
    .textBack a button{
        width: 180px;
        height: 35px;
        font-size: 16px;
    }
    .textBack a button i{
        font-size: 15px;
    }
}

@media screen and (max-width: 500px){
    .textBack h1{
        font-size: 23px;
    }
    .textBack p{
        width: 90%;
        font-size: 13px;
    }
    .spanExp span{
        font-size: 32px;
    }
    .spanExp i{
        font-size: 27px;
    }
    .descript{
        font-size: 12px;
        font-weight: 550;
    }
}

@media screen and (max-width: 500px){
    .textBack h1{
        font-size: 21px;
    }
    .textBack p{
        width: 90%;
        font-size: 13px;
    }
    .spanExp span{
        font-size: 30px;
    }
    .spanExp i{
        font-size: 25px;
    }
    .descript{
        font-size: 11px;
        font-weight: 550;
    }
}

@media screen and (max-width: 414px){
    .textBack h1{
        font-size: 20px;
    }
    .textBack p{
        width: 95%;
    }
    .spanExp span{
        font-size: 28px;
    }
    .spanExp i{
        font-size: 23px;
    }
    .descript{
        font-size: 11px;
        font-weight: 550;
    }
    .textBack a button{
        width: 175px;
        height: 32px;
        font-size: 15px;
    }
    .textBack a button i{
        font-size: 14px;
    }
}

@media screen and (max-width: 412px){
    .textBack h1{
        font-size: 18px;
    }
    .textBack p{
        width: 95%;
        font-size: 12px;
    }
    .spanExp span{
        font-size: 27px;
    }
    .spanExp i{
        font-size: 22px;
    }
    .descript{
        font-size: 10px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Nosotros */
.contWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}

.marco{
    width: 350px;
    height: 150px;
    transform: rotate(-30deg);
    background-color: var(--colorLogo);
    position: absolute;
    top: -60px;
    left: -70px;
}

.marco2{
    width: 350px;
    height: 150px;
    transform: rotate(-30deg);
    background-color: var(--colorLogo);
    position: absolute;
    bottom: -60px;
    right: -70px;
}

.we{
    width: 75%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textWe{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10px;
    position: relative;
    z-index: 3;
}

.imgLetrasWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    opacity: .2;
    z-index: 1;
}

.imgLetrasWe img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.textWe h2{
    font-size: 35px;
    color: var(--colorLogo);
}

.textWe p{
    width: 95%;
    font-size: 18.5px;
    font-weight: 400;
    color: var(--colorGray);
}

.textWe a{
    text-decoration: none;
    margin-top: 20px;
}

.textWe a button{
    width: 175px;
    height: 37px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorWhite);
    background-color: var(--colorLogo);
    border-radius: var(--borderBtn);
}

.textWe a button i{
    font-size: 15px;
    margin-left: 5px;
    color: var(--colorWhite);
}

.imgWe{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    z-index: 3;
}

.imgWe img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1280px){
    .we{
        width: 85%;
    }
    .textWe h2{
        font-size: 33px;
    }
    .textWe p{
        width: 100%;
        font-size: 17px;
    }
    .imgLetrasWe{
        top: -30px;
    }
}

@media screen and (max-width: 1150px){
    .textWe h2{
        font-size: 30px;
    }
    .textWe p{
        font-size: 16px;
    }
}

@media screen and (max-width: 1100px){
    .marco{
        height: 130px;
    }
    .marco2{
        height: 130px;
    }
}

@media screen and (max-width: 1000px){
    .textWe h2{
        font-size: 28px;
    }
    .textWe p{
        font-size: 15px;
    }
    .marco{
        height: 120px;
    }
    .marco2{
        height: 120px;
    }
}

@media screen and (max-width: 850px){
    .we{
        width: 90%;
    }
    .textWe h2{
        font-size: 25px;
    }
    .textWe p{
        font-size: 14px;
    }
    .marco{
        height: 100px;
    }
    .marco2{
        height: 100px;
    }
    .imgLetrasWe{
        top: -20px;
    }
    .textWe a button{
        width: 170px;
        height: 35px;
        font-size: 15px;
    }
    .textWe a button i{
        font-size: 14px;
    }
}

@media screen and (max-width: 768px){
    .we{
        width: 95%;
        flex-direction: column;
    }
    .textWe{
        width: 85%;
    }
    .imgWe{
        width: 85%;
        margin-bottom: 15px;
    }
    .textWe h2{
        font-size: 28px;
    }
    .textWe p{
        font-size: 16px;
    }
    .marco{
        height: 120px;
    }
    .marco2{
        height: 120px;
    }
    .imgLetrasWe{
        top: -10px;
    }
}

@media screen and (max-width: 700px){
    .textWe h2{
        font-size: 27px;
    }
    .textWe p{
        font-size: 15px;
    }
    .marco{
        height: 110px;
    }
    .marco2{
        height: 110px;
    }
}

@media screen and (max-width: 500px){
    .textWe h2{
        font-size: 26px;
    }
    .textWe p{
        font-size: 14px;
    }
    .marco{
        height: 110px;
    }
    .marco2{
        height: 110px;
    }
}

@media screen and (max-width: 450px){
    .textWe h2{
        font-size: 25px;
    }
    .textWe p{
        font-size: 13px;
    }
    .marco{
        height: 100px;
    }
    .marco2{
        height: 100px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* VisualRest */
.contVisualRest{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerFilter2{
    width: 100%;
    height: 100%;
    background-image: url(../img/visualrest.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.filter2{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 170px 0;
    background: linear-gradient(0deg, #46464686, rgba(0,0,0,.7));
}

.titleSection{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titleSection h3{
    text-align: center;
    color: var(--colorWhite);
    font-size: 35px;
}

.btnSection{
    margin-bottom: 30px;
    margin-top: 20px;
}

.btnSection a{
    text-decoration: none;
}

.btnSection a button{
    width: 160px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    color: var(--colorWhite);
    border: 1px solid var(--colorWhite);
    border-radius: var(--borderBtn);
    cursor: pointer;
    transition: .6s;
}

.btnSection a button:hover{
    transform: translateY(-10px);
}

@media only screen and (max-width: 1500px){
    .titleSection h3{
        font-size: 30px;
    }
}

@media only screen and (max-width: 1280px){
    .titleSection h3{
        font-size: 25px;
    }
    .btnSection a button{
        width: 130px;
        height: 40px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 1000px){
    .titleSection h3{
        font-size: 23px;
    }
}

@media only screen and (max-width: 850px){
    .titleSection h3{
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px){
    .titleSection h3{
        font-size: 18px;
    }
}

@media only screen and (max-width: 650px){
    .titleSection h3{
        width: 100%;
        font-size: 25px;
    }
    .filter2{
        padding: 160px 0;
    }
}

@media only screen and (max-width: 500px){
    .titleSection h3{
        font-size: 20px;
    }
    .filter2{
        padding: 140px 0;
    }
}

@media only screen and (max-width: 450px){
    .titleSection h3{
        font-size: 18px;
    }
    .filter2{
        padding: 120px 0;
    }
    .btnSection a button{
        width: 130px;
        height: 35px;
        font-size: 12.5px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Servicios */
.contService{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.tittleService{
    width: 100%;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.tittleService img{
    width: 50%;
    height: auto;
    opacity: .2;
    object-fit: cover;
    position: absolute;
}

.tittleService h3{
    font-size: 50px;
    color: var(--colorLogo);
}

.service{
    width: 98%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-rows: 450px;
    gap: 20px 10px;
}

.target{
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .6s;
}

.imgTarget{
    width: 100%;
    height: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.imgTarget img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textTarget{
    width: 100%;
    height: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px 5px;
}

.textTarget h3{
    font-size: 23px;
    color: var(--colorLogo);
    margin-bottom: 5px;
}

.textTarget p{
    font-size: 16px;
    font-weight: 450;
    margin-bottom: 10px;
    color: var(--colorGray);
}

.textTarget a{
    text-decoration: none;
}

.textTarget a button{
    width: 170px;
    height: 35px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--colorWhite);
    background-color: var(--colorLogo);
    border-radius: var(--borderBtn);
    transition: .6s;
}

.textTarget a button:hover{
    transform: translate(10px);
}

.textTarget a button i{
    font-size: 14px;
    margin-left: 5px;
    color: var(--colorWhite);
    transition: .6s;
}

.textTarget a button:hover i{
    transform: rotate(360deg);
}

@media screen and (max-width: 1150px){
    .tittleService h3{
        font-size: 40px;
    }
}

@media screen and (max-width: 950px){
    .tittleService img{
        width: 60%;
    }
}

@media screen and (max-width: 768px){
    .tittleService img{
        width: 70%;
    }
    .textTarget h3{
        font-size: 21px;
    }
    .textTarget p{
        font-size: 15px;
    }
    .textTarget a button{
        width: 160px;
        height: 33px;
        font-size: 14px;
    }
    .textTarget a button i{
        font-size: 13px;
    }
}

@media screen and (max-width: 700px){
    .tittleService h3{
        font-size: 42px;
    }
    .tittleService img{
        width: 80%;
    }
    .textTarget h3{
        font-size: 22px;
    }
    .textTarget p{
        font-size: 17px;
    }
    .textTarget a button{
        width: 160px;
        height: 33px;
        font-size: 14px;
    }
    .textTarget a button i{
        font-size: 13px;
    }
}

@media screen and (max-width: 650px){
    .tittleService h3{
        font-size: 40px;
    }
}

@media screen and (max-width: 600px){
    .tittleService h3{
        font-size: 38px;
    }
    .tittleService img{
        width: 85%;
    }
}

@media screen and (max-width: 450px){
    .tittleService h3{
        font-size: 35px;
    }
    .tittleService img{
        width: 90%;
    }
}

@media screen and (max-width: 414px){
    .tittleService h3{
        font-size: 32px;
    }
    .textTarget a button{
        height: 30px;
    }
}

@media screen and (max-width: 375px){
    .tittleService h3{
        font-size: 28px;
    }
}