body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    color: rgb(36, 41, 47);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

a {
    color: rgb(27, 158, 255);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    margin: 0 0 42px;
    font-size: 26px;
    font-weight: 600;
    color: #0d0041;
}

h2 {
    margin: 0 0 60px;
    font-size: 60px;
    font-weight: 700;
    color: #0d0041;
}

h3 {
    margin: 0 0 24px;
    font-size: 40px;
    font-weight: 700;
    color: #0d0041;
}

p {
    margin: 0 auto 16px;
    max-width: 960px;
    font-size: 22px;
    line-height: 1.6;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(20, 34, 180, 0.1);
}

.banner img {
    margin-right: 32px;
}

.wrapper {
    max-width: 1032px;
    margin: 0 auto;
    padding: 0 16px;
}

.background {
    position: absolute;
    overflow: hidden;
    top: 130px;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0.5;
}

.background img {
    width: 100%;
}

header {
    margin: 70px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    display: inline-flex;
    margin-bottom: 12px;
}

.button {
    display: inline-block;
    padding: 20px 60px;
    background: #3f72f5;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.button:hover {
    text-decoration: none;
}

.button.-secondary {
    background: none;
    color: #3f72f5;
    border: 2px solid #3f72f5;
}

.buttons {
    display: flex;
}

.buttons .buttonImage {
    display: inline-flex;
    margin: 0 18px;
}

.buttons .buttonImage:first-child {
    margin-left: 0;
}

.buttons .buttonImage:last-child {
    margin-right: 0;
}

.hint {
    margin-bottom: 24px;
    color: rgba(38, 36, 53, 0.5);
    font-size: 20px;
}

.requirements {
    margin-top: 16px;
    font-size: 14px;
}

.download {
    display: inline-block;
    text-align: center;
}

.images {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.images img {
    max-width: 50%;
}

section {
    margin: 140px 0;
    text-align: center;
}

section img {
    max-width: 100%;
    height: auto;
    margin: 14px 0 30px 0;
}

.connections {
    display: flex;
    justify-content: space-between;
}

.connections > div {
    margin-top: 120px;
    max-width: 534px;
    display: flex;
    flex-direction: column;
    text-align: start;
}

.tabs {
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
    border-bottom: 3px solid rgba(120, 117, 147, 0.5);
}

.tabs button {
    margin: 28px;
    padding: 28px;
    cursor: pointer;
    border: none;
    background: none;
    color: rgba(13, 0, 65, 0.5);
    font-family: Outfit, sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.tabs button.-active {
    color: rgba(13, 0, 65, 1);
}

.promotion {
    position: relative;
    padding: 110px 45% 120px 68px;
    min-height: 420px;
    background: linear-gradient(68.48deg, #eae4ee 23.2%, #efefff 106.76%);
    border-radius: 50px;
    overflow: hidden;
}

.promotion h2 {
    font-size: 46px;
    margin-bottom: 24px;
}

.promotion img {
    position: absolute;
    left: 55%;
    top: 30px;
}

footer {
    padding: 40px 0;
    text-align: center;
    font-size: 16px;
}

@media all and (max-width: 768px) {
    h1 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    h2 {
        margin-bottom: 42px;
        font-size: 38px;
    }

    h3 {
        margin-bottom: 16px;
        font-size: 24px;
    }

    p {
        font-size: 18px;
    }

    .banner {
        font-size: 14px;
    }

    .banner img {
        display: none;
    }

    header {
        margin: 40px 0;
    }

    .button {
        display: block;
    }

    section {
        margin: 80px 0;
    }

    .tabs {
        display: none;
    }

    .promotion {
        display: none;
    }

    .connections {
        flex-direction: column;
        align-items: center;
    }

    .connections > div {
        text-align: center;
        margin: 0;
    }
}
