*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body{
    background-color: #f9f1f0;
    margin: 0;
    padding: 0;
    height: auto;
}

.header{
    background-color: #fadcd9;
    display: flex;
    justify-content: space-between;
    border-radius: 25px;
    width: 1200px;
    margin: auto;
    padding: 15px;
    margin-top: 20px;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);

}
h1{
    font-size: 30px;
    padding: 10px;
}
span{
    font-weight: lighter;
    font-size: 27px;
}
ul{
    display: flex;
    list-style: none;
    align-items: center;
}
li{
    padding: 0px 15px;
}

.content{
    display: flex;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    height: 100%;
    width: 65%;
    margin-left: 30px;
    margin-top: 20px;
}

.box1{
    background-color: #fadcd9;
    grid-column:1/9;
    grid-row: 1/2;
    border-radius: 15px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.box1 p{
    font-family: sans-serif;
    font-size:50px;
    font:bolder;
    margin-top: 20px;
    margin-left: 70px;
}

.box1 img{
    display: flex;
    justify-self: end;
    border-radius: 15px;
    padding: 30px;
}

.box2{
    background-color: #fadcd9;
    grid-column:9/13;
    grid-row: 1/2;
    border-radius: 15px;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.box2 img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
.box3{
    background-color: #fadcd9;
    grid-column:1/7;
    grid-row:2/5;
    border-radius: 15px;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: auto;
    text-align: justify;
}

.box3 img, p{
    padding: 20px;
    font-size: 20px;
}
.box4{
    background-color: #f8afa6;
    grid-column:7/13;
    grid-row:2/5;
    border-radius: 15px;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.questions{
    display: flex;
    justify-content: space-between;
}
.arrow{
    font-size: 45px;
    margin-top: -20px;
}
.contact{
    justify-content: start;
    font-weight:bolder;
    font-size: 50px;
    font-family: sans-serif;
    margin-top: 60px;
}

.right-content{
    background-color: #fadcd9;
    width: 100;
    border-radius: 15px;
    margin-left: 20px;
    height: 50%;
    margin-top: 20px;
    height: auto;
    margin-bottom: 5px;
    padding-bottom: 20px;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);

}
.right-box{
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    padding-top: 20px;
    align-items: center;
}

.right-content img{
    width: 97%;
    height: 40%;
    padding: 20px;
}

.right-text{
    display: flex;
    font-family: sans-serif;
    font-size: 20px;
    border-top: #f8afa6 solid 3px;
    width: 82%;
    padding-left: 0px;
    margin-left: 20px;
    justify-content: start;
}

.padding{
    padding-bottom: 30px;
}

.container{
    display: flex;

}
.hola{
    width: 30%;
}

.footer{
    background-color: #fadcd9;
    display: flex;
    justify-content: center;
    width: 95%;
    height: 50px;
    padding: 34px 0px;
    border-radius: 15px;
    margin-left: 20px;
    margin-top: 20px;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
}
.footer p{
    font-size: 20px;
    font-weight: lighter;
}


@media (max-width:1200px){
    .hola{
        margin-right:0px;
    }
    .right-content, .footer{
        width: 115%;
    }
    .container{
        width: 100%;
        margin: 0px;
    }
    .header{
        margin:auto;
    }
}

@media (max-width:1100px){
    .header{width: 100%;
    margin-left: 25px; display: flex; flex-direction: column;
    align-items: center;}

    .header h1{
        justify-content: center;
    }
    .content{width: 100%;
    }
    .hola{width: 100%;
    display: flex;
    flex-direction: column;}
    .container{
        margin:0;
        flex-direction: column;
    }
    .right-content{width: 100%;}
    .footer{width: 100%;}
}

@media (max-width:625px){
    .header{width: 100%;
    margin-left: 25px; display: flex; flex-direction: column;
    align-items: center;}

    .header h1{
        justify-content: center;
    }
    .content{width: 100%;
        display: flex;
        flex-direction: column;
    }
    .hola{width: 100%;
    display: flex;
    flex-direction: column;}
    .container{
        flex-direction: column;
    }
    .right-content{width: 100%;}
    .footer{width: 100%;}
}


