* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

:root{
    --colorLogo: rgb(17,94,62);
    --colorGray: rgb(85,85,85);
    --colorWhite: rgb(255,255,255); 
    --borderBtn: 25px;
}

.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;
    background-image: url(../img/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.filterBack{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, rgb(0, 0, 0, .7) 50%, rgb(255,255,255, .01) 100%);
}

.back{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}

.textBack{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
}

.textBack h1{
    font-size: 50px;
    margin-bottom: 5px;
    color: var(--colorWhite);
}

.textBack p{
    width: 90%;
    font-size: 17px;
    font-weight: 550;
    color: var(--colorWhite);
}

.textBack a{
    text-decoration: none;
    margin-top: 20px;
}

.textBack a button{
    width: 160px;
    height: 35px;
    border: none;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--colorWhite);
    background-color: var(--colorLogo);
    border-radius: var(--borderBtn);
}

.textBack a button i{
    font-size: 14.5px;
    margin-left: 5px;
    color: var(--colorWhite);
}

@media screen and (max-width: 850px){
    .filterBack{
        background: linear-gradient(to right, rgb(0, 0, 0, .7) 50%, rgb(0, 0, 0, .7) 100%);
    }
    .back{
        justify-content: center;
    }
    .textBack{
        width: 95%;
        margin-left: 0%;
        justify-content: center;
        text-align: center;
    }
    .textBack h1{
        font-size: 45px;
    }
    .textBack p{
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .textBack h1{
        font-size: 40px;
    }
    .textBack p{
        font-size: 16px;
    }
}

@media screen and (max-width: 650px){
    .textBack h1{
        font-size: 35px;
    }
}

@media screen and (max-width: 600px){
    .textBack h1{
        font-size: 33px;
    }
    .textBack p{
        font-size: 15px;
    }
    .textBack a{
        margin-top: 15px;
    }
    .textBack a button{
        width: 150px;
        height: 33px;
        font-size: 15px;
    }
    .textBack a button i{
        font-size: 14px;
    }
}

@media screen and (max-width: 550px){
    .textBack h1{
        font-size: 31px;
    }
}

@media screen and (max-width: 450px){
    .textBack h1{
        font-size: 25px;
    }
    .textBack p{
        font-size: 14px;
    }
    .textBack a button{
        width: 150px;
        height: 33px;
        font-size: 14px;
    }
    .textBack a button i{
        font-size: 13px;
    }
}

@media screen and (max-width: 375px){
    .textBack h1{
        font-size: 21px;
    }
    .textBack p{
        font-size: 12px;
    }
    .textBack a button{
        width: 140px;
        height: 28px;
        font-size: 13px;
    }
    .textBack a button i{
        font-size: 12px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Nosotros */
.contWe{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.tittleWe{
    width: 100%;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.tittleWe img{
    width: 50%;
    height: auto;
    opacity: .2;
    object-fit: cover;
    position: absolute;
}

.tittleWe h2{
    font-size: 50px;
    color: var(--colorLogo);
}

.we{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textWe{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
}

.titleSecundary{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}

.titleSecundary hr{
    width: 100px;
    height: 2px;
    border: none;
    margin-right: 10px;
    background-color: var(--colorLogo);
}

.titleSecundary h2{
    font-size: 30px;
    color: var(--colorLogo);
    margin-bottom: 5px;
}

.textWe p{
    width: 90%;
    font-size: 16px;
    font-weight: 450;
    color: var(--colorGray);
    margin-bottom: 20px;
}

.textWe a{
    text-decoration: none;
}

.textWe a button{
    width: 165px;
    height: 35px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--colorWhite);
    border-radius: var(--borderBtn);
    background-color: var(--colorLogo);
}

.textWe a button i{
    font-size: 14px;
    color: var(--colorWhite);
    margin-left: 5px;
}

.imgWe{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.imgWe img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1150px){
    .tittleWe{
        height: 70px;
    }
    .tittleWe h2{
        font-size: 43px;
    }
    .titleSecundary h2{
        font-size: 25px;
    }
    .textWe p{
        width: 95%;
        font-size: 15px;
    }
}

@media screen and (max-width: 950px){
    .tittleWe{
        height: 60px;
    }
    .tittleWe h2{
        font-size: 39px;
    }
    .about{
        width: 100%;
        flex-direction: column;
    }
    .imgWe{
        width: 80%;
    }
    .textWe{
        width: 80%;
        align-items: center;
        text-align: center;
    }
    .titleSecundary{
        justify-content: center;
    }
    .textWe p{
        width: 85%;
    }
}

@media screen and (max-width: 850px){
    .tittleWe img{
        width: 70%;
    }
    .tittleWe h2{
        font-size: 35px;
    }
    .imgWe{
        width: 85%;
    }
    .textWe{
        width: 85%;
    }
    .textWe p{
        width: 90%;
    }
}

@media screen and (max-width: 550px){
    .tittleWe img{
        width: 85%;
    }
    .tittleWe h2{
        font-size: 33px;
    }
    .imgWe{
        width: 90%;
    }
    .textWe{
        width: 90%;
    }
    .textWe p{
        width: 95%;
    }
}

@media screen and (max-width: 450px){
    .tittleWe h2{
        font-size: 32px;
    }
    .imgWe{
        width: 95%;
    }
    .textWe{
        width: 95%;
    }
    .textWe p{
        font-size: 14px;
    }
}

@media screen and (max-width: 414px){
    .titleSecundary hr{
        width: 90px;
    }
    .titleSecundary h2{
        font-size: 23px;
    }
    .tittleWe h2{
        font-size: 31px;
    }
    .textWe p{
        font-size: 13.5px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Servicios */
.contService{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.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: 100%;
    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;
}

.imgTarget{
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.imgTarget img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textTarget{
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.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;
    border-radius: var(--borderBtn);
    color: var(--colorWhite);
    background-color: var(--colorLogo);
}

.textTarget a button i{
    font-size: 14px;
    margin-left: 5px;
    color: var(--colorWhite);
}

@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;
    }
}