*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body{
    position: relative;
}
#lightbox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8) !important;
    z-index: 9999;
}
#header{
    height: 100vh;
    width: 100%;
    background-image: url(../img/main.png);
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}
.container{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.container-header{
    width: 80%;
    max-width: unset;
    padding-top: 90px;
    justify-content: flex-start;
    align-items: flex-start;
}
.logo-wrap{
    width: 165px;
    height: 47px;
    margin-bottom: 287px;
}
.logo-wrap .logo{
    height: 100%;
    width: 100%;
}
.h1{
    margin-bottom: 25px;
    font-weight: 900;
    font-size: 48px;
    color: #ffffff;
}
.text{
    margin-bottom: 45px;
    font-weight: 500;
    font-size: 26px;
    color: #ffffff;
    line-height: normal;
}
.btn{
    display: inline-block;
    margin-bottom: 12px;
    height: 72px;
    width: 370px;
    background: linear-gradient(90deg, #3D65F4 0%, #6587FF 100%);
    border-radius: 4px;
    color: #ffffff;
    text-align: center;
    line-height: 72px;
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-decoration: none;
}
.text-small{
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #ABABAB;
}
.info-link{
    color: #ABABAB;
}

#body{
    width: 100%;
}
#body .container{
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
}
.categories{
    width: 100%;
}
.h2{
    margin-bottom: 57px;
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    color: #333333;
}

.icon-row{
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}
.icon-wrap{
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.icon-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #3D65F4;
    border-radius: 4px;
}
.icon-img{
    height: 30px;
    width: 30px;
}
.icon-text{
    font-weight: 500;
    font-size: 22px;
    color: #333333;
}
.lost_manual{
    padding-top: 20px;
}
.lost_row{
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.lost_left, .photo-wrap{
    width: 47%;
}
.h3{
    font-weight: 500;
    font-size: 30px;
    color: #333333;
    text-align: left;
}
.text-lost{
    margin-top: 30px;
    line-height: 28px;
    font-weight: 500;
    font-size: 20px;
    color: #333333;
}
.photo{
    height: 100%;
    width: 100%;
}
.lost_left .btn{
    margin-top: 20px;
    font-size: 24px;
    width: 300px;
    height: 56px;
    line-height: 56px;
}
footer{
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-color: #E3E3E3;
}
.link-footer{
    margin: 0 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #ABABAB;
}
@media (max-width: 1440px) {
    .container-header{
        padding-top: 30px;
    }
    .logo-wrap{
        margin-bottom: 90px;
    }
}