body{
    background-color: rgb(244, 79, 84);
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
}


.container{
    width: 1024px;
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* header */

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid lightgray;
}
.nav{
    display: flex;
    justify-content: space-between;
}
.navbutton{
    /* background-color: rgb(244, 79, 84); */
    margin-left: 10px;
    color: white;
    text-decoration: none;
    padding: 11px 25px;
    outline: 1px  solid white;
    font-family: playfair;
    /* font-size: 20px; */
}

/* main */

main{
    min-height: 300px;
    display: flex;
    align-items: center;
}
.herobox1{
    flex: 2;
    padding-right: 100px;
}
.herobox2{
    flex: 1;
    text-align: right;
}

.button{
    /* display: inline-block; */
    padding: 10px 20px 10px 20px;
    background-color: white;
    text-decoration: none;
    color: red;
    border-radius: 5px;
    box-shadow: 5px 5px black;
}
a.button{
    display: inline-block;
    margin-top: 10px;
}


/* cards section */

.cards{
    /* background-color: rgb(101, 214, 101); */
    display: flex;
    justify-content: space-between;
    /* min-height: 250px; */
    text-align: center;
    text-decoration: none;
}
.card1{
    background-image: url(images/image-background-card1.jpg);
    background-size: cover;
    background-position: bottom;
    width: 30%;
}
.card2{
    background-image: url(images/image-background-card2.jpg);
    background-size: cover;
    background-position: bottom;
    width: 30%;
}
.card3{
    background-image: url(images/image-background-card3.jpg);
    background-size: cover;
    background-position: bottom;
    width: 30%;
}

.card1, .card2, .card3{
    padding: ;
    box-sizing: border-box;
}

h1{
    font-size: 3.25rem;
    font-family: "Playfair", serif;
    padding-bottom: 1rem;
}

h2{
    font-size: 2rem;
    font-family: "Playfair", serif;
    margin-top: 20px;
}

p{
    line-height: 1.7rem;
    margin-bottom: 0.5rem;
}
.cards p{
    line-height: 1.2rem;
    font-size: 0.85rem;
    margin: 20px 30px 20px 30px;
}

i{
    font-size: 100px;
    padding-top: 20px;
}

.cards a{
    text-decoration: none;
    color: white;
}

.tbox{
    width: 47%;
    padding: 50px;
    outline: 1px solid white;
    box-sizing: border-box;
    margin-top: 50px;
}
.testimoninals{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 100px;
}