:root {
    --bs-success-rgb: 40, 199, 111;
    --bs-danger-rgb: 234, 84, 85;
    --bs-white-rgb: 255, 255, 255;
    --bs-body-color: #6e6b7b;
    --bs-body-bg: #f8f8f8;
}

body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background: #0b0e1d;
}

p,
h1,
h2,
h3,
h4 {
    margin: 0;
}

h1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 78px;
}

@media (max-width: 1024px) {
    h1 {
        font-weight: 700;
        font-size: 48px;
        line-height: 59px;
    }
}

@media (max-width: 823px) {
    h1 {
        font-weight: 700;
        font-size: 21px;
        line-height: 26px;
    }
}

@media (max-width: 411px) {
    h1 {
        text-align: center;
    }
}

h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 59px;
}

@media (max-width: 1024px) {
    h2 {
        font-weight: 700;
        font-size: 40px;
        line-height: 49px;
    }
}

@media (max-width: 667px) {
    h2 {
        font-weight: 700;
        font-size: 21px;
        line-height: 26px;
    }
}

h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
}

h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}

@media (max-width: 1024px) {
    h4 {
        font-weight: 600;
        font-size: 21px;
        line-height: 26px;
    }
}

@media (max-width: 667px) {
    h4 {
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
    }
}

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

@media (max-width: 1024px) {
    p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 667px) {
    p {
        font-weight: 400;
        font-size: 15px;
        line-height: 21px;
    }
}

.text-grey {
    color: #b4badd;
}

.text-info {
    color: #00cfe8;
}

.text-success {
    color: #28c76f;
}

.title {
    font-weight: 700;
    font-size: 48px;
    line-height: 59px;
    text-align: center;
}

@media (max-width: 1024px) {
    .title {
        font-weight: 700;
        font-size: 40px;
        line-height: 49px;
    }
}

@media (max-width: 823px) {
    .title {
        font-weight: 700;
        font-size: 21px;
        line-height: 26px;
    }
}

.btn {
    display: flex;
    flex-direction: row;
    padding: 10px 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid transparent;
    color: #2e4ce5;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        background 0s, border 0s;
}

.btn:hover {
    color: #2e4ce5;
}

.btn_icon {
    padding: 0;
}

.btn_icon .feather {
    width: 18px;
    height: 18px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.btn-close {
    box-sizing: content-box;
    width: 0.75rem;
    height: 0.75rem;
    padding: 0.25em 0.25em;
    color: currentColor;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb(0,0,0)'%3e%3cpath d=' M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center / 0.75rem auto no-repeat;
    border: 0;
    border-radius: 0.357rem;
    opacity: 1;
}

.modal .modal-header .btn-close {
    padding: 0.8rem;
    box-shadow: 0 5px 20px 0 rgba(34, 41, 47, 0.1);
    border-radius: 0.357rem;
    background-color: #fff;
    opacity: 1;
    transition: all 0.23s ease 0.1s;
    position: relative;
    transform: translate(18px, -10px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 0 solid rgba(34, 41, 47, 0.2);
    border-radius: 0.357rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #22292f;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.4rem;
    border-bottom: 0 solid #ebe9f1;
    border-top-left-radius: 0.357rem;
    border-top-right-radius: 0.357rem;
}

.modal-header .btn-close {
    padding: 0.4rem 0.7rem;
    margin: -0.4rem -0.7rem -0.4rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.45;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0.8rem 1.4rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.8rem 1.15rem;
    border-top: 1px solid rgba(34, 41, 47, 0.05);
    border-bottom-right-radius: 0.357rem;
    border-bottom-left-radius: 0.357rem;
}

.modal-footer>* {
    margin: 0.25rem;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 400px;
    }
}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 94%;
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-fullscreen .modal-header {
    border-radius: 0;
}

.modal-fullscreen .modal-body {
    overflow-y: auto;
}

.modal-fullscreen .modal-footer {
    border-radius: 0;
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 1439.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.857rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 1;
}

.tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[data-popper-placement^="top"] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
    bottom: 0;
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
    top: -1px;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #fff;
}

.bs-tooltip-end,
.bs-tooltip-auto[data-popper-placement^="right"] {
    padding: 0 0.4rem;
}

.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
    right: -1px;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #fff;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[data-popper-placement^="bottom"] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
    top: 0;
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #fff;
}

.bs-tooltip-start,
.bs-tooltip-auto[data-popper-placement^="left"] {
    padding: 0 0.4rem;
}

.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
    left: -1px;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #fff;
}

