@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
    padding: 0px;
    margin: 0px;
}

/*main_wraper*/
.main_wraper{
    padding: 60px 0px;
    background: url('../images/background.png');
}
.main_wraper .logo_wraper{
   display: flex;
   justify-content: center;
   align-items: center;
}
.main_wraper .logo_wraper img{
    width:200px;
}
.main_wraper .middle_imagewraper{
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 60px 0px 0px 0px;
}
.main_wraper .middle_imagewraper img{
    cursor: pointer;
}
/*end*/
/*footer*/
.footer{
    background: #F0F0F0;
    padding: 10px 0px;
}
.footer .list_wraper ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .list_wraper ul li p{
    padding: 0px;
    margin: 0px;
    font-family: Roboto;
    font-weight: 500;
}
.footer .list_wraper ul li a{
    margin: 0px 0px 0px 12px;
}
/*end*/
/*=======responsive=======*/
@media (max-width:1024px) {
    .main_wraper .middle_imagewraper img{
        width: 100%;
    }
    .main_wraper {
        height: 93vh;
        background-size: cover;
        padding: 20px 0px;
    }
}
@media (max-width:767px) {
    .main_wraper .middle_imagewraper img{
        width: 100%;
    }
    .main_wraper {
        height: 93vh;
        background-size: cover;
        padding: 20px 0px;
    }
    .main_wraper .logo_wraper img{
        width: 150px;
    }
    .footer .list_wraper ul li a{
        margin: 0px 0px 0px 5px;
    }
    .footer .list_wraper ul li a img {
        width: 19px;
    }
    .footer .list_wraper ul li p{
        font-size: 14px;
    }
}
