@import url('https://fonts.googleapis.com/css2?family=Victor+Mono:wght@300;400;500;600;700&display=swap');
:root {
    --ff-victor: 'Victor Mono', monospace;
    --bg-main: #1f2232;
 }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
ul {
    list-style: none
}
a {
    text-decoration: none;
    color: inherit
}
.container {
    margin: 0 auto;
    max-width: 1240px
}
img {
    max-width: 100%;
    border-radius: 30px;
    display: block;
    margin: 0 auto
}
button {
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0);
    cursor: pointer
}
body {
    font-family: var(--ff-victor);
    background: var(--bg-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fff
}
main {
    background: #374151
}
.arrow-btn-up {
    width: 50px;
    height: 50px;
    background: url(../img/arrow.svg), linear-gradient(#203f33, #201616) padding-box, #4fb41f;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    border-radius: 50%;
    border: 5px solid rgba(0, 0, 0, 0);
    z-index: -1;
    bottom: 45px;
    right: 10px;
    opacity: 0;
    transition: .3s ease
}
.arrow-btn-up.btn-visible {
    opacity: 1;
    z-index: 2
}
.header {
    height: 104px
}
@media(max-width: 590px) {
    .header {
        height: 247px
    }
}
.header-fixed {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 50px;
    transition: .3s ease-in-out;
    background: #000;
}
@media(max-width: 1250px) {
    .header-fixed {
        padding: 25px 15px
    }
}
@media(max-width: 890px) {
    .header-fixed {
        padding: 25px 30px
    }
}
@media(max-width: 590px) {
    .header-fixed {
        padding: 0 15px 30px;
        background: #374151
    }
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center
}
@media(max-width: 590px) {
    .header-wrapper {
        flex-direction: column
    }
}
.header-logo {
    cursor: pointer;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    text-transform: uppercase
}
@media(max-width: 590px) {
    .header-logo {
        margin-top: 30px;
        font-family: var(--ff-poppins);
        line-height: 36px
    }
}
.header .burger {
    display: none
}
@media(max-width: 890px) {
    .header .burger {
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
        background: url(../img/burger.svg) no-repeat center;
        z-index: 4;
        transition: .3s ease
    }
    .header .burger.active {
        background: url(../img/closed.svg) no-repeat center
    }
}
@media(max-width: 590px) {
    .header .burger {
        position: absolute;
        top: 30px;
        left: 30px
    }
}
.header .menu {
    display: flex;
    gap: 29px
}
@media(max-width: 890px) {
    .header .menu {
        flex-direction: column;
        gap: 50px;
        padding: 178px 0 0 30px
    }
}
.header .menu .item {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer
}
@media(max-width: 890px) {
    .header .menu .item {
        font-weight: 500
    }
}
@media(max-width: 890px) {
    .header .nav {
        position: absolute;
        left: 0;
        right: 20%;
        top: 0;
        bottom: 0;
        height: 110vh;
        z-index: 2;
        overflow-x: hidden;
        transform: translateX(-110%);
        transition: .3s ease-in-out;
        background: #000;
        background-size: contain
    }
    .header .nav.open {
        transform: translateX(0)
    }
}
.header-block {
    display: flex;
    gap: 20px
}
@media(max-width: 890px) {
    .header-block {
        align-items: center
    }
}
@media(max-width: 590px) {
    .header-block {
        flex-direction: column;
        margin-top: 30px
    }
}
@media(max-width: 450px) {
    .header-block {
        width: 100%
    }
}
.header-block button {
    width: 151px;
    padding: 15px 0;
    background: #4fb41f;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px
}
@media(max-width: 590px) {
    .header-block button {
        width: 250px;
        line-height: 22px;
        letter-spacing: .2px
    }
}
@media(max-width: 450px) {
    .header-block button {
        width: 100%
    }
}
.header-block button:first-child {
    width: 82px;
    border: 2px solid #fff;
    background: rgba(0, 0, 0, 0)
}
@media(max-width: 590px) {
    .header-block button:first-child {
        width: 250px
    }
}
@media(max-width: 450px) {
    .header-block button:first-child {
        width: 100%
    }
}
.header-logo {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #fe5d9f;
}
.article {
    padding: 30px 0 100px
}
@media(max-width: 1300px) {
    .article {
        padding: 30px 15px 100px
    }
}
@media(max-width: 980px) {
    .article {
        padding: 30px 15px 50px
    }
}


.article ul {
    margin-left: 20px;
    list-style: disc;
    margin-bottom: 30px
}
.article ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px
}
.article ol {
    margin: 30px 0 30px 40px;
}
.article ol li {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px
}
.article p {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px
}
.article p a {
    color: #4fb41f;
    text-decoration: underline
}
.article img {
    max-width: 100%;
    border-radius: 30px;
    display: block;
    margin: 0 auto
}
.article picture+p {
    margin-top: 30px
}
.article h2 {
    margin: 40px 0;
    color: #fe5d9f;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px
}
@media(max-width: 590px) {
    .article h2 {
        font-weight: 700;
        font-size: 30px;
        line-height: 40px
    }
}
.article h3 {
    margin: 30px 0;
    color: #fe5d9f;
    font-weight: 500;
    font-size: 28px;
    line-height: 34px
}
@media(max-width: 590px) {
    .article h3 {
        font-weight: 700
    }
}
.article .table {
    display: flex;
    flex-direction: column;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 50px 0
}

.article tbody tr {
    display: grid;
    grid-template: auto/repeat(4, 1fr);
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #fff
}
.article tbody tr:last-child {
    border-bottom: 1px solid #fff
}
@media(max-width: 768px) {
    .article tbody tr {
        padding: 0
    }
}
.article tbody td {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    text-align: center
}
.article tbody td:first-child {
    text-align: left;
    padding-left: 18px
}
@media(max-width: 768px) {
    .article tbody td:first-child {
        padding-left: 0
    }
}
.article tbody td:last-child {
    text-align: right;
    padding-right: 12px
}
@media(max-width: 768px) {
    .article tbody td:last-child {
        padding-right: 0
    }
}
@media(max-width: 768px) {
    .article tbody td {
        line-height: 20px;
        padding: 0
    }
}
@media(max-width: 590px) {
    .article tbody td {
        font-size: 13px
    }
}
@media(max-width: 390px) {
    .article tbody td {
        font-size: 12px
    }
}
@media(max-width: 768px) {
    .article .table-1 tbody tr {
        grid-template: auto/repeat(2, 1fr)
    }
    .article .table-1 tbody tr td:nth-child(odd) {
        text-align: left;
        padding: 20px 0 20px 0
    }
    .article .table-1 tbody tr td:nth-child(even) {
        text-align: right;
        padding: 20px 0 20px 0
    }
}
.article .table-2 tr {
    grid-template: auto/repeat(3, 1fr)
}
@media(max-width: 768px) {
    .article .table-2 tr {
        grid-template-rows: auto;
        grid-template-columns: repeat(4, 1fr);
        padding: 20px 0
    }
}
@media(max-width: 768px) {
    .article .table-2 tr td {
        grid-column: 2/4;
        grid-row: 3/-3
    }
    .article .table-2 tr td:first-child {
        grid-column: 1/2;
        grid-row: 1/3
    }
    .article .table-2 tr td:last-child {
        grid-column: 4/5
    }
}
.article .table-3 {
    grid-template: auto/repeat(2, 1fr)
}
.article .table-3 td:last-child, th:last-child {
    grid-column: 4/5
}
@media(max-width: 768px) {
    .article .table-3 tr {
        padding: 20px 0
    }
}
.hero {
    padding: 30px 0
}
.hero h1 {
    margin: 30px auto;
    font-weight: 700;
    font-size: 44px;
    line-height: 64px;
    text-align: center;
    color: #fe5d9f;
    max-width: 740px
}
@media(max-width: 590px) {
    .hero h1 {
        font-weight: 600;
        font-size: 32px;
        line-height: 50px;
        word-wrap: break-word;
    }
}
@media(max-width: 1240px) {
    .hero {
        padding: 30px 15px
    }
}
@media(max-width: 590px) {
    .hero {
        padding: 0 15px;
        background: #374151
    }
}
.footer {
    background: #374151;
    text-align: center;
    padding: 36px 0
}
.footer p {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px
}
@media(max-width: 590px) {
    .footer p {
        letter-spacing: .01em
    }
}
.achivements {
    padding: 80px 0
}
.achivements.container {
    max-width: 800px;
    margin: 0 auto
}
.achivements ul {
    display: flex;
    justify-content: space-between;
    text-align: center;
    border-width: 1px solid #374151;
    font-family: var(--ff-inter)
}
@media(max-width: 450px) {
    .achivements ul {
        padding: 32px 0;
        flex-direction: column;
        align-items: center;
        gap: 30px
    }
}
.achivements ul li {
    font-weight: 800;
    font-size: 30px;
    line-height: 38px;
    color: #4fb41f
}
.achivements ul li span {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    display: block;
    color: #9ca3af
}
@media(max-width: 1000px) {
    .achivements {
        padding: 49px 15px
    }
}
@media(max-width: 450px) {
    .achivements {
        padding: 0;
        display: none
    }
}
/*# sourceMappingURL=main.min.css.map */