html {
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
}

body * {
    box-sizing: border-box;
}

body{
    background: #15161B;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", sans-serif;
}

::-webkit-scrollbar-track
{
    border-radius: 8px;
    background-color: #15161B;
}

::-webkit-scrollbar
{
    width: 10px;
    height: 5px;
    background-color: #15161B;
}

::-webkit-scrollbar-thumb
{
    border-radius: 8px;
    background-color: #03FC9E;
}

body.lock{
    overflow-y: hidden;
}

* img {
    pointer-events: none;
    user-select: none;
}

*,*::before, *::after{
    box-sizing: inherit;
}


a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
}

ul,
li{
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    font-size: inherit;
}

.global__wrapper {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1262px;
    padding: 0 24px;
    margin: 0 auto;
}

.global__title {
    color: #FFF;
    font-size: 43px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
}

.global__title span {
    display: inline-block;
    position: relative;
}

.global__title span:before {
    content: "";
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    left: 1px;
    width: 98%;
    height: 69%;
    background-color: #03FC9E;
    z-index: 1;
}

.global__title span div {
    font-weight: 700;
    color: #15161B;
    position: relative;
    z-index: 2;
}

.global__description {
    color: #A4A5A6;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.global__description + .global__description {
    margin-top: 13px;
}

.global__link {
    display: inline-flex;
    height: 57px;
    padding: 19px 50px 20px 50px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50px;
    background-color: #03FC9E;
    color: #02130D;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 500px) {
    .global__title {
        font-size: 35px;
        line-height: 43px;
    }

    .global__link {
        height: 45px;
    }
}