@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* varibles */

:root {
    --color-white: #fff;
    --color-black: #000000;
    --color-pink: #D4088C;
    --color-grey: #22242F;
    --color-d-blue: #16181F;
    --color-d-grey: #16181F;
    --color-purple: #33006A;
    --color-green: #B6FF1C;
    --color-blue: #0D6DFA;
    --color-violet: #854d0e;


    --bg-grey: #22242F;
    --bg-d-grey: #16181F;
    --bg-pink: #D4088C;
    --bg-black: #21252A;
    --bg-d-blue: #16181F;
    --bg-black: #000000;
    --bg-purple: #33006A;
    --bg-green: #B6FF1C;
    --bg-blue: #0D6DFA;
    --bg-violet: #854d0e;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.btn {
    border: none;
    background: transparent;
    cursor: pointer;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    background: var(--bg-d-grey);
    min-width: 320px;
}

.skroll {
    overflow-y: hidden;
}


.container {
    max-width: 1240px;
    margin: 0 auto;
}

/* .header {
    height: 64px;
} */


.header-content {
    padding: 10px 10px;
    background-color: #0000009c;
}

/* .header-content {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    padding: 10px 10px;
    background: var(--color-black);
} */

.burger {
    display: none;
}

.header__wrapper {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: center;
}


.menu-list {
    display: flex;
    gap: 30px;

}

.menu-list li,
.menu-list li a {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}


.header-block {
    display: flex;
    gap: 20px;
}

.header-btn {
    background: var(--color-black);
    border-radius: 100px;
    padding: 10px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    border: 2px solid #fff;
}

.btn-one {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.header-btn:first-child {
    width: 90px;
}

.header-btn:last-child {
    width: 160px;
}

.promo {
    background-image: url(../img/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    clip-path: polygon(0 0, 100% 0%, 100% 75%, 0% 100%);

}

.hero__wrapper {
    padding: 30px 0 100px 0;
}

.hero-img {
    display: flex;
    justify-content: center;
}

.hero h1 {
    max-width: 1240px;
    margin: 50px auto;
}

.hero-list li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    color: var(--color-white);
}

article a {
    color: var(--color-violet);
}

h1 {
    font-weight: 700;
    font-size: 44px;
    line-height: 64px;
    text-align: center;
    color: var(--color-white);
    word-wrap: break-word;
    margin: 50px 0;

}

h2 {
    font-weight: 600;
    font-size: 44px;
    line-height: 54px;
    text-align: center;
    color: var(--color-violet);
    margin: 40px 0;
}

h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: var(--color-violet);
    margin: 40px 0;
}

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: var(--color-white);
    text-indent: 20px;
    margin-bottom: 20px;
}

.content ul {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: var(--color-white);
    margin: 20px 0 20px 40px;
    list-style-type: none;
}

.content ul li::before {
    content: "\2022";
    color: var(--bg-violet);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.content ol {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: var(--color-white);
    margin: 20px 0 20px 40px;
    list-style-type: none;
    counter-reset: li;
}

.content ol li {
    counter-increment: li;
}

.content ol li::before {
    content: counter(li);
    color: var(--bg-violet);
    display: inline-block;
    width: 1em;
    margin-left: -1.5em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
}


.content img {
    display: block;
    margin: 30px auto;
}

/* table */

table {
    width: 100%;
    margin: 50px 0;
}

table tbody {
    display: flex;
    flex-direction: column;
    border-collapse: collapse;
    width: 100%;
}

.rou {
    display: grid;
    gap: 30px;
    align-items: center;
}

.four-colums {
    grid-template: auto/repeat(4, 1fr);
    color: var(--color-white);
    padding: 20px;
    border-top: 1px solid var(--color-violet);
}

.four-colums:last-child {
    border-bottom: 1px solid var(--color-violet);
}

.three-colums {
    grid-template: auto/repeat(3, 1fr);
    color: var(--color-white);
    padding: 20px;
    border-top: 1px solid var(--color-violet);
    text-align: center;
}

.two-colums {
    grid-template: auto/repeat(2, 1fr);
    color: var(--color-white);
    padding: 20px;
    border-top: 1px solid var(--color-violet);
    text-align: center;
}

.three-colums:last-child {
    border-bottom: 1px solid var(--color-violet);
}

.two-colums:last-child {
    border-bottom: 1px solid var(--color-violet);
}

.number {
    justify-self: center;
}

.textEnd {
    justify-self: flex-end;
    text-align: right;
}


.top-numbers {
    background: var(--bg-grey);
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 50px 0;
}

.top-numbers-block {
    width: 350px;
    padding: 20px;
    border: 1px solid var(--color-violet);
    border-radius: 30px;

}

.top-numbers-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 68px;
}


