* {
    box-sizing: border-box;
}

html,
body,
h1,
h2,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    width: inherit;
}

html,
body {
    height: 100%;
    min-height: 100%;
    background-color: #1e2345;
    color: #ffffff;
    font-family: "Segoe UI", "Cantarell", "Ubuntu", "Arial", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    font-size: 14px;
}

header {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(180deg, #404765 0%, rgba(64, 71, 101, 0) 100%),
    linear-gradient(0deg, #404765, #404765);
    padding: 8px 16px;
}

header .logo {
    background-image: url(../assets/logo.png);
    background-size: 100% auto;
    width: 192px;
    height: 40px;
    background-repeat: no-repeat;
}

header .buttons {
    display: flex;
    gap: 8px;
}

header .buttons .button {
    padding: 12px 16px;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    height: 40px;
    text-align: center;
}

header .buttons .button.outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

header .buttons .button.primary {
    border: 1px solid rgba(17, 65, 255, 1);
    background: rgba(17, 65, 255, 1);
    border-radius: 4px;
}

main .banner-wrap {
    background-image: url('../assets/banner.jpg');
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 108px 16px;
}

main .banner {
    width: 1224px;
    margin: 0 auto;
}

main .banner .content .tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 10px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: fit-content;
    letter-spacing: 0.15em;
    border-radius: 4px;
    margin-bottom: 6px;
}

main .banner .content .title {
    font-family: Poppins;
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

main .banner .content .title-plus {
    color: #FCD62E;
}

main .banner .content .button {
    padding: 16px;
    background: #1141FF;
    border-radius: 8px;
    font-family: Poppins;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    width: fit-content;
    margin: 16px 0 134px;
    text-align: center;
}

main .banner .steps {
    display: flex;
    gap: 16px;
    justify-content: start;
}

main .banner .steps .step {
    display: flex;
    width: 397.33px;
    align-items: center;
    padding: 32px;
    background: rgba(36, 42, 63, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    gap: 16px;
    font-family: Segoe UI;
    font-weight: normal;
    color: #FFFFFF;
}

main .banner .steps .step .ico {
    background-image: url('../assets/step1.png');
    width: 120px;
    height: 119px;
    background-size: 100%;
    background-repeat: no-repeat;
    align-self: center;
}

main .banner .steps .step.step-2 .ico {
    background-image: url('../assets/step2.png');
    width: 112px;
    height: 98px;
}

main .banner .steps .step.step-3 .ico {
    background-image: url('../assets/step3.png');
    width: 110px;
    height: 108px;
}

main .banner .steps .step .number {
    padding: 4px 8px;
    background: #5958E8;
    border-radius: 12px;
    width: fit-content;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

main .banner .steps .step.step-2 .number {
    background: #04D2AC;
}

main .banner .steps .step.step-3 .number {
    background: #FF7A00;
}

main .banner .steps .step .title {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
}

main .banner .steps .step .description {
    font-size: 16px;
    line-height: 20px;
}

main .offers-wrap {
    background: #242A3F;
    padding: 16px 108px;
}

main .offers {
    color: #FFFFFF;
    width: 1224px;
    margin: 0 auto;
}

main .offers .title {
    text-align: center;
    font-family: Poppins;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

main .offers .title a {
    color: #0379E8;
}

main .offers .cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

main .offers .cards .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 16px;
    background: #2B3148;
    border-radius: 8px;
    gap: 16px;
}

main .offers .cards .card .image {
    background-image: url('../assets/card1.png');
    background-size: 100%;
    background-repeat: no-repeat;
    width: 294px;
    height: 144px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

main .offers .cards .card.card-2 .image {
    background-image: url('../assets/card2.png');
}

main .offers .cards .card.card-3 .image {
    background-image: url('../assets/card3.png');
}

main .offers .cards .card.card-4 .image {
    background-image: url('../assets/card4.png');
}

main .offers .cards .card .text {
    font-family: Segoe UI;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

main .offers .cards .card .button {
    padding: 16px;
    background: #1141FF;
    border-radius: 4px;
    width: 88%;
    font-family: Segoe UI;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}

main .offers .info p {
    font-family: Segoe UI;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    opacity: 0.5;
}

main .offers .info p.highlight {
    opacity: 1;
    font-weight: bold;
}

main .offers .info p.little {
    font-size: 12px;
    line-height: 16px;
}

main .offers .info .items {
    display: flex;
    gap: 16px;
    margin: 16px 0;
}

main .offers .info .items .item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-family: Segoe UI;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    flex-basis: 50%;
}

main .offers .info .info-button {
    padding: 16px;
    background: linear-gradient(0deg, #1141FF, #1141FF), #FFFFFF;
    border-radius: 8px;
    font-family: Poppins;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin: 16px 0;
}

footer {
    display: flex;
    justify-content: space-between;
    background: #2B3148;
    padding: 24px 104px;
}

footer .logo {
    background-image: url(../assets/logo.png);
    background-size: 100% auto;
    width: 152px;
    height: 32px;
    background-repeat: no-repeat;
    align-items: center;
}

footer .copyright {
    align-items: center;
    display: flex;
    gap: 8px;
    font-family: Segoe UI;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    opacity: 0.5;
}

footer .copyright .ico {
    background-image: url(../assets/legal.png);
    background-size: 100%;
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 1439px) {
    header .logo {
        background-image: url(../assets/minilogo.png);
        width: 32px;
        height: 32px;
    }

    header .buttons .button {
        padding: 8px 16px;
        height: 32px;
    }

    main .banner-wrap {
        background: none;
        padding: 0;
    }

    main .banner {
        width: 100%;
    }

    main .banner .content {
        background-image: url('../assets/minibanner.jpg');
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 26px 14px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-position-y: 70%;
    }

    main .banner .content .tag {
        font-size: 12px;
        line-height: 6px;
    }

    main .banner .content .title {
        font-size: 24px;
        line-height: 130%;
        letter-spacing: -0.01em;
        color: #FFFFFF;
        text-shadow: 0px 0.445619px 0.891239px rgba(0, 0, 0, 0.3);
    }

    main .banner .content .button {
        width: 100%;
        margin: 162px 0 0;
        font-size: 18px;
        line-height: 21px;
        padding: 14px;
    }

    main .banner .steps {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        background: rgba(36, 42, 63, 1);
    }

    main .banner .steps .step {
        width: 100%;
        padding: 10px 26px;
        background: rgba(43, 49, 72, 0.8);
    }

    main .banner .steps .step .ico-wrap {
        width: 82.13px;
    }

    main .banner .steps .step.step-1 .ico {
        width: 82.13px;
        height: 75.87px;
    }

    main .banner .steps .step.step-2 .ico {
        width: 69px;
        height: 60px;
    }

    main .banner .steps .step.step-3 .ico {
        width: 82.13px;
        height: 80.87px;
    }

    main .banner .steps .step .number {
        padding: 2px 6px;
        font-size: 8px;
        line-height: 14px;
        margin-bottom: 4px;
    }

    main .banner .steps .step .title {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 6px;
    }

    main .banner .steps .step .description {
        font-size: 12px;
        line-height: 20px;
    }

    main .offers-wrap {
        padding: 12px;
    }

    main .offers {
        width: 100%;
    }

    main .offers .title {
        font-size: 18px;
        line-height: 130%;
        margin-bottom: 12px;
    }

    main .offers .cards {
        gap: 12px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

    main .offers .cards .card .image {
        width: 169px;
        height: 90px;
    }

    main .offers .cards .card .text {
        font-size: 10px;
        line-height: 130%;
    }

    main .offers .cards .card .button {
        font-size: 10px;
        line-height: 32px;
        padding: 0;
    }

    main .offers .info p {
        font-size: 14px;
        line-height: 18px;
    }

    main .offers .info .items {
        display: flex;
        gap: 16px;
    }

    main .offers .info .items .item {
        padding: 16px;
        font-size: 14px;
        line-height: 18px;
    }

    main .offers .info .info-button {
        font-size: 14px;
        line-height: 24px;
    }

    footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 16px;
        gap: 12px;
    }
}

@media screen and (min-width: 768px) {
    main .banner .steps .step {
        justify-content: center;
    }
}

@media screen and (min-width: 1400px) {
    main .banner .steps .step {
        justify-content: start;
    }
}