.tooltip-inner {
    max-width: 267px;
    color: #fff;
    text-align: left;
    background-color: #fff;
    padding: 10px;
    color: #5e5873;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    border-radius: 6px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.06),
        0px 1px 2px 0px rgba(16, 24, 40, 0.1),
        0px 1px 3px 0px rgba(16, 24, 40, 0.03);
}

.items {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto, 1fr));
    column-gap: 30px;
    margin-top: 70px;
}

@media (max-width: 1024px) {
    .items {
        margin-top: 50px;
    }
}

@media (max-width: 568px) {
    .items {
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

.header {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1440px) {
    .header {
        max-width: none;
        width: auto;
    }
}

@media (max-width: 568px) {
    .header {
        padding: 8px 20px;
    }
}

.header-block {
    display: flex;
    align-items: center;
}

@media (max-width: 667px) {
    .header-logo {
        max-width: 88px;
    }
}

.header-logo__mobile {
    display: none;
}

@media (max-width: 568px) {
    .header-logo {
        display: none;
    }

    .header-logo__mobile {
        display: block;
    }
}

.header-logo__text {
    min-width: 58px;
    width: min-content;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #05050d;
    padding: 4px 10px;
    background: linear-gradient(38.92deg,
            #e2e0e0 15.74%,
            #f8f8f8 50.33%,
            #e9edef 78.81%),
        linear-gradient(38.92deg,
            #e2e0e0 15.74%,
            #f8f8f8 50.33%,
            #e9edef 78.81%);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    margin-left: 15px;
}

@media (max-width: 667px) {
    .header-logo__text {
        font-weight: 400;
        font-size: 9px;
        line-height: 11px;
        padding: 3px 9px;
    }
}

@media (max-width: 568px) {
    .header-logo__text {
        display: none;
    }
}

.header-buttons {
    display: flex;
    align-items: center;
}

.language-switcher {
    position: relative;
}

.language-switcher__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: all 0.5s ease;
}

.language-switcher__trigger.active {
    background: #1e1e32;
    border-radius: 8px;
}

@media (max-width: 667px) {
    .language-switcher__trigger {
        padding: 8px 10px;
    }
}

.language-switcher__trigger img {
    width: 16px;
    height: 16px;
    transition: all 0.5s ease;
}

.header-button__language.active svg {
    transform: rotate(180deg);
}

.language-switcher__trigger svg {
    width: 18px;
    height: 18px;
    margin-left: 5px;
    fill: #a1a1b3;
    transition: all 0.5s ease;
}

.anguage-switcher__trigger:hover svg {
    fill: #516aed;
}

.language-switcher__list {
    width: 180px;
    position: absolute;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding: 5px 0 0;
    background: #1e1e32;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 3;
}

.language-switcher_header .language-switcher__list {
    top: 45px;
    right: 0;
}

.language-switcher_footer .language-switcher__list {
    bottom: 45px;
    left: 0;
}

@media (max-width: 1280px) {
    .language-switcher__list {
        max-height: 284px;
        overflow: auto;
    }
}

@media (max-width: 567px) {
    .language-switcher__list {
        right: auto;
        left: 0;
    }
}

.language-switcher__item {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 20px;
    margin-bottom: 5px;
    color: #ffffff;
    text-decoration: none;
}

button.language-switcher__item {
    border: 1px transparent;
    background: transparent;
    width: 100%;
}

.language-switcher__item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-switcher__item.active {
    background: #2e4ce6;
}

.language-switcher__item img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.header-button__login,
.footer-button__login {
    padding: 9px 23px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.4px;
    text-wrap: nowrap;
    color: #ffffff;
    margin-left: 15px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s ease;
}

@media (max-width: 667px) {

    .header-button__login,
    .footer-button__login {
        padding: 8px 10px;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        margin-left: 10px;
    }
}

.header-button__login:hover,
.footer-button__login:hover {
    border: 1px solid #516aed;
    color: #516aed;
}

.header-button__registration,
.footer-button__registration {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    padding: 10px 22px;
    background: #2e4ce5;
    border-radius: 5px;
    border: 0;
    letter-spacing: 0.4px;
    text-wrap: nowrap;
    color: #ffffff;
    cursor: pointer;
    margin-left: 15px;
    text-decoration: none;
    transition: all 0.5s ease;
}

@media (max-width: 667px) {

    .header-button__registration,
    .footer-button__registration {
        padding: 8px 10px;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        margin-left: 10px;
    }
}

.header-button__registration:hover,
.footer-button__registration:hover {
    background: #516aed;
}

.welcome-container {
    background-image: url("img/welcome/line.svg");
    background-repeat: repeat-x;
    background-position: 0 80%;
    overflow: hidden;
}

.welcome {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 100px 30px;
}

@media (max-width: 1440px) {
    .welcome {
        max-width: none;
        width: auto;
    }
}

@media (max-width: 1024px) {
    .welcome {
        padding: 70px 0 70px 20px;
    }
}

@media (max-width: 411px) {
    .welcome {
        padding: 40px 20px;
    }
}

.welcome-content {
    margin: auto 0;
}

.welcome-block {
    display: grid;
    grid-template-columns: 675px 1fr;
    column-gap: 30px;
}

@media (max-width: 1280px) {
    .welcome-block {
        grid-template-columns: 595px 1fr;
    }
}

@media (max-width: 1024px) {
    .welcome-block {
        grid-template-columns: 482px 1fr;
    }
}

@media (max-width: 823px) {
    .welcome-block {
        grid-template-columns: 384px 1fr;
        column-gap: 15px;
    }
}

@media (max-width: 411px) {
    .welcome-block {
        display: block;
    }
}

@media (max-width: 1440px) {
    .welcome-img__container {
        width: 100%;
        overflow: hidden;
    }
}

.welcome-img {
    width: 807px;
}

@media (max-width: 1280px) {
    .welcome-img {
        width: 713px;
    }
}

@media (max-width: 1024px) {
    .welcome-img {
        width: 662px;
    }
}

@media (max-width: 823px) {
    .welcome-img {
        width: 381px;
    }
}

@media (max-width: 411px) {
    .welcome-img {
        display: block;
        width: 292px;
        margin: 40px auto 0;
    }
}

.welcome-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin: 20px 0;
}

@media (max-width: 1024px) {
    .welcome-subtitle {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 411px) {
    .welcome-subtitle {
        text-align: center;
        font-weight: 400;
        font-size: 15px;
        line-height: 21px;
    }
}

.welcome-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 411px) {
    .welcome-buttons {
        justify-content: center;
    }
}

.welcome-button__partner {
    background: #2e4ce5;
    border-radius: 5px;
    padding: 15px 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.4px;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s ease;
}

@media (max-width: 823px) {
    .welcome-button__partner {
        padding: 10px;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
    }
}

.welcome-button__partner:hover {
    background: #516aed;
}

.welcome-button__more {
    padding: 15px 30px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.4px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s ease;
}

@media (max-width: 823px) {
    .welcome-button__more {
        padding: 10px;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
    }
}

.welcome-button__more:hover {
    color: #516aed;
    border: 1px solid #516aed;
}

.welcome-payment {
    margin-top: 100px;
}

@media (max-width: 823px) {
    .welcome-payment {
        margin-top: 40px;
    }
}

.welcome-payment__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

@media (max-width: 823px) {
    .welcome-payment__text {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 411px) {
    .welcome-payment__text {
        text-align: center;
        font-weight: 500;
        font-size: 11px;
        line-height: 16px;
    }
}

.welcome-payment__items {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

@media (max-width: 823px) {
    .welcome-payment__items {
        flex-wrap: wrap;
        column-gap: 50px;
        row-gap: 10px;
        margin-top: 20px;
    }
}

@media (max-width: 411px) {
    .welcome-payment__items {
        justify-content: center;
    }
}

.welcome-payment__items img {
    height: 44px;
    margin-right: 80px;
}

@media (max-width: 1024px) {
    .welcome-payment__items img {
        height: 32px;
    }
}

@media (max-width: 823px) {
    .welcome-payment__items img {
        height: 22px;
        margin: 0;
    }
}

.cause-container {
    width: 100%;
    background: #08080f;
}

.cause {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 30px;
}

@media (max-width: 1440px) {
    .cause {
        max-width: none;
        width: auto;
    }
}

@media (max-width: 1024px) {
    .cause {
        padding: 70px 20px;
    }
}

@media (max-width: 823px) {
    .cause {
        padding: 40px 20px;
    }
}

@media (max-width: 411px) {
    .cause {
        padding: 40px 20px 20px 20px;
    }
}

.cause-item {
    padding: 30px;
    background: linear-gradient(120.85deg, #2e4ce6 -1.23%, #2e82e6 100.12%),
        #2e4ce5;
    border-radius: 10px;
}

@media (max-width: 823px) {
    .cause-item {
        padding: 20px;
    }
}

@media (max-width: 700px) {
    .cause-item img {
        display: block;
        width: 100%;
    }
}

@media (max-width: 568px) {
    .cause-item {
        padding: 20px;
        display: flex;
        align-items: center;
    }

    .cause-item img {
        width: 93px;
        height: 80px;
        margin-left: auto;
    }
}

.cause-item__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 10px;
}

@media (max-width: 823px) {
    .cause-item__title {
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
    }
}

.cause-item__subtitle {
    margin-bottom: 50px;
}

@media (max-width: 823px) {
    .cause-item__subtitle {
        margin-bottom: 20px;
        font-weight: 400;
        font-size: 15px;
        line-height: 21px;
    }
}

@media (max-width: 568px) {
    .cause-item__subtitle {
        margin-bottom: 0;
    }
}

.cause-start {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
    margin-bottom: 40px;
}

@media (max-width: 823px) {
    .cause-start {
        margin: 40px 0 30px;
    }
}

@media (max-width: 411px) {
    .cause-start {
        display: block;
    }
}

.cause-start__title {
    max-width: 440px;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
}

@media (max-width: 823px) {
    .cause-start__title {
        max-width: 280px;
        font-weight: 700;
        font-size: 21px;
        line-height: 26px;
    }
}

@media (max-width: 411px) {
    .cause-start__title {
        margin-bottom: 20px;
    }
}

.cause-start__button {
    max-width: 182px;
    width: 100%;
    background: #0ba175;
    border-radius: 5px;
    padding: 15px 30px;
    border: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.4px;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s ease;
}

@media (max-width: 823px) {
    .cause-start__button {
        max-width: 100%;
        width: auto;
        padding: 10px;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
    }
}

.cause-start__button:hover {
    background: #1ebd8e;
}

.cause-dignity {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    margin-top: 40px;
}

@media (max-width: 568px) {
    .cause-dignity {
        display: block;
    }
}

.cause-dignity__item {
    display: flex;
    align-items: center;
}

@media (max-width: 823px) {
    .cause-dignity__item p {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 568px) {
    .cause-dignity__item {
        margin-bottom: 20px;
    }
}

.cause-dignity__item-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
}

@media (max-width: 823px) {
    .cause-dignity__item-icon {
        width: 38px;
        height: 38px;
    }
}

.earn-container {
    width: 100%;
    background: #08080f;
}

.earn {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 30px;
}

@media (max-width: 1440px) {
    .earn {
        max-width: none;
        width: auto;
    }
}

@media (max-width: 1024px) {
    .earn {
        padding: 70px 20px;
    }
}

@media (max-width: 667px) {
    .earn {
        padding: 40px 20px;
    }
}

.earn-item {
    background: #111529;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

@media (max-width: 667px) {
    .earn-item {
        padding: 16px;
    }
}

@media (max-width: 568px) {
    .earn-item {
        text-align: left;
        display: flex;
        align-items: center;
    }
}

.earn-item__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}

@media (max-width: 568px) {
    .earn-item__title {
        display: none;
    }
}

.earn-item__img {
    display: block;
    max-width: 280px;
    width: 100%;
    margin: 20px auto;
}

@media (max-width: 677px) {
    .earn-item__img {
        max-width: 140px;
    }
}

@media (max-width: 568px) {
    .earn-item__img {
        max-width: 100px;
        margin: 0 20px 0 0;
    }
}

.earn-item__title-mobile {
    display: none;
}

@media (max-width: 568px) {
    .earn-item__title-mobile {
        display: block;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
    }
}

.commission {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 30px;
    display: grid;
    grid-template-columns: 483px 675px;
    column-gap: 105px;
}

@media (max-width: 1440px) {
    .commission {
        max-width: none;
        width: auto;
    }
}

@media (max-width: 1280px) {
    .commission {
        grid-template-columns: 387px 1fr;
        column-gap: 90px;
    }
}

@media (max-width: 1024px) {
    .commission {
        grid-template-columns: 315px 1fr;
        column-gap: 65px;
        padding: 70px 20px;
    }
}

@media (max-width: 823px) {
    .commission {
        display: block;
    }
}

/* @media (max-width: 635px) {
    .commission {
        column-gap: 10px;
    }
} */

@media (max-width: 667px) {
    .commission {
        padding: 40px 20px;
    }
}

.commission-img {
    display: block;
    max-width: 387px;
}

@media (max-width: 1280px) {
    .commission-img {
        max-width: 315px;
    }
}

@media (max-width: 1024px) {
    .commission-img {
        max-width: 315px;
    }
}

@media (max-width: 823px) {
    .commission-img {
        display: none;
    }
}

.commission-img-mobile {
    display: none;
}

@media (max-width: 823px) {
    .commission-img-mobile {
        display: block;
        width: 100%;
        margin-bottom: 70px;
    }
}

.commission-img__container {
    position: relative;
    height: max-content;
}

.commission-img__text {
    max-width: 241px;
    width: 100%;
    position: absolute;
    bottom: -20px;
    right: -33px;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
    background: #111529;
    border-radius: 10px;
    z-index: 2;
}

@media (max-width: 823px) {
    .commission-img__text {
        max-width: 160px;
        bottom: -25px;
        right: 5px;
        padding: 10px 15px;
        font-weight: 700;
        font-size: 12px;
        line-height: 15px;
    }
}

.commission-img__text img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.commission-img__text-block {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -43px;
    width: 270px;
    height: 88px;
    background: #272d4a;
    border-radius: 10px;
    z-index: 1;
}

@media (max-width: 823px) {
    .commission-img__text-block {
        right: 0;
        width: 190px;
        height: 50px;
    }
}

.commission-block {
    width: 100%;
}

.commission-title {
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .commission-title {
        font-weight: 700;
        font-size: 40px;
        line-height: 49px;
    }
}

@media (max-width: 823px) {
    .commission-title {
        font-weight: 700;
        font-size: 21px;
        line-height: 26px;
    }
}

.commission-items {
    display: grid;
    grid-template-columns: repeat(3, 190px);
    column-gap: 40px;
    margin-top: 40px;
}

@media (max-width: 1280px) {
    .commission-items {
        grid-template-columns: repeat(3, minmax(auto, 180px));
        column-gap: 20px;
    }
}

@media (max-width: 1024px) {
    .commission-items {
        grid-template-columns: repeat(3, auto);
        column-gap: 12px;
    }
}

@media (max-width: 823px) {
    .commission-items {
        grid-template-columns: repeat(3, auto);
        column-gap: 20px;
    }
}

@media (max-width: 411px) {
    .commission-items {
        grid-template-columns: 1fr;
        column-gap: 16px;
        row-gap: 16px;
    }
}

.commission-item {
    padding: 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    text-align: center;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .commission-item {
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;
    }
}

@media (max-width: 823px) {
    .commission-item {
        padding: 20px;
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 411px) {
    .commission-item {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
    }
}

.commission-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 30px;
}

@media (max-width: 568px) {
    .commission-item img {
        margin-bottom: 20px;
    }
}

@media (max-width: 411px) {
    .commission-item img {
        margin-bottom: 0;
    }

    .commission-item__text-block {
        text-align: left;
    }
}

.commission-item__blue {
    background: linear-gradient(120.85deg, #2e4ce6 -1.23%, #2e82e6 100.12%),
        #2e4ce5;
}

.commission-item__yellow {
    background: linear-gradient(121deg, #dea629 -1.23%, #fcd672 100.12%),
        #1ca85a;
}

.commission-item__green {
    background: linear-gradient(120.85deg, #00835c -1.23%, #0cad7e 100.12%),
        #1ca85a;
}

.commission-item__text {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .commission-item__text {
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 823px) {
    .commission-item__text {
        font-weight: 700;
        font-size: 12px;
        line-height: 15px;
    }
}

.best-partners {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 30px;
}

@media (max-width: 1440px) {
    .best-partners {
        max-width: none;
        width: auto;
    }
}

@media (max-width: 1280px) {
    .best-partners {
        padding: 100px 30px 0 30px;
    }
}

@media (max-width: 1024px) {
    .best-partners {
        padding: 70px 20px 0 20px;
    }
}

@media (max-width: 667px) {
    .best-partners {
        padding: 40px 20px 0;
    }
}

.best-partners__title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.best-partners__title h2 {
    margin: 0 15px;
}

@media (max-width: 568px) {
    .best-partners__title-img {
        width: 18px;
        height: 30px;
    }
}

.best-partners__text {
    text-align: center;
    margin: 20px 0;
}

@media (max-width: 568px) {
    .best-partners__text {
        font-weight: 400;
        font-size: 15px;
        line-height: 21px;
    }
}

.best-partners__button {
    display: block;
    width: max-content;
    white-space: nowrap;
    margin: 0 auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.4px;
    color: #ffffff;
    padding: 15px 30px;
    background: #2e4ce5;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s ease;
}

@media (max-width: 667px) {
    .best-partners__button {
        padding: 10px;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
    }
}

.best-partners__button:hover {
    background: #516aed;
}

.best-partners__container {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);*/
    column-gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1280px) {
    .best-partners__container {
        /*grid-template-columns: repeat(1, 1fr);*/
    }
}

.best-partners__members {
    display: block;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 1280px) {
    .best-partners__members {
        display: none;
    }
}

.best-partners__table {
    margin: auto 0;
}

@media (max-width: 568px) {
    .best-partners__table {
        display: none;
    }
}

.best-partners__table-header {
    display: grid;
    grid-template-columns: 19px 180px repeat(3, 1fr);
    column-gap: 30px;
    padding: 0 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #b4badd;
    margin-top: 20px;
}

@media (max-width: 620px) {
    .best-partners__table-header {
        grid-template-columns: 19px 120px repeat(3, 1fr);
    }
}

@media (max-width: 568px) {
    .best-partners__table-header {
        display: none;
    }
}

.best-partners__table-item {
    display: grid;
    grid-template-columns: 19px 180px repeat(3, 1fr);
    column-gap: 30px;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    background: #111529;
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
}

.best-partners__table-item__name {
    display: flex;
    align-items: center;
}

@media (max-width: 568px) {
    .best-partners__table-item__name {
        font-weight: 400;
        font-size: 15px;
        line-height: 18px;
    }
}

.best-partners__table-item__name img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.best-partners__table-mobile__item {
    display: none;
    background: #111529;
    border-radius: 10px;
    padding: 5px 20px 20px;
    margin-bottom: 20px;
}

@media (max-width: 568px) {
    .best-partners__table-mobile__item {
        display: block;
    }
}

.best-partners__table-mobile__item-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.best-partners__table-mobile__item-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #b4badd;
}

.best-partners__table-mobile__item-value {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
}

.best-partners__table-mobile__item-place {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

.best-partners__members-mobile {
    display: none;
}

@media (max-width: 1280px) {
    .best-partners__members-mobile {
        display: block;
        width: 70%;
        margin: 30px auto 0;
    }
}

@media (max-width: 411px) {
    .best-partners__members-mobile {
        width: 100%;
        margin: 10px auto 0;
    }
}

.feature-flag {
    background: #08080f;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-flag__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 16px 0;
    gap: 40px;

    width: 100%;
    max-width: 1440px;
}

@media (max-width: 1280px) {
    .feature-flag__header {
        max-width: none;
    }
}

@media (max-width: 823px) {
    .feature-flag__header {
        padding: 40px 0 16px 0;
        gap: 32px;
    }
}

.feature-flag__title {
    color: #fff;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
}

@media (max-width: 823px) {
    .feature-flag__title {
        font-size: 34px;
        line-height: 38px;
    }
}

@media (max-width: 667px) {
    .feature-flag__title {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 375px) {
    .feature-flag__title {
        font-size: 20px;
    }
}

@media (max-width: 823px) {
    .feature-flag__header-img-container {
        margin-right: 24px;
        margin-left: 24px;
    }
}

.feature-flag__header-img {
    display: block;
    width: 100%;
    max-width: 922.857px;
}

@media (max-width: 1024px) {
    .feature-flag__header-img {
        max-width: 680px;
    }
}

.feature-flag__header-text {
    color: #b4badd;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0 25px;
}

.feature-flag__features {
    display: flex;
    padding: 29px 152px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1136px;
    margin: 0 auto;
}

@media (max-width: 1920px) {
    .feature-flag__features {
        max-width: none;
        width: auto;
        padding: 16px 100px;
    }
}

@media (max-width: 1440px) {
    .feature-flag__features {
        padding: 29px 72px;
    }
}

@media (max-width: 1280px) {
    .feature-flag__features {
        padding: 29px 24px;
    }
}

@media (max-width: 823px) {
    .feature-flag__features {
        padding: 16px 24px;
    }
}

@media (max-width: 667px) {
    .feature-flag__features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 375px) {
    .feature-flag__features {
        padding: 0 24px;
    }
}

.feature-flag__feature {
    display: flex;
    flex-direction: column;
    align-self: normal;
    padding: 24px;
    border-radius: 16px;
    background: #111529;
    flex: 1;
}

.feature-flag__feature-img {
    width: 32px;
    height: 32px;
}

.feature-flag__feature-title {
    margin-top: 24px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 375px) {
    .feature-flag__feature-title {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
}

.feature-flag__feature-text {
    margin-top: 16px;
    color: #b4badd;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

@media (max-width: 667px) {
    .feature-flag__feature-text {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }
}

.join-to-community {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 24px 80px 24px;
}

@media (max-width: 823px) {
    .join-to-community {
        padding: 32px 24px 40px 24px;
    }
}

@media (max-width: 667px) {
    .join-to-community {
        padding: 24px 24px 40px 24px;
    }
}

@media (max-width: 375px) {
    .join-to-community {
        padding: 16px 24px 40px 24px;
    }
}

.join-to-community__title {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 0 24px;
}

@media (max-width: 568px) {
    .join-to-community__title {
        max-width: 406px;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
}

.join-to-community__start {
    display: flex;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: var(--6-filled-button-primary-default, #2e4ce5);
    color: var(--1-theme-color-white, #fff);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.4px;
    text-decoration: none;
}

.footer {
    background: #08080f;
}

.footer__container {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 30px;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 984px) {
    .footer__container {
        padding: 32px 20px;
    }
}

@media (max-width: 528px) {
    .footer__container {
        gap: 32px;
    }
}

@media (max-width: 371px) {
    .footer__container {
        gap: 24px;
    }
}

.footer__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 411px) {
    .footer__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo__img {
    display: block;
    max-height: 29px;
}

.footer-logo__text {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 768px) {
    .footer-logo__text {
        font-size: 18px;
    }
}

@media (max-width: 528px) {
    .footer-logo__text {
        font-size: 16px;
    }
}

.footer-button {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-button>a:first-child {
    margin-left: 0;
}

.footer__separator {
    border: 0;
    border-top: 1px solid #111529;
    width: 100%;
    margin: 0;
}

.footer__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 823px) {
    .footer__body {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer__copyright {
    color: #b4badd;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.4px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 823px) {
    .footer-links {
        gap: 24px;
    }
}

@media (max-width: 568px) {
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .language-switcher_footer {
        order: 4;
    }
}

.language-switcher_footer .language-switcher__trigger {
    padding: 0;
}

.footer-links__link {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.footer-links__link_email {
    color: #b4badd;
}

.feedback-container {
    width: 100%;
}

.feedback {
    max-width: 1440px;
    width: auto;
    margin: 0 auto;
    padding: 100px 30px;
    display: flex;
    align-items: flex-start;
}

@media (max-width: 568px) {
    .feedback {
        display: block;
        width: auto;
        padding: 40px 20px;
    }
}

.feedback-img {
    display: block;
    max-width: 557px;
    width: 100%;
    flex: none;
}

@media (max-width: 1280px) {
    .feedback-img {
        max-width: 490px;
    }
}

@media (max-width: 1024px) {
    .feedback-img {
        max-width: 385px;
        margin-left: 30px;
    }
}

@media (max-width: 823px) {
    .feedback-img {
        max-width: 317px;
        margin-left: 15px;
    }
}

@media (max-width: 667px) {
    .feedback-img {
        max-width: 252px;
    }
}

@media (max-width: 568px) {
    .feedback-img {
        max-width: 211px;
        margin: 20px auto 0;
    }
}

@media (max-width: 411px) {
    .feedback-img {
        max-width: 244px;
    }
}

.feedback-form {
    max-width: calc(645px - 60px);
    width: 100%;
    padding: 30px;
    background: #181e38;
    border-radius: 10px;
}

@media (max-width: 1280px) {
    .feedback-form {
        max-width: calc(565px - 60px);
    }
}

@media (max-width: 1024px) {
    .feedback-form {
        max-width: calc(550px - 60px);
    }
}

@media (max-width: 823px) {
    .feedback-form {
        padding: 20px;
        max-width: calc(451px - 40px);
    }
}

@media (max-width: 667px) {
    .feedback-form {
        max-width: calc(360px - 40px);
    }
}

@media (max-width: 568px) {
    .feedback-form {
        max-width: none;
        width: auto;
        margin: 0 auto;
    }
}

.feedback-form__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .feedback-form__title {
        font-size: 28px;
        line-height: 34px;
    }
}

@media (max-width: 823px) {
    .feedback-form__title {
        font-size: 21px;
        line-height: 26px;
    }
}

.feedback-form__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #b4badd;
    margin-bottom: 20px;
}

@media (max-width: 823px) {
    .feedback-form__text {
        font-size: 14px;
        line-height: 17px;
    }
}

.feedback-form__input {
    display: block;
    width: calc(100% - 32px);
    margin-top: 20px;
    background: #222946;
    border: 1px solid #414b75;
    border-radius: 4px;
    padding: 10px 15px;
    color: rgba(255, 255, 255);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    outline: none;
}

@media (max-width: 823px) {
    .feedback-form__input {
        margin-top: 15px;
    }
}

.feedback-form__input:focus-visible {
    outline: none;
}

.feedback-form__input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.feedback-form__input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.feedback-form__input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.feedback-form__input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.feedback-form #name-error,
.feedback-form #email-error,
.feedback-form #message-error {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #ff4d4d;
    margin-top: 5px;
}

.feedback-form input.error,
.feedback-form textarea.error {
    border: 1px solid #ff4d4d;
}

.feedback-form__button {
    margin-top: 20px;
    background: #2e4ce5;
    border-radius: 5px;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    border: 0;
    padding: 15px 0;
    cursor: pointer;
}

.feedback-form__button:hover {
    background: #516aed;
}

.feedback-form__block-success {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #b4badd;
}

.feedback-form__block-success svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.toast-container {
    max-width: 100%;
    pointer-events: none;
    position: fixed;
    right: 28px;
    top: 18px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 15;
}

.toast {
    position: relative;
    width: 380px;
    max-width: 100%;
    font-size: 12px;
    color: #6e6b7b;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 0 solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px 0 rgba(34, 41, 47, 0.08);
    border-radius: 4px;
}

.toast.showing {
    opacity: 0;
}

.toast:not(.show) {
    display: none;
}

.toast-container> :not(:last-child) {
    margin-bottom: 14px;
}

.toast-header {
    display: flex;
    align-items: center;
    color: #6e6b7b;
    font-weight: 600;
    background-color: #fff;
    background-clip: padding-box;
    border-bottom: 0 solid rgba(0, 0, 0, 0.05);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #6e6b7b;
    display: flex;
    padding: 7px 16px;
    line-height: 22px;
}

.toast-body {
    padding: 16px;
    word-wrap: break-word;
    line-height: normal;
}

.toast.show {
    z-index: 1030;
}

.toast-top-right {
    top: 18px;
    right: 28px;
}

.toast .btn-close {
    background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E") 50%/0.75rem auto no-repeat;
    border: 0;
    box-sizing: content-box;
    color: currentColor;
    opacity: 1;
    position: absolute;
    top: 12px;
    right: 6px;
    width: 10.5px;
    height: 10.5px;
}

.toast .btn-close:focus {
    box-shadow: none;
}

.toast-icon {
    height: 18px;
    margin-right: 8px;
    width: 18px;
}

.toast.toast-success .toast-header {
    --bs-bg-opacity: 1;
    --bs-text-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity));
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity));
}

.toast.toast-success .toast-body {
    --bs-bg-opacity: 0.12;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity));
}

.toast.toast-error .toast-header {
    --bs-bg-opacity: 1;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity));
}

.toast.toast-error .toast-body,
.toast.toast-error .toast-header {
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity));
}

.toast.toast-error .toast-body {
    --bs-bg-opacity: 0.12;
}

@media (max-width: 420.98px) {
    .toast {
        width: auto;
    }
}

.offer-banners-container {
    max-width: 1440px;
    width: 100%;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

@media (max-width: 1440px) {
    .offer-banners-container {
        max-width: none;
        width: auto;
    }
}

.dashboard-banner {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(239, 239, 239, 0.16);
    background: #070707;
    height: 160px;
    width: 100%;
    position: relative;
    padding: 20px 24px;
    background-image: url(/static/partners/images/dashboard-banners/offer-banner-june-2025.png);
    background-repeat: no-repeat;
    background-size: 850px;
    background-position: right -276px bottom -116px;
}

@media screen and (max-width: 767px) {
    .dashboard-banner_offer-june-2025 {
        height: 124px;
        padding: 20px 16px;
        background-size: 450px;
        background-position: right -155px bottom -55px;
    }
}

@media screen and (max-width: 479px) {
    .dashboard-banner_offer-june-2025 {
        background-position: right -170px bottom -55px;
    }
}

.dashboard-banner__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media screen and (max-width: 767px) {
    .dashboard-banner__header {
        gap: 4px;
    }
}

.dashboard-banner__title {
    color: #fff;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
}

.dashboard-banner__title>span {
    color: #07ff76;
}

@media screen and (max-width: 767px) {
    .dashboard-banner__title {
        font-size: 20px;
        line-height: 24px;
    }
}

.dashboard-banner__date-title {
    color: var(--1-theme-color-light, #babfc7);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

@media screen and (max-width: 767px) {
    .dashboard-banner__date-title {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
}

.dashboard-banner__date-value {
    color: var(--1-theme-color-white, #fff);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

@media screen and (max-width: 767px) {
    .dashboard-banner_offer-june-2025 .dashboard-banner__date-value {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
}

.dashboard-banner_offer-june-2025 .dashboard-banner__footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#offerBannerDialog .modal-dialog {
    max-width: 844px;
}

#offerBannerDialog .modal-header {
    color: var(--1-theme-color-heading-display-text, #5e5873);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    background-color: #fff;
    padding: 24px 24px 0 24px;
}

#offerBannerDialog .modal-body {
    padding: 24px;
    color: var(--grey-color-grey-900, #283046);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

#offerBannerDialog .modal-body p {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

#offerBannerDialog .modal-body b {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
