*{
    margin: 0;
    padding: 0;
}
html, body, .container{
    height: 100%;
}
a{
    text-decoration: none;
}
.container{
    display: flex;
    flex-direction: column;
}
@font-face{
    font-family: RobotoLight; 
    src: url("../fonts/Roboto-Light.ttf"); 
}
header{
    display: flex;
    justify-content: space-between;
}
.logo{
    width: 120px;
    
}
.img_wrapper{
    padding: 20px 0 0 60px;
}
.links{
    display: flex;
    align-items: center;
    
}
.link{
    font-family: RobotoLight;
    font-size: 18px;
    text-decoration: none;
    color:rgba(0,0,0,.52);
    margin: 0 20px;
    transition: all .2s ease-out;
}


.social{
    display: flex;
    align-items: center;
    margin: 0 40px 0 50px;
}
.social__link_img{
    width: 35px;
    margin: 10px;
}
.link:hover{
    color: rgba(236,162,162,.83);
}

.wrapper{
    padding: 50px 60px 20px 60px;
    display: flex;
    justify-content: space-around;
    flex-wrap:wrap;
}
.panel{
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 20px 80px 20px;
}
.panel__img{
    margin: 0 0 20px 0;
}
.panel__img_img{
    width: 100%;
}
.panel_name{
    font-family: RobotoLight;
    font-size: 17px;
    text-align: center;
    color: #000;
}
.panel_price{
    font-family: RobotoLight;
    font-size: 15px;
    text-align: center;
    line-height: 40px;
    color: #000;
}

footer{
    margin: auto 0 0 0;
    width: 100%;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
}
.footer__social{
    display: flex;
    justify-content: center;
    margin: 0 0 20px 0;
}
.copyright{
    text-align: center;
}

@media screen and (max-width: 900px){
    .links{
        display: none;
    }
    header{
        width: 100%;
        position: fixed;
        background: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }
    .social{
        margin: 0 10% 0 0;
    }
    .logo{
        padding: 0;
    }
    .img_wrapper{
        padding: 0 0 0 10%;
    }
    .wrapper{
        padding: 170px 60px 20px 60px;
    }
}









