* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

:root{
    --bordebtn: 25px;
    --colorLogo:rgb(88, 163, 218);
    --colorSecundary: rgb(27, 62, 95);
    --colorGray: rgb(85, 85, 85);
    --colorBlanco: rgb(255, 255, 255);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Background */
.contBack{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url(../img/cookingfood.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.filterBack{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(88, 163, 218, .8);
    clip-path: polygon(0% 0%, 65% 0%, 55% 100%, 0% 100%);
}

.back{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}

.textBack{
    width: 55%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
}

.textBack h1{
    font-size: 50px;
    margin-bottom: 5px;
    color: var(--colorBlanco);
}

.textBack p{
    width: 95%;
    font-size: 17px;
    font-weight: 450;
    color: var(--colorBlanco);
}

.textBack a{
    text-decoration: none;
    margin-top: 25px;
}

.textBack a button{
    width: 175px;
    height: 37px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--colorBlanco);
    color: var(--colorLogo);
    border-radius: 5px;
    transition: .6s;
}

.textBack a button:hover{
    transform: translate(15px);
    border-radius: var(--bordebtn);
}

.textBack a button i{
    font-size: 15px;
    margin-left: 5px;
    color: var(--colorLogo);
    transition: .6s;
}

.textBack a button:hover i{
    transform: rotate(360deg);
}

@media screen and (max-width: 1150px){
    .filterBack{
        clip-path: polygon(0% 0%, 85% 0%, 75% 100%, 0% 100%);
    }
}
@media screen and (max-width: 1000px){
    .textBack h1{
        font-size: 45px;
    }
    .textBack p{
        font-size: 16px;
    }
}
@media screen and (max-width: 950px){
    .textBack h1{
        font-size: 40px;
    }
    .textBack p{
        font-size: 16px;
    }
}
@media screen and (max-width: 850px){
    .filterBack{
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    .back{
        justify-content: center;
    }
    .textBack{
        width: 95%;
        align-items: center;
        text-align: center;
        margin-left: 0%;
    }
    .textBack p{
        width: 80%;
        font-size: 17px;
    }
}
@media screen and (max-width: 700px){
    .textBack h1{
        font-size: 33px;
    }
    .textBack p{
        width: 85%;
        font-size: 16.5px;
    }
    .textBack a button{
        width: 170px;
        height: 33px;
        font-size: 15px;
    }
    .textBack a button i{
        font-size: 14px;
    }
}
@media screen and (max-width: 650px){
    .textBack h1{
        font-size: 30px;
    }
    .textBack p{
        width: 90%;
        font-size: 16px;
    }
}
@media screen and (max-width: 550px){
    .textBack h1{
        font-size: 27px;
    }
    .textBack p{
        width: 95%;
        font-size: 15.5px;
    }
}
@media screen and (max-width: 450px){
    .textBack h1{
        font-size: 25px;
    }
    .textBack p{
        width: 95%;
        font-size: 14.5px;
    }
}
@media screen and (max-width: 414px){
    .textBack h1{
        font-size: 23px;
    }
    .textBack p{
        font-size: 14px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Nosotros */
.contWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.figuraWe{
    width: 70%;
    height: 40px;
    background-color: var(--colorLogo);
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: var(--bordebtn);
    border-bottom-left-radius: var(--bordebtn);
}

.figuraWe2{
    width: 30%;
    height: 100px;
    background-color: var(--colorLogo);
    position: absolute;
    transform: rotate(30deg);
    top: 0;
    right: -180px;
}

.figuraWeDown{
    width: 70%;
    height: 40px;
    background-color: var(--colorLogo);
    position: absolute;
    bottom: 0;
    left: 0;
    border-top-right-radius: var(--bordebtn);
    border-bottom-right-radius: var(--bordebtn);
}

.figuraWeDown2{
    width: 30%;
    height: 100px;
    background-color: var(--colorLogo);
    position: absolute;
    transform: rotate(30deg);
    bottom: 0;
    left: -180px;
}

.we{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contImgsWe{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.oneImg{
    width: 43%;
    height: 450px;
    background-image: url(../img/comidagastronomia.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 50% / 30%;
}

.imgSmall{
    width: 20%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 50% / 30%;
}

.imgSmall img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% / 30%;
    position: absolute;
    border: 5px solid var(--colorBlanco);
}

.imgSmall img:first-child{
    top: 100px;
    right: 100px;
}

.imgSmall img:nth-child(2){
    top: -100px;
    right: 170px;
}

.textWe{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titleWe{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.titleWe hr{
    width: 15%;
    height: 3px;
    border: none;
    margin-right: 5px;
    background-color: var(--colorLogo);
}

.titleWe h2{
    font-size: 35px;
    color: var(--colorLogo);
}

.textWe p{
    width: 95%;
    font-size: 17.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;
    overflow: hidden;
    background-color: var(--colorLogo);
    color: var(--colorBlanco);
    border-radius: var(--bordebtn);
    transition: .6s;
}

.textWe a button:hover{
    transform: translate(10px);
}

.textWe a button i{
    font-size: 15px;
    margin-left: 5px;
    color: var(--colorBlanco);
    transition: .6s;
}

.textWe a button:hover i{
    transform: translate(50px);
}

@media screen and (max-width: 1280px){
    .oneImg{
        width: 45%;
    }
}
@media screen and (max-width: 1150px){
    .oneImg{
        width: 45%;
    }
    .imgSmall img:first-child{
        right: 80px;
    }
    .imgSmall img:nth-child(2){
        right: 150px;
    }
}
@media screen and (max-width: 1100px){
    .oneImg{
        width: 50%;
    }
    .imgSmall{
        width: 25%;
    }
    .imgSmall img:first-child{
        right: 100px;
    }
    .imgSmall img:nth-child(2){
        right: 160px;
    }
}
@media screen and (max-width: 950px){
    .figuraWe2{
        width: 40%;
    }
    .figuraWeDown2{
        width: 40%;
    }
    .imgSmall img:first-child{
        right: 85px;
    }
    .imgSmall img:nth-child(2){
        right: 145px;
    }
    .titleWe h2{
        font-size: 30px;
    }
    .textWe p{
        font-size: 16.5px;
    }
}
@media screen and (max-width: 850px){
    .oneImg{
        width: 55%;
    }
    .imgSmall img:first-child{
        right: 80px;
    }
    .imgSmall img:nth-child(2){
        right: 140px;
    }
}
@media screen and (max-width: 800px){
    .we{
        flex-direction: column;
    }
    .oneImg{
        width: 75%;
        height: 450px;
    }
    .contImgsWe{
        margin-bottom: 15px;
    }
    .imgSmall{
        width: 35%;
    }
    .textWe{
        width: 80%;
    }
    .titleWe h2{
        font-size: 29px;
    }
    .textWe p{
        width: 100%;
    }
    .figuraWe{
        height: 35px;
    }
    .figuraWeDown{
        height: 35px;
    }
}
@media screen and (max-width: 650px){
    .textWe{
        width: 85%;
    }
    .titleWe h2{
        font-size: 28px;
    }
    .textWe p{
        font-size: 16px;
    }
    .figuraWe2{
        width: 45%;
    }
    .figuraWeDown2{
        width: 42%;
    }
}
@media screen and (max-width: 600px){
    .oneImg{
        width: 90%;
        height: 450px;
    }
    .textWe{
        width: 85%;
    }
    .titleWe h2{
        font-size: 28px;
    }
    .textWe p{
        font-size: 16px;
    }
    .figuraWe2{
        width: 45%;
    }
    .figuraWeDown2{
        width: 42%;
    }
    .imgSmall{
        width: 45%;
    }
    .imgSmall img:first-child{
        right: 110px;
    }
    .imgSmall img:nth-child(2){
        right: 170px;
    }
}
@media screen and (max-width: 550px){
    .oneImg{
        width: 95%;
    }
    .textWe{
        width: 90%;
    }
    .titleWe h2{
        font-size: 27px;
    }
    .textWe p{
        font-size: 15px;
    }
    .figuraWe2{
        width: 46%;
    }
    .figuraWeDown2{
        width: 46%;
    }
    .imgSmall{
        width: 50%;
    }
    .imgSmall img:first-child{
        right: 110px;
    }
    .imgSmall img:nth-child(2){
        right: 170px;
    }
}
@media screen and (max-width: 500px){
    .titleWe h2{
        font-size: 25px;
    }
    .textWe p{
        font-size: 14px;
    }
    .figuraWe2{
        width: 65%;
        height: 80px;
    }
    .figuraWeDown2{
        width: 65%;
        height: 80px;
    }
    .imgSmall img:first-child{
        right: 100px;
    }
    .imgSmall img:nth-child(2){
        right: 140px;
    }
}
@media screen and (max-width: 450px){
    .oneImg{
        width: 100%;
        border-radius: 60% / 40%;
    }
    .titleWe h2{
        font-size: 25px;
    }
    .textWe p{
        font-size: 13px;
    }
    .textWe a button{
        width: 170px;
        height: 35px;
        font-size: 15px;
    }
    .textWe a button i{
        font-size: 14px;
    }
}
@media screen and (max-width: 414px){
    .oneImg{
        border-radius: 70% / 40%;
    }
    .titleWe h2{
        font-size: 24px;
    }
    .textWe p{
        font-size: 13px;
    }
    .textWe a button{
        width: 170px;
        height: 35px;
        font-size: 15px;
    }
    .textWe a button i{
        font-size: 14px;
    }
    .imgSmall img:first-child{
        right: 90px;
    }
    .imgSmall img:nth-child(2){
        right: 130px;
    }
}
@media screen and (max-width: 375px){
    .oneImg{
        border-radius: 80% / 40%;
    }
    .titleWe h2{
        font-size: 23px;
    }
    .textWe p{
        font-size: 12px;
    }
    .imgSmall img:first-child{
        right: 80px;
    }
    .imgSmall img:nth-child(2){
        right: 110px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Servicios */
.contServ{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.services{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titleServ{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.titleServ h3{
    font-size: 40px;
    margin-bottom: 5px;
    color: var(--colorLogo);
}

.titleServ p{
    width: 70%;
    font-size: 17px;
    font-size: 450;
    color: var(--colorGray);
}

.titleServ a{
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.titleServ a:first-child{
    color: var(--colorLogo);
}

.titleServ a:nth-child(2){
    color: var(--colorSecundary);
}

.contItemServices{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    padding: 0 10px;
}

.itemServ{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.textItem{
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.textItem h4{
    font-size: 25px;
    color: var(--colorLogo);
    margin-bottom: 5px;
}

.textItem p{
    font-size: 16px;
    font-weight: 450;
    color: var(--colorGray);
}

.textItem a{
    text-decoration: none;
    margin-top: 20px;
}

.textItem a button{
    width: 170px;
    height: 35px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 550;
    overflow: hidden;
    background-color: var(--colorLogo);
    color: var(--colorBlanco);
    border-radius: var(--bordebtn);
    transition: .6s;
}

.textItem a button:hover{
    transform: translate(10px);
}

.textItem a button i{
    font-size: 15px;
    margin-left: 5px;
    color: var(--colorBlanco);
    transition: .6s;
}

.textItem a button:hover i{
    transform: translate(150px);
}

.imgItem{
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgItem:first-child{
    margin-bottom: 5px;
}

.imgItem:nth-child(2){
    margin-top: 15px;
}

.imgItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1280px){
    .titleServ h3{
        font-size: 38px;
    }
    .titleServ p{
        width: 75%;
        font-size: 16.5px;
    }
    .titleServ a{
        font-size: 17px;
    }
    .textItem h4{
        font-size: 24px;
    }
    .textItem p{
        font-size: 15.5px;
    }
}
@media screen and (max-width: 1150px){
    .titleServ h3{
        font-size: 35px;
    }
    .titleServ p{
        font-size: 16px;
    }
    .textItem h4{
        font-size: 23px;
    }
    .textItem p{
        font-size: 15px;
    }
}
@media screen and (max-width: 950px){
    .titleServ h3{
        font-size: 35px;
    }
    .titleServ p{
        font-size: 16px;
    }
    .textItem h4{
        font-size: 22px;
    }
    .textItem p{
        font-size: 14.5px;
    }
    .textItem a button{
        width: 160px;
        height: 32px;
        font-size: 15px;
    }
    .textItem a button i{
        font-size: 14px;
    }
}
@media screen and (max-width: 850px){
    .titleServ h3{
        font-size: 32px;
    }
    .titleServ p{
        font-size: 17px;
    }
    .textItem h4{
        font-size: 23px;
    }
    .textItem p{
        width: 90%;
        font-size: 15px;
    }
    .textItem a button{
        width: 160px;
        height: 32px;
        font-size: 15px;
    }
    .textItem a button i{
        font-size: 14px;
    }
    .contItemServices{
        flex-direction: column;
    }
    .imgItem img{
        width: 80%;
    }
    .textItem{
        align-items: center;
        text-align: center;
    }
    .textItem:nth-child(2){
        margin: 10px 0px 15px 0px;
    }
    .itemServ{
        width: 90%;
    }
    .imgItem:nth-child(1){
        order: 1;
    }
}
@media screen and (max-width: 768px){
    .titleServ h3{
        font-size: 30px;
    }
    .titleServ p{
        width: 85%;
        font-size: 16.5px;
    }
    .textItem h4{
        font-size: 23px;
    }
    .textItem p{
        width: 90%;
        font-size: 15px;
    }
    .imgItem img{
        width: 85%;
    }
    .itemServ{
        width: 95%;
    }
}
@media screen and (max-width: 650px){
    .titleServ h3{
        font-size: 29px;
    }
    .titleServ p{
        width: 95%;
        font-size: 15.5px;
    }
    .titleServ a{
        font-size: 17px;
    }
    .textItem h4{
        font-size: 22px;
    }
    .textItem p{
        width: 95%;
        font-size: 14.5px;
    }
    .imgItem img{
        width: 90%;
    }
}
@media screen and (max-width: 550px){
    .titleServ h3{
        font-size: 27px;
    }
    .titleServ p{
        width: 95%;
        font-size: 15px;
    }
    .titleServ a{
        font-size: 16px;
    }
    .textItem h4{
        font-size: 21px;
    }
    .textItem p{
        font-size: 14px;
    }
}
@media screen and (max-width: 500px){
    .titleServ h3{
        font-size: 25px;
    }
    .titleServ p{
        font-size: 14.5px;
    }
    .titleServ a{
        font-size: 16px;
    }
    .textItem h4{
        font-size: 19px;
    }
    .textItem p{
        font-size: 13.5px;
    }
}
@media screen and (max-width: 414px){
    .titleServ h3{
        font-size: 24px;
    }
    .titleServ p{
        font-size: 13.5px;
    }
    .textItem h4{
        font-size: 17px;
    }
    .textItem p{
        font-size: 12.5px;
    }
}