* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

:root{
    --colorLogo: rgb(137,60,16);
    --colorComplementario: rgb(247, 186, 40);
    --colorSecundario: rgb(176, 81, 13);
    --colorBlanco: rgb(255,255,255);
    --colorGrey: rgb(85,85,85);
    --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;
    background-image: url(../img/backgound.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.textBack{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 2%;
    margin-top: 5%;
}

.textBack h1{
    font-size: 35px;
    margin-bottom: 10px;
    color: var(--colorBlanco);
}

.textBack p{
    width: 95%;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--colorBlanco);
}

.textBack a{
    text-decoration: none;
}

.textBack a button{
    width: 155px;
    height: 37px;
    border: none;
    font-size: 15px;
    font-weight: 550;
    cursor: pointer;
    border-radius: var(--borderBtn);
    background-color: var(--colorBlanco);
    color: var(--colorLogo);
}

.textBack a button i{
    font-size: 14px;
    margin-left: 3px;
    color: var(--colorLogo);
}

@media screen and (max-width: 1150px){
    .textBack h1{
        font-size: 30px;
    }
    .textBack{
        margin-top: 20%;
    }
}

@media screen and (max-width: 950px){
    .textBack h1{
        font-size: 28px;
    }
    .textBack p{
        font-size: 15px;
    }
    .textBack a button{
        width: 150px;
        height: 35px;
        font-size: 14px;
    }
    .textBack a button i{
        font-size: 13px;
    }
}

@media screen and (max-width: 800px){
    .contBack{
        background-image: url(../img/backgoundcelular.png);
    }
    .textBack{
        width: 95%;
        align-items: center;
        text-align: center;
        margin-left: 2%;
        margin-top: 0%;
    }
    .textBack h1{
        font-size: 27px;
    }
    .textBack p{
        width: 85%;
        font-size: 15.5px;
    }
}

@media screen and (max-width: 600px){
    .textBack h1{
        font-size: 22px;
    }
    .textBack p{
        font-size: 15px;
    }
}

@media screen and (max-width: 450px){
    .textBack h1{
        font-size: 20px;
    }
    .textBack p{
        font-size: 14.5px;
    }
}

@media screen and (max-width: 414px){
    .textBack h1{
        font-size: 19px;
    }
    .textBack p{
        width: 90%;
        font-size: 13.5px;
    }
}

@media screen and (max-width: 375px){
    .textBack h1{
        font-size: 17px;
    }
    .textBack p{
        width: 95%;
        font-size: 12.5px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Nosotros */
.contWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.we{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.circleWe{
    width: 71%;
    height: 90%;
    position: absolute;
    border-radius: 50%;
    background-color: rgb(137,60,16, .8);
    right: -150px;
    bottom: -120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.textCircle{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 15%;
}

.textCircle img{
    width: 150px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 15px;
}

.textCircle h2{
    width: 60%;
    font-size: 45px;
    color: var(--colorBlanco);
    margin-bottom: 10px;
}

.textCircle p{
    width: 60%;
    font-size: 16px;
    color: var(--colorBlanco);
}

.contTextWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgWe{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgWe img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textWe{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    padding: 0 30px;
}

.textWe h2{
    font-size: 40px;
    color: var(--colorLogo);
    margin-bottom: 5px;
}

.textWe p{
    font-size: 16px;
    font-weight: 400;
    color: var(--colorGrey);
}

@media screen and (max-width: 1150px){
    .circleWe{
        width: 71%;
        height: 85%;
        right: -150px;
        bottom: -120px;
        padding-right: 5%;
    }
    .textCircle{
        margin-top: 7vh;
    }
    .textCircle img{
        width: 130px;
        height: 110px;
    }
    .textCircle h2{
        width: 65%;
        font-size: 37px;
    }
    .textCircle p{
        width: 65%;
        font-size: 15px;
    }
    .textWe h2{
        font-size: 35px;
    }
    .textWe p{
        font-size: 15px;
    }
}

@media screen and (max-width: 1000px){
    .circleWe{
        width: 65%;
        height: 80%;
        right: -100px;
        bottom: -120px;
        padding-right: 3%;
    }
    .textCircle img{
        width: 120px;
        height: 90px;
    }
    .textCircle h2{
        width: 65%;
        font-size: 33px;
    }
    .textCircle p{
        width: 65%;
        font-size: 14.5px;
    }
    .textCircle{
        margin-right: 1%;
        margin-top: 10%;
    }
    .textWe{
        padding: 0 20px;
    }
}

@media screen and (max-width: 950px){
    .circleWe{
        width: 65%;
        height: 83%;
        right: -100px;
        bottom: -120px;
        padding-right: 3%;
    }
    .textCircle h2{
        width: 70%;
        font-size: 30px;
    }
    .textCircle p{
        width: 70%;
        font-size: 14px;
    }
    .textCircle{
        margin-right: 3%;
        margin-top: 10%;
    }
    .textWe{
        padding: 0 10px;
    }
    .textWe h2{
        font-size: 33px;
    }
    .textWe p{
        font-size: 14px;
    }
}

@media screen and (max-width: 850px){
    .circleWe{
        width: 65%;
        height: 83%;
        right: -100px;
        bottom: -120px;
        padding-right: 4%;
    }
    .textCircle h2{
        width: 70%;
        font-size: 26px;
    }
    .textCircle p{
        width: 70%;
        font-size: 13.5px;
    }
    .textCircle{
        margin-right: 3%;
        margin-top: 6%;
    }
    .textWe{
        padding: 0 10px;
    }
    .textWe h2{
        font-size: 30px;
    }
    .textWe p{
        font-size: 13px;
    }
}

@media screen and (max-width: 768px){
    .we{
        flex-direction: column;
    }
    .textCircle{
        margin: 0%;
    }
    .contTextWe{
        flex-direction: column;
    }
    .imgWe{
        margin-bottom: 10px;
    }
    .textWe{
        width: 95%;
        margin-bottom: 15px;
        margin-top: 0px;
        padding: 0;
    }
    .circleWe{
        width: 100%;
        height: 100%;
        border-radius: 0%;
        right: 0px;
        bottom: 0px;
        position: static;
        order: 1;
        padding: 15px 0;
    }
    .textWe h2{
        width: 95%;
    }
    .textWe p{
        width: 80%;
        font-size: 13px;
    }
}

@media screen and (max-width: 450px){
    .textCircle img{
        width: 100px;
        height: 70px;
    }
    .textCircle h2{
        width: 90%;
        font-size: 23px;
    }
    .textCircle p{
        width: 80%;
        font-size: 13px;
    }
    .textWe h2{
        width: 95%;
        font-size: 27px;
    }
    .textWe p{
        width: 95%;
        font-size: 12.5px;
    }
}

@media screen and (max-width: 414px){
    .textCircle h2{
        font-size: 22px;
    }
    .textCircle p{
        width: 90%;
    }
    .textWe h2{
        font-size: 26px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Service */
.contService{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
}

.lines0,
.lines1,
.lines2,
.lines3{
    width: 60px;
    height: 210px;
    position: absolute;
    background-color: var(--colorLogo);
    z-index: 1;
}

.lines0{
    left: 22%;
    transform: rotate(30deg);
}

.lines1{
    left: 40%;
    transform: rotate(150deg);
}

.lines2{
    left: 55%;
    transform: rotate(210deg);
}

.lines3{
    right: 22%;
    transform: rotate(150deg);
}

.titleService{
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 20px;
}

.titleService h2{
    font-size: 50px;
    color: var(--colorLogo);
}

.service{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contTwoCircle,
.contThreeCircle{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.contThreeCircle{
    margin-top: 50px;
}

.twoCircle,
.twoCircle2{
    width: 30%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    margin: 0 20px;
    padding: 0 15px;
    background-color: var(--colorSecundario);
    z-index: 2;
}

.twoCircle,
.twoCircle2 h2{
    font-size: 25px;
    color: var(--colorBlanco);
    margin-bottom: 5px;
}

.twoCircle,
.twoCircle2 p{
    font-size: 15px;
    color: var(--colorBlanco);
}

.threeCircle,
.threeCircle2,
.threeCircle3{
    width: 30%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    margin: 0 20px;
    padding: 0 15px;
    background-color: var(--colorSecundario);
    z-index: 2;
}

.threeCircle,
.threeCircle2,
.threeCircle3 h2{
    font-size: 25px;
    color: var(--colorBlanco);
    margin-bottom: 5px;
}

.threeCircle,
.threeCircle2,
.threeCircle3 p{
    font-size: 15px;
    color: var(--colorBlanco);
}

.threeCircle a,
.threeCircle2 a,
.threeCircle3 a{
    font-size: 16px;
    text-decoration: none;
    color: var(--colorBlanco);
    margin-top: 10px;
    transition: .6s;
}

.threeCircle a:hover,
.threeCircle2 a:hover,
.threeCircle3 a:hover{
    transform: translate(10px);
}

.threeCircle a:hover i,
.threeCircle2 a:hover i,
.threeCircle3 a:hover i{
    transform: translate(10px);
}

.threeCircle i,
.threeCircle2 i,
.threeCircle3 i{
    font-size: 16px;
    margin-left: 5px;
    color: var(--colorBlanco);
    transition: .6s;
}


@media screen and (max-width: 1100px){
    .twoCircle,
    .twoCircle2{
        width: 32%;
        height: 300px;
    }
    .lines0,
    .lines1,
    .lines2,
    .lines3{
        width: 50px;
        height: 250px;
    }
    .twoCircle,
    .twoCircle2 h2{
        font-size: 23px;
    }
    .twoCircle,
    .twoCircle2 p{
        font-size: 14px;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 35%;
        height: 280px;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3 h2{
        font-size: 23px;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3 p{
        font-size: 14px;
    }
}

@media screen and (max-width: 950px){
    .contTwoCircle,
    .contThreeCircle{
        flex-direction: column;
    }
    .contThreeCircle{
        margin-top: 5px;
    }
    .lines0,
    .lines1,
    .lines2,
    .lines3{
        display: none;
    }
    .twoCircle,
    .twoCircle2{
        width: 35%;
        height: 300px;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 35%;
        height: 300px;
    }
}

@media screen and (max-width: 850px){
    .twoCircle,
    .twoCircle2{
        width: 40%;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 40%;
    }
}

@media screen and (max-width: 768px){
    .twoCircle,
    .twoCircle2{
        width: 45%;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 45%;
    }
}

@media screen and (max-width: 700px){
    .twoCircle,
    .twoCircle2{
        width: 50%;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 50%;
    }
}

@media screen and (max-width: 600px){
    .twoCircle,
    .twoCircle2{
        width: 55%;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 55%;
    }
}

@media screen and (max-width: 550px){
    .titleService h2{
        font-size: 40px;
    }
    .twoCircle,
    .twoCircle2{
        width: 60%;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 60%;
    }
    .twoCircle,
    .twoCircle2 h2{
        font-size: 22px;
    }
    .twoCircle,
    .twoCircle2 p{
        font-size: 13.5px;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3 h2{
        font-size: 22px;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3 p{
        font-size: 13.5px;
    }
}

@media screen and (max-width: 450px){
    .titleService h2{
        font-size: 38px;
    }
    .twoCircle,
    .twoCircle2{
        width: 72%;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 72%;
    }
}

@media screen and (max-width: 414px){
    .titleService h2{
        font-size: 35px;
    }
    .twoCircle,
    .twoCircle2{
        width: 77%;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 77%;
    }
}

@media screen and (max-width: 375px){
    .titleService h2{
        font-size: 32px;
    }
    .twoCircle,
    .twoCircle2{
        width: 85%;
    }
    .threeCircle,
    .threeCircle2,
    .threeCircle3{
        width: 85%;
    }
}

