*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
ul{
    list-style: none;
}
.site__header{
    padding-top: 22px;
    padding-bottom: 130px;
    background-color: #F3D7B7;
}
.container{
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.site__nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.list{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}
.item a{
    text-decoration: none;
    color: #333333;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    
}
.hero{
    background-color: #F3D7B7;
    padding-bottom: 293px;
}
.wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
}
.title{
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-size: 64px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: 0px;
    text-align: left;
    
}
.text{
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    margin: 47px 0;
}
.btn{
    width: 192px;
    border-radius: 100px;
    padding: 10px 0;
    border: none;
    color: rgb(255, 255, 255);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 1px;
    text-align: center;
    background-color: rgb(10, 119, 95);
}
.textbox{
    width: 447px;
}
.img__box{
    position: absolute;
    right: 0;
}
.img__box::before{
    background-image: url("./imglogo.png");
    width: 160px;
    height: 160px;
    display: inline-block;
    content: "";
    position: absolute;
    background-position: center center;
    top: -75px;
    left: -75px;
    animation: render 10s ease-in-out infinite;
}
@keyframes render {
    0%{
        transform: rotate(360deg);
    }
}
.section2 h3{
    color: rgb(0, 0, 0);
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}
.list1{
    display: flex;
    align-items: center;
}
.item1 img:hover{
    transform:scale(1.2) 
}
.item1 img{
    width: 465px;
    height: 375px;
    transition: 0.5s ease-in-out;
}
.item2{
    padding: 121px 150px 0px 121px;
}
.item2 h4{
    color: rgb(51, 51, 51);
    font-size: 48px;
    font-weight: 500;
}
.item2 p{
    color: rgb(51, 51, 51);
    font-size: 22px;
    font-weight: 400;
    text-align: left;
}
footer{
    display: flex;
    justify-content: space-around;
    background-color: #F3D7B7;
    width: 100%;
    height: 100px;
    align-items: center;
}
.footer2 ,
.footer3 {
    display: flex;
    gap: 40px;
}
.footer2 li a{
    text-decoration: none;
    color: rgb(51, 51, 51);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
}
