* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    font-style: normal;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    background-color: #fff;
    background-size: 100%;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    position: relative;
    margin: 0;
    padding-top: 240px;
    padding-bottom: 240px;

    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    transition: filter .3s ease-in-out;
}
body.loading {
    filter: blur(50px);
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: url('../img/bg.png') repeat center top;
    max-width: 1440px;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: -1;
}

body a {
    color: currentColor;
    font-size: inherit;
    cursor: pointer;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 996px;
    padding-left: 18px;
    padding-right: 18px;
}

header {
    position: absolute;
    height: 260px;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 8;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: hidden;
}

@media screen and (min-width: 1620px) {
    header {
        overflow: visible;
    }
}

header img {
    width: 100%;
    position: absolute;
    left: 0;
    /* top: 30px; */
    
    display: none;
}

@media screen and (min-width: 1620px) {
    header img {
        display: block;
    }
}

header .line-1,
header .line-2 {
    position: relative;
    display: inline-flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    max-width: max-content;

    color: #FFF;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 45px */
}
header .line-1 {
    transform: rotate(2deg);
    background: #000;
    left: -260px;
}
header .line-2 {
    transform: rotate(-5deg);
    background: #D40000;
    left: -379px;
    top: -103px;
}
@media screen and (min-width: 1620px) {

    header .line-1,
    header .line-2 {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    header .line-1 {
        left: -5px;
    }
    header .line-2 {
        left: -5px;
        top: -30px;
        margin-bottom: 80px;
    }
    header .line-1,
    header .line-2 {
        max-width: 105%;
    }
}

main {
    display: block;
}

.photo-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 700px) {
    .photo-gallery {
        flex-direction: column;
    }
}

.photo-gallery--docs {
    margin-top: 30px;
}

.photo-gallery img {
    max-height: 300px;
    height: 100%;
}
@media screen and (max-width: 980px) {
    .photo-gallery img {
        max-height: 240px;
    }
}
@media screen and (max-width: 800px) {
    .photo-gallery img {
        max-height: 200px;
    }
}

.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 60px;
}
.content h1 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 36px */
    text-transform: uppercase;
}

.main-info {
    display: flex;
    flex-direction: row;
    gap: 30px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
@media screen and (max-width: 720px) {
    .main-info {
        flex-direction: column;
    }
}
.main-info__col {
    display: flex;
    padding: 24px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    flex: 1 0 auto;
}
.main-info a {
    text-decoration: underline;
}
.main-info a,
.main-info span {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 32px */
}
.main-info b {
    font-weight: 700;
    text-decoration: none;
}

