* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 700;
    src: url('../fonts/Gilroy-Black.ttf');
}
@font-face {
    font-family: 'Gilroy';
    font-weight: 600;
    src: url('../fonts/Gilroy-Bold.ttf');
}
@font-face {
    font-family: 'Gilroy';
    font-weight: 900;
    src: url('../fonts/Gilroy-Extrabold.ttf');
}

body {
    background: #0D0C2D;
    font-family: 'Gilroy';
}

body .content p {
    margin: 0 0 15px 0;
}

body a {
    text-decoration: none;
}

body a:first-child {
    z-index: 10;
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

.intro {
    position: relative;
    padding: 24px 0 69px 0;
    background: url('../img/bg.png') center / cover no-repeat;
}

.intro::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 2;
}

.intro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 2;
}

.intro::after {
    background: linear-gradient(180deg, #0D0C2D 0%, rgba(13, 12, 45, 0) 100%);
    transform: rotate(180deg);
}

.intro::before {
    background: linear-gradient(180deg, #0D0C2D 0%, rgba(13, 12, 45, 0) 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}
.intro nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}
.logo {
    height: 15px;
    transition: .4s;
}
.logo img {
    width: auto;
    height: 100%;
}
.logo:hover {
    transform: scale(1.03);
}
.intro nav ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.intro nav ul li {
    margin: 0 20px 10px 0;
    list-style: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}
.intro nav ul li:hover {
    color: #6FE5F7;
}
.intro nav ul li a {
    text-decoration: none;
    color: inherit;
}
.intro .body {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 678px;
    padding: 62px 0 0 0;
    z-index: 3;
}
.intro .body h1 {
    margin: 0 0 15px 0;
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 50px;
    color: #FFFFFF;
}
.intro .body h1 span {
    color: #6FE5F7;
}
.intro .body p {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}
.intro .body a {
    margin: 30px 0 0 0;
    padding: 15px 45px;
    align-self: flex-start;
    text-decoration: none;
    background: #6FE5F7;
    border-radius: 10px;
    transition: .5s all;
}
.intro .body a:hover {
    background: #0D0C2D;
}
.intro .body a span {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #0D0C2D;
    transition: .5s all;
}
.intro .body a:hover span {
    color: #6FE5F7;
}
.burger {
    display: none;
}

.content {
    margin: 32px 0 0 0;
}
.content h2 {
    margin: 25px 0 15px 0;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 900;
    font-size: 28px;
    line-height: 35px;
    color: #FFFFFF;
}
.content h2 span {
    color: #6FE5F7;
}
.content ul,
.content ol {
    margin: 0 0 15px 20px;
}
.content p,
.content ul li,
.content ol li {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.content p {
    margin: 0 0 15px 0;
}
.container-error {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 150px);
}
.container-error h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 8em;
    line-height: 150%;
}
.container-error h4 {
    margin: 0;
    color: #6FE5F7;
    font-size: 8em;
    line-height: 150%;
}

footer {
    margin: 32px 0;
    padding: 20px 0 0 0;
}
footer nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer nav img {
    height: 20px;
    transition: .4s;
}
footer nav img:hover {
    transform: scale(1.03);
}
footer nav ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
footer nav ul li {
    margin: 0 0 10px 20px;
    list-style: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    transition: .3s;
}
footer nav ul li:hover {
    color: #FA3F76;
}
footer nav ul li a {
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 1280px) {
    .container {
        max-width: 1100px;
    }
}

@media screen and (max-width: 1100px) {
    .container {
        max-width: 768px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 50px;
        max-width: 100%;
    }
    .burger {
        display: block;
        width: 30px;
        height: 20px;
        background: url('../img/burger.svg') center / cover no-repeat;
        z-index: 10;
    }
    .intro.active .burger {
        background-image: url('../img/close.svg');
    }
    .intro nav {
        position: static;
    }
    .intro nav ul {
        position: absolute;
        top: -250%;
        left: 0;
        display: flex;
        flex-direction: column;
        padding: 100px 50px 50px 50px;
        width: 100%;
        z-index: 8;
        background: #0D0C2D;
        transition: .3s;
    }
    .intro.active nav ul {
        top: 0;
    }
    .intro nav ul li {
        display: flex;
        justify-content: flex-start;
        margin: 10px 0 0 0;
        color: #FFFFFF;
    }
    .intro nav ul li a {
        padding: 20px;
        width: 100%;
    }
    .intro nav ul li:hover {
        background: #6FE5F7;
        border-radius: 4px;
        color: #0D0C2D;
    }
    .intro nav img {
        z-index: 10;
    }
    .border {
        margin: 0 0 10px 0;
    }
    .container-error h4 {
        font-size: 5em;
    }
    .container-error h3 {
        font-size: 5em;
    }
    footer nav ul {
        margin: 0;
        flex-wrap: wrap;
        justify-content: space-between;
        align-self: flex-start;
    }
    footer nav ul li {
        margin: 0 0 16px 0;
        width: 47%;
    }
    footer nav {
        flex-direction: row;
        align-items: flex-start;
    }
    body a:first-child {
        align-self: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    .intro {
        padding: 22px 0 32px 0;
        background-image: url('../img/mob.png');
    }
    .intro::before {
        height: 50px;
    }
    .intro::after {
        opacity: 0;
    }
    .logo {
        height: 10px;
    }
    .burger {
        width: 22px;
        height: 15px;
    }
    .intro .body {
        padding: 39px 0 0 0;
        max-width: 100%;
    }
    .intro .body h1 {
        margin: 0 0 8px 0;
        font-size: 18px;
        line-height: 23px;
    }
    body .content p {
        margin: 0 0 8px 0;
    }
    .intro .body p {
        font-size: 12px;
        line-height: 15px;
    }
    .intro .body a {
        margin: 21.5px 0 0 0;
        padding: 7.5px 45px;
    }
    .intro .body a span {
        font-size: 12px;
        line-height: 12px;
    }
    .intro nav ul {
        top: -2550%;
    }
    .intro nav ul {
        padding: 60px 15px 15px 15px;
    }
    .intro .border {
        margin: 0 0 10px 0;
    }
    .intro nav ul li {
        font-size: 12px;
        line-height: 15px;
    }
    .intro nav ul li a {
        padding: 8px 13px;
    }
    .content {
        margin: 17px 0 0 0;
    }
    .content h2 {
        margin: 15px 0 8px 0;
        font-size: 16px;
        line-height: 20px;
    }
    .content p,
    .content ul li,
    .content ol li {
        margin: 0 0 8px 0;
        font-size: 12px;
        line-height: 15px;
    }
    .content ul,
    .content ol {
        margin: 0 0 0 15px;
    }
    .container-error h3 {
        font-size: 2em;
    }
    .container-error h4 {
        font-size: 2em;
    }
    footer nav ul li {
        font-size: 12px;
        line-height: 15px;
    }
    footer {
        margin: 32px 0 0 0;
    }
    footer .bor {
        margin: 0 0 15px 0;
    }
}