.top-number {
    position: absolute;
    left: -18px;
    top: -50px;
    font-weight: 700;
    font-size: 128px;
    line-height: 160%;
    color: var(--color-violet);
}

.one {
    left: 0;
}

.top-number-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    color: var(--color-white);
}

.top-number-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: var(--color-white);
}



/*  footer */

footer {
    max-width: 1330px;
    margin: 0 auto;
    padding: 20px 10px;
    display: flex;
    justify-content: center;

}

.footer_copyright {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-white);
    margin-bottom: 0;
    text-indent: 0;
    text-align: center;
}

.btn-up {
    width: 70px;
    height: 70px;
    position: fixed;
    right: 10px;
    bottom: 100px;
    z-index: 2;
    background: url(../img/arrow-up.svg) no-repeat center;
    border: 1px solid #fff;
    border-radius: 50%;
}

@media(max-width:1250px) {

    .container,
    .header__wrapper {
        padding: 0 10px;
    }

    .hero__wrapper {
        padding: 30px 0 100px 0;
    }

    /* .hero {
        padding: 30px 14px;
    } */

}

@media(max-width:1200px) {

    .content {
        padding: 0 14px;

    }

    .hero-list li a {
        color: var(--color-white);
    }

}

@media(max-width:850px) {

    .menu {
        position: absolute;
        z-index: 3;
        background: var(--bg-black);
        left: -100%;
        right: 100%;
        top: 0;
        bottom: 0;
        height: 100vh;
        padding: 170px 30px 30px 30px;
        overflow-x: hidden;
        transition: 0.4s linear;
    }

    .menu.open {
        left: 0;
        right: 30%;
    }

    .menu-list {
        flex-direction: column;
        gap: 50px;
    }

    .menu-list li,
    .menu-list li a {
        color: var(--color-violet);
    }

    .burger {
        display: block;
        width: 30px;
        height: 30px;
        background-image: url(../img/burger_white.png);
        background-repeat: no-repeat;
        background-position: top center;
        position: relative;
        z-index: 4;
        transition: 0.3s linear;
    }


    .burger.active {
        background-image: url(../img/close.png);
        background-position: center;
    }

    .promo {
        background-image: none;
        clip-path: none;
    }

    .hero__wrapper {
        padding: 30px 14px 0px 14px;
    }

    .header-btn {
        background: var(--color-white);
        border-radius: 100px;
        padding: 10px 0;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: var(--color-black);
    }

    .btn-one {
        background: transparent;
        border: 1px solid var(--color-white);
        color: var(--color-white);
    }

    h1 {
        font-size: 45px;
        line-height: 65px;

    }

}

@media(max-width:768px) {

    .hero h1 {
        margin: 30px 0;
    }

    h1 {
        font-size: 32px;
        line-height: 50px;
    }

    h2 {
        font-size: 30px;
        line-height: 36px;
        margin: 30px 0;
    }

    h3 {
        font-size: 28px;
        line-height: 36px;
        margin: 30px 0;
    }

}

@media(max-width:590px) {

    .content {
        padding: 0 14px;
    }

    .four-colums {
        padding: 20px 0 0;
        grid-template: min-content 1px min-content/repeat(2, 1fr);
        gap: 40px 0;
    }

    .four-colums .tx-right {
        justify-self: right;
    }

    .four-colums .tx-left {
        justify-self: left;
    }

    .three-colums {
        padding: 20px 0;
    }

    .two-colums {
        padding: 20px 0;
    }

    footer {
        padding: 40px 10px;
    }

}


@media(max-width:450px) {

    /* .header {
        height: 264px;
    } */

    .header-content {
        padding: 30px 10px;
    }

    .burger {
        position: absolute;
        left: 30px;
    }

    .header__wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .header-block {
        flex-direction: column;
        align-items: center;
    }

    .header-btn:first-child {
        width: 250px;
    }

    .header-btn:last-child {
        width: 250px;
    }

    .content {
        padding: 0 14px;
    }

    table {
        font-size: 14px;
        line-height: 20px;
    }
}

@media(max-width:380px) {
    .content {
        padding: 0 9px;

    }

    table {
        font-size: 12px;
        line-height: 20px;
    }
}