*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: white;
}
body{
    background: rgb(32, 44, 54);
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
.bigheader{
    color: white;
    display: flex;
    justify-content: space-between;
    background: rgb(43, 56, 68);
    padding: 23px 80px;
}
.header2{
    display: flex;
    gap: 30px;
}
.section1{
    border-radius: 5px;
    background: rgb(43, 56, 68);
    width: 480px;
    height: 60px;
    margin-top: 48px;
    margin-left: 80px;
}
form{
    padding-top: 21px;
    padding-left: 34px;
}
form img{
    width: 17.5px;
    height: 17.5px;
    margin-right: 31px;
}
form input{
    background-color: rgb(43, 56, 68);
    color: white;
    border: none;
    outline: none;
}
.section2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    color: white;
    padding-top: 48px;
}
.box{
    border-radius: 5px;
    background: rgb(43, 56, 68);
    width: 306px;
    height: 336px;
    margin-bottom: 45px;
}
.box p{
    padding-left: 24px;
    line-height: 28px ;
}
.box img{
    width: 100%;
    border-radius: 7px;
    height: 160px;
}
@media (max-width:376px){
    .bigheader{
        color: white;
        display: flex;
        justify-content: space-between;
        background: rgb(43, 56, 68);
        padding: 33px 16px ;
    }
    .header1 img{
        width: 135px;
        height: 20px;
    }
    .section2{
        display: block;
        margin: 0 ;
    }
    .section1{
        width: 365px;
        margin-left: 7px;
    }
    .section2{
        padding-left: 38px  ;
    }
}