:root {
    --color-main: #1A1A1A;
    --color-white: #FFFFFF;
    --color-grey: #B7B7B7;
    --bg-grey: #F2EFEF;
    --bg-violet: #AB8DFF;
    --font-n: "Noto Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;

}

body {
    margin: 0;
    color: var(--color-main);
    font-family: "Rubik", sans-serif;
}

main {
    display: block;
}

a,
a:hover {
    text-decoration: none;
}

a {
    transition: .23s;
}

html, body, #page {
    height: 100%;
}


.btn__text {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: var(--color-main);
    padding: 0 20px;
}

.btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    border-radius: 40px;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.15);
    background: linear-gradient(90deg, #660eff 0%, #ab8dff 50%);
    padding: 0 26px 0 50px;
    min-width: 260px;
    position: relative;
}

.btn-main:hover {
    padding: 0 50px 0 26px;
    background: linear-gradient(90deg, #af09f4 -13.09%, #e85097 70.86%);
}

.btn__arrow:last-child {
    left: 32px;
}

.btn__arrow:first-child {
    right: 32px;
}

.btn__arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, calc(-50% + 2px));
}

.btn-main svg {
    width: 24px;
    height: 14px;
}

.btn-main .btn__arrow {
    scale: 1;
    opacity: 1;
}

.btn-main:hover .btn__arrow:first-child {
    scale: 1;
    opacity: 1;
}

.btn-main:hover .btn__arrow:last-child {
    scale: 0;
    opacity: 0;
}

.btn-main .btn__arrow:first-child {
    scale: 0;
    opacity: 0;
}

.btn-main,
.btn__arrow {
    transition: .23s;
}

.container {
    max-width: 1920px;
    width: 100%;
    padding: 0 80px;
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.meta--center {
    text-align: center;
}

.section-meta .title-section {
    margin: 0 0 15px;
}

.section-meta {
    margin: 0 0 40px;
}

.title-section {
    font-weight: 800;
    font-size: 40px;
    line-height: 125%;
}

.title-small {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

.desc-section {
    font-weight: 400;
    font-size: 18px;
}

.text {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

.text strong {
    font-weight: 700;
}

h1.page-title {
    font-weight: 800;
    font-size: 40px;
    line-height: 125%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media screen and (max-width:1600px) {
    .container {
        padding: 0 60px;
    }

}

@media screen and (max-width: 1366px) {
    h1.page-title {
        font-size: 36px;
    }

    .container {
        padding: 0 30px;
    }

}


@media screen and (max-width: 1199px) {
    .container {
        padding: 0 20px;
    }

    h1.page-title {
        font-size: 24px;
    }

    .text {
        font-size: 16px;
    }

    .btn__text {
        font-size: 18px;
    }

    .section {
        padding: 40px 0;
    }
    .title-section {
        font-size: 24px;
    }
    .section-meta {
        margin: 0 0 24px;
    }
}