html {
    scroll-behavior: smooth;
    --checked-color: #338700;
    --form-control-color: rebeccapurple;
}
body {
    background-color: #ECEFF4;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}
body.hidden {
    overflow: hidden;
}
 a {
     text-decoration: none;
 }
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.page {
    overflow: hidden;
    position: relative;
}
.page:before {
    content: '';
    width: 100%;
    height: 1395px;
    min-width: 1920px;
    /*background-image: url('../img/bg.png');*/
    /*background-position: top center;*/
    /*background-size: 100%;*/
    /*background-repeat: no-repeat;*/
    background-color: #ECEFF4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.btn {
    font-size: 16px;
    font-weight: 500;
    font-family: "Manrope", serif;
    background: #1A1C1F;
    color: #FFFFFF;
    padding: 14.5px 21.56px;
    border: 1px solid #000000;
}

.btn-black {
    background-color: #FFFFFF;
    color: #000000;
}

.btn:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.btn.btn-black:hover {
    color: #FFFFFF;
    background: #1A1C1F;
    border: 1px solid #FFF;
}

.btn:disabled {
    background: #DADADA;
    color: #999999;
    border: 1px transparent solid;
    cursor: default;
}

.btn-link {
    display: flex;
    align-items: center;
    column-gap: 4px;
    background: transparent;
    font-family: "Manrope", serif;
    font-size: 16px;
}

.btn-link__link {
    display: flex;
}

/*.btn-link:hover .btn-link__text {*/
/*    text-decoration: underline;*/
/*}*/

.btn-link:hover .btn-link__text::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px; /* Толщина подчеркивания */
    background-color: currentColor; /* Цвет подчеркивания, совпадающий с цветом текста */
    margin-top: 4px; /* Расстояние между текстом и подчеркиванием */
}

.quote::before {
    margin-right: 8px;
    content: url("../img/bar.svg");
    position: relative;
    top: -9px;
}

.cabinet-page:before {
    /*background-image: url('../img/bg2.png');*/
}

.cabinet-page .account-nav {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-family: "Manrope", serif;
    border-bottom: 2px solid #F5F5F5;
}

.cabinet-page .section.latest-generation-section {
    max-width: unset;
}

.cabinet-page .account-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 14px;
}

.cabinet-page .account-nav ul li {
    display: inline;
    padding: 23px 0 28.5px 0;
}

.cabinet-page .account-nav ul li a {
    text-decoration: none;
    color: #999999;
    font-family: "Manrope", serif;
    font-size: 16px;
}

.cabinet-page .account-nav ul li a.active {
    color: #000000;
}

.cabinet-page .account-nav ul li:not(:last-child)::after {
    content: "/";
    margin-left: 16px;
    color: #999999;
    font-size: 16px;
}

.text-page:before {
    height: 90px;
}
.title {
    font-family: "Manrope", serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: #fff;
}
.title.big {
    font-size: 82px;
    line-height: 103px;
    font-weight: 400;
}
.desc {
    font-family: "Manrope", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
.desc b {
    font-weight: 700;
}
.mob {
    display: none;
}
button,
a,
.hover-link {
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: .3s;
}
a:hover,
.hover-link:hover,
.button:hover {
    opacity: .7;
}
.button {
    font-family: "Manrope", serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    transition: .3s;
    background: #1A1C1F;
    border-radius: 12px;
    position: relative;
    padding: 19px;
    min-width: 168px;
    text-align: center;
}
.button.green {
    background: linear-gradient(to right, #83FDD8, #1EECAE);
    border-bottom: 6px solid #019368;
    color: #000000;
    font-size: 18px;
}
.section {
    padding: 0 16px;
}
.wrapper {
    /*max-width: 1440px;*/
    margin: 0 96px;
}

.header {
    font-family: "Manrope", serif;
}

.header .wrapper {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
}

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

@media (max-width: 768px) {
    /*.header .wrapper {*/
    /*    grid-template-columns: auto;*/
    /*    justify-content: flex-start;*/
    /*}*/

    /*.header .wrapper:nth-child(2),*/
    /*.header .wrapper:nth-child(3) {*/
    /*    grid-column: span 1;*/
    /*}*/

    /*.header .wrapper:nth-child(2) {*/
    /*    grid-template-columns: 1fr 1fr;*/
    /*    justify-content: space-between;*/
    /*}*/

    /*.header .wrapper {*/
    /*    grid-template-columns: repeat(2, 1fr);*/
    /*    grid-template-rows: repeat(2, 1fr);*/
    /*}*/

    /*.header .wrapper > a {*/
    /*    grid-area: 1 / 1 / 2 / 3;*/
    /*}*/

    /*.header .wrapper > .links {*/
    /*    grid-area: 2 / 1 / 3 / 2;*/
    /*}*/

    /*.header .wrapper > .right {*/
    /*    grid-area: 2 / 2 / 3 / 3;*/
    /*}*/

    /*.header .wrapper {*/
    /*    grid-template-rows: auto auto;*/
    /*}*/
}

.header > .wrapper {
    column-gap: 12px;
    margin: 0;
}

.header .wrapper .content {
    display: flex;
    column-gap: 36px;
}

.header.logged-in {
    background: #1A1C1F;
}

.header nav.links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 24px;
}

.header nav.links ul li::marker {
    display: none;
}

.header nav.links ul li a {
    font-family: "Manrope", serif;
    font-size: 16px;
    color: #999999;
}

.header nav.links ul li a.active {
    color: #000000;
    text-decoration: #000000;
}

.header nav.links ul li a.active {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #000000;
    text-underline-offset: 4.5px;
}

.header.logged-in nav.links ul li a.active {
    color: #FFFFFF;
    text-decoration: underline;
    text-decoration-color: #FFFFFF;
    text-underline-offset: 4.5px;
}

.header .account {
    margin: 0 96px;
    padding-bottom: 57px;
}

.header .account .account-title {
    font-size: 60px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 96px 40px 0;
}

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

.header .balance .left  .keeper {
    margin-right: 16px;
}

.header .balance .left .my-balance {
    padding: 6px 0;
    margin-right: 72px;
}

.header .left .my-balance  {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.header .balance .left .my-balance .my-balance__title {
    font-family: "Manrope", serif;
    font-size: 16px;
    color: #999999;
}

.header .balance .balance__info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header .balance .balance__info .bar {
    width: 2px;
    background-color: #313131;
    border-radius: 24px;
}

.header .balance .balance__info .right {
    column-gap: 18.5px;
}
.header .balance .balance__info .right img {
    width: 24px;
}

.header .balance .balance__info .right .user-info {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.header .balance .balance__info .right .user-info {
    font-family: "Manrope", serif;
}

.header .balance .balance__info .right .user-info .user-info__username {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 24px;
}

.header .balance .balance__info .right .user-info .user-info__joined {
    color: #999999;
    font-size: 16px;
}

.header .balance .balance__info .right .user-info .user-info__joined .date {
    color: #FFFFFF;
}

.header .balance .left .my-balance .my-balance__balance {
    font-family: "Manrope", serif;
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 500;
}

.header .account .account-info .keeper {
    width: 24px;
}

.header .my-profile {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
}

.header .my-profile a {
    font-family: "Manrope", serif;
    font-size: 16px;
    font-weight: 600;
    color: #999999;
}


/*.header .my-profile {*/
/*    stroke: black;*/
/*}*/

/*.header .my-profile circle {*/
/*    stroke: black;*/
/*}*/

/* header */
.header {
    position: relative;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}
.header .wrapper {
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
    /*border-bottom: 2px solid #323243;*/
    padding: 51px 0 14px;
    max-width: 1248px;
    margin: 0 auto;
}
.header .right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.header .right .btn-link {
    padding: 0;
}

.header .right .desc {
    /* margin-right: 44px; */
    color: #fff;
    font-weight: 700;
}

.header .logo a {
    display: flex;
    align-items: flex-end;
}

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

.header .logo .img {
    width: 129px;
}
.header .right .name {
    margin-right: 30px;
    font-weight: 700;
}
.header .right .icon {
    width: 48px;
    height: 48px;
}
.header .profile-link {
    display: flex;
    align-items: center;
}

/* DEFAUL.BLADE.PHP notifications */

.default-template-notification {
    position: fixed;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    gap: 30px;
    color: white;
    font-family: "Manrope", serif;
    width: 100%;
    background-color: black;
    padding: 10px;
    text-wrap: balance;
}

.default-template-notification.success {
    background: green;
}

.default-template-notification.error {
    background: red;
}

.default-template-notification button {
    color: white;
    background: transparent;
    border-color: black;
    min-width: 75px;
    width: 100%;
    max-width: 120px;
}

/* VERIFY-EMAIL.BLADE.PHP */
.verify-email-component {
    position: relative;
    min-height: 80vh;
    color: white;
    font-family: "Manrope", serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.verify-email-component__card-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #000000;
}

.verify-email-component__card-body {
    font-size: 16px;
}

.verify-email-component__card-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.verify-email-component__card-text {
    text-align: center;
    font-size: 19px;
    font-family: "Manrope", serif;
    padding-left: 14px;
    color: black;
}

.verify-email-component__button,
.verify-email-component__logout {
    width: 300px;
}

.verify-email-component__button:hover{
background-color: #0056b3;
}

.verify-email-component__logout {
    text-align: center;
}

/* hero section */
.home-page .hero-section {
    padding: 306px 16px 0;
    position: relative;
    text-align: center;
}
.home-page .section#payment-methods {
    display: none;
}
.home-page .section.intro-section {
    margin-top: 72px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
    column-gap: 95px;
}
.home-page .intro-section .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 44px;
}
.home-page .intro-section .right {
    display: flex;
    flex-direction: column;
    row-gap: 64px;
    position: relative;
}
.home-page .intro-section .left .intro-section__heading {
    text-transform: capitalize;
    font-weight: 600;
    max-width: 759px;
    font-size: 91px;
    font-family: "Manrope", serif;
    margin: 0;
}
.home-page .intro-section .left .intro-section__buttons {
    display: flex;
    flex-direction: row;
    column-gap: 24px;
}
.home-page .intro-section .right .right__top_text {
    font-size: 32px;
    font-family: "Manrope", serif;
    padding-left: 14px;
    position: relative;
    align-self: flex-end;
}
.home-page .intro-section .right .right__top_text::before {
    content: url("../img/green_circle.svg");
    position: absolute;
    top: -15px;
    left: -5px;
}
.home-page .benefits-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1248px;
    margin: 117.85px auto 0 auto;
    row-gap: 0;
}
.home-page .benefits-section .benefits-section__buttons {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.home-page .benefits-section .benefits-section__head .head__title {
    font-weight: 600;
    font-size: 60px;
    font-family: "Manrope", serif;
}
.home-page .benefits-section .benefits-section__head {
    display: flex;
    flex: 1;
    justify-content: space-between;
}
.home-page .benefits-section .benefits-section__head .head__desc {
    font-size: 20px;
    font-family: "Manrope", serif;
}
.home-page .benefits-section .benefit-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 48px;
}
.home-page .benefits-section .benefit-list .benefit {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    flex: 1;
    max-width: 288px;
    padding: 20px 0 20px 16px;
    box-sizing: border-box;
    transition: .3;
}
.home-page .benefits-section .benefit-list .benefit:hover {
    background: #1A1C1F;
}
.home-page .benefits-section .benefit-list .benefit:hover .benefit__title {
    color: #FFFFFF;
}
.home-page .benefits-section .benefit-list .benefit .benefit__icon {
    width: 24px;
    margin-bottom: 16px;
    filter: brightness(0);
    transition: .3;
}
.home-page .benefits-section .benefit-list .benefit:hover .benefit__icon {
    filter: brightness(0) invert(1);
}
.home-page .benefits-section .benefit-list .benefit .benefit__title {
    font-family: "Manrope", serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 8px;
    transition: .3s;
    margin-top: 0;
}
.home-page .benefits-section .benefit-list .benefit .benefit__text {
    font-family: "Manrope", serif;
    color: #999999;
    font-size: 16px;
    line-height: 20px;
}
.home-page .our-mission {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1248px;
    margin: 120px auto 0 auto;
}
.home-page .our-mission .our-mission__info {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.home-page .our-mission .our-mission__info .info__img_1 {
    position: relative;
    top: 21px;
    max-width: 124px;
    max-height: 189px;
}
.home-page .our-mission .our-mission__info .info__img_2 {
    position: relative;
    top: -109px;
    max-width: 122px;
}
.home-page .our-mission .info__img_3 {
    position: relative;
    left: 639px;
    /* bottom: 86px; */
    max-width: 277px;
}
.home-page .our-mission .our-mission__title {
    font-weight: 600;
    font-size: 60px;
    font-family: "Manrope", serif;
    margin-bottom: 48px;
}
.home-page .our-mission .our-mission__info .info__text {
    font-size: 32px;
    font-family: "Manrope", serif;
    text-align: center;
    max-width: 886px;
    line-height: 42px;
}
.home-page .how-it-works {
    position: relative;
    max-width: 1248px;
    margin: 120px auto 0 auto;
    display: flex;
    flex-direction: column;
}
.home-page .section {
    position: relative;
    max-width: 1248px;
    margin: 120px auto 0 auto;
    display: flex;
    flex-direction: column;
}
.home-page .section .section__title {
    font-weight: 600;
    font-size: 60px;
    font-family: "Manrope", serif;
}
.home-page .section .section__desc {
    font-size: 20px;
    font-family: "Manrope", serif;
    position: relative;
}

.latest-generation-section {
    font-family: "Open Sans", sans-serif;
    margin-bottom: 66px;
}

.section.latest-generation-section .section__title {
    font-weight: 600;
    font-size: 60px;
    font-family: "Manrope", serif;
}

.latest-generation-section .title {
    font-size: 56px;
    font-weight: 700;
    color: #141224;
    margin-bottom: 48px;
    line-height: 1;
    height: 76px;
}

.latest-generation-carousel {
    /* height: 280px; */
}

.latest-generation-carousel .slick-list {
    height: 100%;
}

.latest-generation-carousel .slick-track {
    height: 100%;
}

/*
Prevent flicker during slide transition:
https://github.com/kenwheeler/slick/issues/1961
*/
.latest-generation-carousel .slick-track,
.latest-generation-carousel .slick-list {
    transition-delay: 50ms;
}


.latest-generation-carousel.slick-slider .slick-slide {
    margin: 0px 12px;
}


.latest-generation-section .title {
    font-size: 56px;
    font-weight: 700;
    color: #141224;
    margin-bottom: 48px;
    line-height: 1;
}
.latest-generation-carousel .block {
    background: #161619;
    padding: 0;
    height: 260px;
    width: 230px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.latest-generation-section .block img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-generation-section .info {
    max-width: calc(100% - 32px);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A1C1F;
    border-radius: 8px;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px;
    z-index: 1;
    width: max-content;
}


.latest-generation-section .text-ellipsis {
    color: white;
    font-family: "Manrope", serif;
    font-size: 16px;
    text-align: center;
}



.latest-generation-section .carousel-container {
    margin-top: 0;
}
.latest-generation-section .wrapper {
    margin-left: 0;
    width: 100%;
}




.home-page .section .section__desc::before {
    font-size: 20px;
    font-family: "Manrope", serif;
    position: absolute;
    left: -21px;
}
.section.latest-generation-section {
    max-width: 1311px;
}
.home-page .how-it-works .how-it-works__title {
    margin-bottom: 8px;
}
.home-page .how-it-works .how-it-works__img {
    margin-bottom: 36px;
}
.home-page .how-it-works .how-it-works__video {
    display: flex;
    flex-direction: row;
    column-gap: 112px;
}
.home-page .how-it-works .how-it-works__video .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.home-page .how-it-works .how-it-works__video video {
    flex: 1;
    max-width: 863px;
    max-height: 460px;
    object-fit: cover;
}
.home-page .features {
    max-width: 1320px;
}
.home-page .features .section__title {
    margin-bottom: 48px;
}
.home-page .features .features__list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.section.section-packs .section__title {
    font-family: "Manrope", serif;
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 48px;
}
.section-packs .wrapper {
    margin: 0;
    display: flex;
    flex-direction: column;
}
.section-packs .carousel-container {
    align-self: center;
}
.home-page .features .features__list .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 207px;
    width: 229px;
    justify-content: center;
}
.home-page .features .features__list .feature .feature__icon {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin-bottom: 16px;
}
.home-page .features .features__list .feature .feature__title {
    font-weight: 500;
    font-family: "Manrope", serif;
    font-size: 20px;
    margin-bottom: 8px;
}
.home-page .features .features__list .feature .feature__desc {
    font-weight: 500;
    font-family: "Manrope", serif;
    text-align: center;
    font-size: 16px;
    color: #999999
}
.gallery-section .section__title {
    margin-bottom: 48px;
}
.home-page .hero-section .wrapper {
    position: relative;
}
.home-page .hero-section .button {
    width: 266px;
    margin-top: 73px;
}
.home-page .hero-section .title {
    color: #1EECCB;
}
.home-page .hero-section .desc {
    max-width: 593px;
    margin: 42px auto 0;
}
.home-page .hero-section .wrapper .item {
    padding: 0 8px;
}
.home-page .hero-section .wrapper .item .img {
    width: 100%;
    border-radius: 12px;
    border: 4px solid #fff;
    max-height: 344px;
}
.slick-arrow {
    width:56px;
    height: 48px;
    background: #1A1C1F;
    background-image: url('../img/arrow2.svg');
    background-position: center;
    background-size: 24px;
    background-repeat: no-repeat;
    border: 0;
    outline: 0;
    font-size: 0;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transition: none;
}
.slick-next {
    margin-left: 40px;
}
.slick-prev {
    transform: scale(-1);
    margin-left: -40px;
}
.slick-arrow:hover {
    opacity: .7;
}
.slick-arrow.slick-disabled {
    background-image: url('../img/arrowDisabled.svg');
    transform: scale(1);
}
.slick-next.slick-disabled {
    background-image: url('../img/arrowDisabled.svg');
    transform: scale(-1);
}

.carousel-container {
    position: relative;
    margin-top: 428px;
}
.home-page .carousel-container .art-img {
    width: 67%;
    position: absolute;
    bottom: 347px;
    right: 8px;
}
.home-page .carousel-container .title {
    text-align: left;
    color: #FFFFFF;
}
.carousel {
    margin-top: 47px;
}

/* section 2 */
.home-page .section-2 {
    padding: 165px 16px 167px;
    position: relative;
}
.home-page .section-2 .wrapper {
    display: flex;
    flex-wrap: wrap;
}
.home-page .section-2 .left {
    width: 57%;
    padding-right: 16px;
}
.home-page .section-2 .right {
    width: 43%;
    background: linear-gradient(to right, rgba(8,90,228,.55), #EA5EFF00);
    border-radius: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.home-page .section-2 .right .img {
    width: 53%;
    margin-left: -60px;
    display: inline-block;
    transform: translateX(45px);
}
.home-page .section-2 .title {
    color: #000000;
    max-width: 590px;
}
.home-page .section-2 .title.small {
    font-size: 24px;
    line-height: 34px;
}
.home-page .section-2 .list {
    margin-top: 42px;
    gap: 36px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 590px;
}
.home-page .section-2 .desc {
    color: #383847;
    margin-top: 19px;
}
.home-page .section-2 .left > .desc {
    margin-top: 12px;
    font-size: 22px;
    line-height: 32px;
    max-width: 590px;
}


.home-page .section-3 {
    background-image: url('../img/section3Bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.home-page .section-3 .wrapper {
    padding: 192px 0 154px;
    display: flex;
    flex-wrap: wrap;
}
.home-page .section-3 .left {
    width: 50%;
    padding-bottom: 270px;
}
.home-page .section-3 .right {
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}
.home-page .section-3 .list .item:first-child .title {
    color: #6B77FE;
}
.home-page .section-3 .list .item:nth-child(2) {
    margin-top: 140px;
    margin-left: 247px;
    position: relative;
}
.home-page .section-3 .list .item:nth-child(2) .title {
    color: #1EECCB;
}
.home-page .section-3 .list .item:nth-child(3) {
    margin-top: 154px;
    position: relative;
}
.home-page .section-3 .list .item:nth-child(3) .title {
    color: #6B77FE;
}
.home-page .section-3 .list .desc {
    margin-top: 30px;
    max-width: 338px;
}
.home-page .section-3 .list .item:nth-child(2) .decor1 {
    width: 295px;
    position: absolute;
    left: 85px;
    top: -320px;
}
.home-page .section-3 .list .item:nth-child(3) .decor2 {
    width: 295px;
    position: absolute;
    left: -120px;
    top: -320px;
}

.home-page .section-3 .right .img-spec {
    width: 46%;
    margin-left: -60px;
    transform: translateX(50px);
}

.home-page .section-3 .right + .title {
    max-width: 1063px;
    margin: 68px auto 0;
    text-align: center;
}
.home-page .section-3 .text-1 {
    position: absolute;
    right: 570px;
    width: 206px;
    bottom: 570px;
}
.home-page .section-3 .text-2 {
    position: absolute;
    right: 340px;
    width: 168px;
    bottom: 420px;
}
.home-page .section-3 .text-3 {
    position: absolute;
    right: 30px;
    width: 262px;
    bottom: 350px;
}

/* footer */
.footer {
    position: relative;
    padding: 0 16px;
    background: #1A1C1F;
    color: #FFFFFF;
    font-family: "Manrope", serif;
}
.footer .email {
    color: #FFFFFF;
}
.footer .wrapper {
    display: flex;
    flex-direction: column;
    padding: 64px 0 92px 0;
    max-width: 1248px;
    margin: 0 auto;
    justify-content: center;
}

.footer .wrapper .top {
    align-items: initial;
    margin-bottom: initial;
    display: flex;
    justify-content: space-between;
}
.footer .wrapper .support {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-right: 48px;
}
.footer .wrapper .company-info {
    flex: 1;
    font-family: "Manrope", serif;
    line-height: 24px;
    font-size: 16px;
    max-width: 252px;
    margin-right: 48px;
}

.footer .static-pages {
    display: flex;
    flex-direction: column; /* Устанавливаем элементы в колонку */
    flex-wrap: wrap; /* Разрешаем перенос строк */
}

.footer .static-pages a {
    box-sizing: border-box; /* Учитываем отступы и границы в размерах */
    /*padding: 10px; !* Внутренние отступы *!*/
    color: #999999;
    font-weight: 500;
    font-family: "Manrope", serif;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer .links {
    background: #1A1C1F; /* Black background */
    /*padding: 10px 0;*/
    text-align: center;
    margin-right: 48px;
    max-width: 488px;
}

.footer .links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
}

.footer .links ul li {
    display: inline;
    /*margin: 0 15px; !* Spacing between items *!*/
}

.footer .links ul li a {
    text-decoration: none;
    color: #ffffff; /* White text color */
    font-family: "Manrope", serif;
    font-size: 16px;
}

.footer .links ul li:not(:first-child) {
    /*margin-left: 14px;*/
}

/* Styling for the slashes */
.footer .links ul li:not(:last-child)::after {
    content: "/"; /* Adds the slash after each item except the last one */
    margin-left: 16px;
    color: #ffffff; /* Slash color */
}
.footer .wrapper .support .support__email {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    font-family: font-family: "Manrope", serif;;
    font-size: 16px;
    line-height: 24px;
}
.footer .wrapper .support .support__email .text {
    font-weight: 600;
    padding-bottom: 0;
}
.footer .wrapper .support .support__icons {
    display: flex;
    column-gap: 16px;
}
.footer .wrapper .support .support__icons img {
    width: 24px;
}
.footer .social-list .img {
    width: 48px;
}
.footer .social-list .item {
    margin-right: 40px;
}
.footer .social-list .item:last-child {
    margin-right: 0;
}
.footer .desc {
    color: #383847;
    font-size: 18px;
}
.footer .center .desc-2 {
    font-weight: 700;
    color: #6B77FE;
    font-size: 18px;
    margin-top: 15px;
}
.footer .center {
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 45%;
}
.footer .center .button {
    margin-top: 50px;
}
.footer .left .item {
    display: table;
    font-weight: 700;
    margin: 0 auto 25px 0;
    color: #000000;
    font-size: 18px;
    line-height: 24px;
}
.footer .right {
    text-align: right;
}
.footer .right .button {
    width: 347px;
    max-width: 100%;
}
.footer .payment-method-list {
    margin-top: 16px;
    display: flex;
    gap: 20px;
}
.payment-method-list .img {
    max-width: 70px;
    height: 24px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
.copyright-section {
    padding: 0 16px;
    background: #FFFFFF;
}
.copyright-section .wrapper {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
}
.copyright-section .desc {
    font-size: 18px;
    color: #383847;
}

/* input */

.input-container {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
}

.input-container:focus-within {
    border-bottom-color: #000000;
}

.input-container label {
    margin-right: 10px;
    color: #888; /* Light grey color */
    font-size: 14px;
    flex-shrink: 0;
}

.input-container::before {
    /*content: '';*/
    /*border-left: 1px dotted #ccc;*/
    /*margin: 0 10px;*/
    /*height: 20px;*/
    /*flex-shrink: 0;*/
}

.input-container input, .input-container select  {
    flex: 1;
    border: none;
    border-bottom: 1px solid #ccc; /* Line under the input */
    outline: none;
    /*width: 100%;*/
    font-size: 14px;
    padding-left: 8px;
}

.input-container input.error, .input-container select.error {
    color: #ED0006;
    border-bottom-color: #FF7C7C;
}

.input-container.error input {
    color: #ED0006;
    border-bottom-color: #FF7C7C;
}

.input-container .error-message {
    padding-left: 16px;
}

.input-container select {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc; /* Line under the input */
    /* color: #999999; */
}

.input-container select:invalid {
    color: #999999;
}

.input-container select option {
    color: #000;
  }

/* modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    /*padding: 24px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.modal.active {
    visibility: visible;
    opacity: 1;
}
.modal .close {
    width: 18px;
    position: absolute;
    right: 26px;
    top: 26px;
    cursor: pointer;
}
.form-container .iti {
    display: flex;
}
.form-container .iti > input {
    flex: 1;
}
.modal .iti {
    display: flex;
}
.modal input.phone {
    flex: 1;
}
.overlay {
    background: #000;
    opacity: .77;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.modal .wrapper {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 0;
    display: initial;
}

.modal.top3-modal .wrapper {
    display: flex;
}

.modal .wrapper::-webkit-scrollbar {
    width: 3px;
}
.modal .wrapper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
.modal .wrapper::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 10px;
}
.modal .wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 128, 128, .5);
}
.modal form {
    margin-top: 63px;
}

.modal form {
    margin-top: 63px;
}
.modal.update-profile-modal form {
    margin-top: 105px;
}

.modal.request-password-restore-modal form {
    margin-top: 12px;
}

.modal.request-password-restore-modal .restore-password-finish {
    display: none;
}

.modal.password-restore-modal form {
    margin-top: 12px;
}

.modal.update-profile-modal form button[type="submit"] {
    margin-top: 30px;
}

.modal.password-restore-modal form button[type="submit"] {
    margin-top: 30px;
}

.modal.request-password-restore-modal form button[type="submit"] {
    margin-top: 30px;
}

.modal {
    font-family: "Manrope", serif;
}

.modal .title {
    font-size: 24px;
    line-height: 34px;
}
.modal .form-container {
    border: 2px #000000 solid;
    padding: 32px 24px;
    /*border-radius: 14px;*/
    background: #FFFFFF;
    /*background-image: url('../img/modalBg.png');*/
    /*background-position: top center;*/
    /*background-size: 100%;*/
    /*background-repeat: no-repeat;*/
}
.modal .form-container .input-container input, .modal .form-container .input-container select {
    margin-top: 24px;
    padding: 16px 20px 8px 16px;
}
.modal .form-container .title {
    display: flex;
    justify-content: flex-start;
    font-weight: 600;
    color: #000000;
    font-size: 60px;
    font-family: "Manrope", serif;
    line-height: 73px;
}
.modal.request-password-restore-modal .form-container .restore-password-finish .title {
    font-size: 44px;
    line-height: 45px;
}
.modal .form-container label .intl-phone {
    display: flex;
}
.modal.top-modal .form-container,
.modal.top2-modal .form-container {
    background-size: 100% 110px;
}

.top-modal .amount-wrapper .input-container {
    flex: 1;
}

.top-modal .amount-wrapper .input-container input {
    margin-top: 0;
}

.modal.top-modal .title,
.modal.top2-modal .title {
    margin-bottom: 52px;
}

.modal.top3-modal .default-template-notification{
    top: 0;
}
.modal.top3-modal .form-container{
    /* scrollbar-gutter: stable both-edges; */
    /* padding: 32px 15px; */
    background-size: 105% 100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 100%;
}
.modal.top3-modal .button-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 180px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.modal.top3-modal .no-payment{
    font-family: "Manrope", serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 48px;
}

.modal.top3-modal .button-list .button {
    /* height: 112px; */
    min-width: initial;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    font-family: "Manrope", serif;
}

.modal.top3-modal .button.payment-method img {
    width: 80px;
}

.top3-modal{
}

.top3-modal .wrapper {
    max-width: 568px;
}

.top3-modal .icon-container{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    /* margin-right: 10px; */
    border-radius: 24px;

    & img{
        max-width: 80%;
        max-height: 80%;
    }
}

.modal.login-modal .wrapper {
    max-width: 480px;
}
.modal.login-modal .form-container .buttons {
    justify-content: space-between;
    align-items: flex-start;
    color: #999999;
    font-size: 16px
}
.modal.reg-modal form {
    margin-top: 48px;
}
.modal.reg-modal .checkbox-container .link {
    text-decoration: none;
    font-weight: 500;
}
.modal form .phone-container {
    margin-top: 24px;
}
.modal .form-container .checkbox-container .checkbox-label .text, .modal.top2-modal .form-container .checkbox-container .checkbox-label .text  {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}
.modal .form-container .checkbox-container .checkbox-label .text a, .modal.top2-modal .form-container .checkbox-container .checkbox-label .text a {
    color: #999999;
}
.login-modal .form-container .buttons, .reg-modal .form-container .buttons, .request-password-restore-modal .form-container .buttons  {
    margin: 32px 0 64px 0;
    display: flex;
    justify-content: flex-start;
}
.request-password-restore-modal .form-container .buttons {
    justify-content: center;
    margin-top: 7px;
    margin-bottom: -1px;
}
.top-modal .form-container .buttons  {
    margin: 32px 0 0 0;
    display: flex;
    justify-content: center;
}
.login-modal .form-container .links, .reg-modal .form-container .links  {
    display: flex;
    justify-content: space-between;
}
.login-modal .form-container .links .no-account, .reg-modal .form-container .links .no-account {
    color: #999999;
    font-size: 16px;
}
.reg-modal .form-container {
    padding-bottom: 40px;
}
.modal .side {
    align-items: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal .side .link {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 24px;
    display: table;
    margin: 0 0 0 12px;
}
.modal .side .desc {
    font-size: 14px;
    line-height: 18px;
}
label {
    position: relative;
    display: block;
}
label + label {
    margin-top: 18px;
}
input, textarea, .select2, select {
    outline: 0;
    /*background: #F7F7F7;*/
    border: 1px solid #DDE1E2;
    /*border-radius: 8px;*/
    font-family: "Manrope", serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    padding: 16px 20px;
    /*width: 100%;*/
    /*margin-top: 10px;*/
}

.tel-input-wrapper {
    margin-top: 10px;
}

form label input ~ .error-message, form label textarea ~ .error-message, form .error-message  {
    padding: 8px 0 0 0;
    display: flex;
    color: #d01313;
    font-size: 13px;
    font-family: "Manrope", serif;
    justify-content: left;
    text-align: left;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 0;
}
::placeholder {
    color: #383847;
}

.desc.exchange-rate {
    padding: 8px 0 0 16px;
}

label .desc.small {
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    line-height: 19px;
    text-align: left;
}
.form-row .desc.small {
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    line-height: 19px;
    text-align: left;
}
.new-request .form-row .desc.small {
    font-family: "Manrope", serif;
    font-weight: 500;
    font-size: 24px;
}
.new-request .form-row input {
    font-size: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
}
.link {
    color: #6B77FE;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
    font-weight: 700;
    font-family: "Manrope", serif;
    text-decoration: underline;
}
.link:hover {
    text-decoration: none;
}
label + .link {
    font-size: 14px;
    line-height: 19px;
    margin: 22px 0 0 auto;
    display: table;
}
.modal .checkbox-container {
    font-size: 0;
    margin-top: 22px;
}
.modal .checkbox-container input {
    display: none;
}
.modal .checkbox {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: #F6F6F6;
    border: 1px solid #DDE1E2;
}
.modal .checkbox::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url('../img/dot.svg');
    background-position: center;
    background-size: 8px;
    background-repeat: no-repeat;
    opacity: 0;
    transition: .3s;
}
.modal input:checked + .checkbox::before {
    opacity: 1;
}
.modal .checkbox-label {
    display: flex;
    /*align-items: center;*/
    cursor: pointer;
    column-gap: 12px;
}
.modal .checkbox-label .desc {
    position: static;
    margin-left: 12px;
    color: #000000;
    font-weight: 400;
    line-height: 21px;
    font-size: 14px;
    padding: 0;
    text-align: left;
    width: calc(100% - 40px);
}
.modal .checkbox-label .desc .link {
    line-height: 19px;
    font-size: 14px;
    text-decoration: none;
}
.modal .checkbox-container + .button {
    margin-top: 42px;
    width: 266px;
    max-width: 100%;
}
.reg-modal .checkbox-container {
    margin-top: 24px;
}
.top-modal .button {
    margin-top: 24px;
}
.top-modal .amount-wrapper {
    display: flex;
    column-gap: 10px;
}
.top-modal .amount-wrapper .buttons {
    display: flex;
    column-gap: 4px;
}
.top-modal .amount-wrapper .buttons .button {
    display: flex;
    margin-top: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    min-width: 58px;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px;
}
.top-modal .amount-wrapper > input {
    margin-top: 0;
}
.top-modal .amount-wrapper > input [type=number]::-webkit-inner-spin-button,
.top-modal .amount-wrapper > input [type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.top-modal .amount-wrapper > input[type=number] {
    -moz-appearance: textfield;
}

.top-modal .amount-wrapper > input[type=number]::-moz-number-spin-box {
    -moz-appearance: textfield;
}
.top2-modal .checkbox-container {
    margin-top: 16px;
}
.modal .form-container .title-amount {
    font-family: "Manrope", serif;
    font-size: 35px;
    font-weight: 700;
    margin: 2px 0 16px;
    color: #000;
    margin-bottom: 16px !important;
    justify-content: center;
}
.top2-modal .btn, .top-modal .btn, .pack-checkout-2-modal .btn  {
    padding: 18.5px 36.56px;
    font-size: 16px;
    font-weight: 600;
}
.cabinet-page {
    /*padding-top: 142px;*/
    /*background: linear-gradient(#fff 60%, #E0E0E2);*/
}
.cabinet-page .wrapper {
    position: relative;
}
.cabinet-page .wrapper .payment-result {
    min-height: 359px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 29px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    color: #000;
}
.cabinet-page .top {
    display: flex;
    align-items: center;
    margin-bottom: 52px;
    position: relative;
    justify-content: center;
}
.cabinet-page .top .link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.cabinet-page .top .link .img {
    width: 29px;
}
.cabinet-page .top .link .desc {
    margin-left: 12px;
    font-size: 14px;
    line-height: 18px;
    color: #595972;
    text-decoration: none;
}
.text-page .top .title {
    margin-left: 0;
}
.text-page .text {
    padding-bottom: 48px;
}
.cabinet-page .new-request .top {
    justify-content: center;
    position: relative;
}
.cabinet-page .new-request .top .title {
    margin-left: 0;
}
.cabinet-page .top .left {
    position: absolute;
    left: 0;
    top: -18px;
}
.cabinet-content-container {
    margin-bottom: 70px;
}
.cabinet-content {
    position: relative;
    display: flex;
    flex-direction: column;
    /*max-width: 1064px;*/
    margin: 72.5px auto 0 auto;
    row-gap: 48px;
}
.cabinet-content.payment-history {
    align-items: center;
}
.cabinet-content.payment-history .container {
    max-width: 742px;
    width: 100%;
}
.cabinet-content.payment-history .container + div {
    width: 100%;
}
.cabinet-content.payment-history .right-wrapper {
    overflow: auto;
}
.cabinet-content.payment-history table {
    font-family: "Manrope", serif;
    font-size: 16px;
}
.cabinet-content.payment-history table thead td {
    color: #999999;
}
.cabinet-content.profile .right-wrapper {
    display: flex;
    justify-content: center;
}
.cabinet-content.profile .right-wrapper .container {
    display: flex;
    max-width: 656px;
    flex: 1;
    flex-direction: column;
    row-gap: 116px;
}
.cabinet-content.profile .right-wrapper .container .form-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    row-gap: 48px;
}
.cabinet-content.profile .right-wrapper .container .form-container .title {
    font-weight: 700;
    font-size: 60px;
    line-height: 73px;
}
.cabinet-content.profile .right-wrapper .container .form-container form {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.cabinet-content.profile .right-wrapper .container .form-container .buttons{
    margin-top: 8px;
}
.cabinet-content .user-info .icon {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E5E9EA;
    border-radius: 100%;
    margin: 0 auto;
}
.cabinet-content .user-info .img {
    width: 38px;
}
.cabinet-content .user-info .name {
    margin-top: 22px;
    font-size: 18px;
    line-height: 21px;
    color: #000;
    font-family: "Manrope", serif;
    font-weight: 700;
}
.cabinet-content .user-info .email {
    font-size: 14px;
    line-height: 18px;
    color: #383847;
    margin-top: 8px;
}
.cabinet-content .user-info .nav {
    display: table;
    margin: 65px auto 0;
}
.cabinet-content .user-info .link {
    display: table;
    text-decoration: none;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    padding-left: 28px;
    position: relative;
}
.cabinet-content .user-info .link:before {
    content: '';
    width: 10px;
    height: 10px;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-image: url('../img/arrow-yellow.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.carousel-container {
    width: 100%;
}
.cabinet-content .left {
    width: 30%;
}
.cabinet-content .left-wrapper {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 48px 0 0;
}
.cabinet-content .left-wrapper + .button {
    display: table;
    margin: 50px auto 0;
    width: 100%;
}
.cabinet-content .right {
    /*width: calc(70% - 36px);*/
    margin-left: 36px;
}
.cabinet-content .request-right {
    /*width: 100%;*/
    padding: 0 40px 40px 40px;
    margin-left: 0;
    background: #FFFFFF;
    border-radius: 14px;
}
.cabinet-content .request-right .desc {
    color: #000;
}
.cabinet-content .request-history {
    background: transparent;
    padding: 0;
}
.cabinet-content.request-history .orders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 42px;
}

.cabinet-content.request-history .orders .img {
    cursor: pointer;
}
.cabinet-content.request-history .container .buttons {
    margin-top: 32px;
}
.cabinet-content.request-history .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 736px;
    flex: 1;
    width: 100%;
    /* row-gap: 48px; */
}
.cabinet-content.request-history .orders img {
    width: 100%;
}
.cabinet-content.request-history {
    align-items: center;
}
.cabinet-content .right-wrapper {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 40px 37px 40px;
}
.cabinet-content .cabinet-content__title {
    color: #000000;
    font-size: 60px;
    font-family: "Manrope", serif;
    font-weight: 700;
}
.cabinet-content .new-request .right-wrapper {
    margin-top: 0;
    background: transparent;
    border-radius: 0;
    max-height: unset;
    padding: 0;
}
.cabinet-content .request-history .right-wrapper {
    padding: 30px 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.cabinet-content .request-history .table-container {
    overflow: auto;
}
.cabinet-content .right-wrapper .title {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
}
.cabinet-content .right .img-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.cabinet-content .right .img-list .img {
    border-radius: 14px;
}
.cabinet-content .user-info {
    text-align: center;
}
.cabinet-content .balance-container {
    margin-top: 53px;
    padding: 42px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: linear-gradient(#FD26C5, #363EFF, #4BF9D3, #D7FF26);
    border-radius: 12px;
    position: relative;
}
.cabinet-content .balance-container::before {
    content: '';
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: #000;
    border-radius: 10px;
    position: absolute;
    left: 6px;
    top: 6px;
}
.cabinet-content .balance {
    text-align: center;
    flex: 1;
    position: relative;
}
.cabinet-content .balance .desc {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}
.cabinet-content .balance .title {
    margin-top: 12px;
}
.cabinet-content .balance-container .button {
    padding: 10px;
    max-width: 200px;
    width: 100%;
    margin: 36px auto 0;
    min-width: 0;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    background: transparent;
    color: #fff;
    border: 2px solid #FFFFFF;
}
.cabinet-content .nav {
    font-size: 0;
}
.cabinet-content .nav .link {
    font-size: 14px;
    font-weight: 700;
    font-family: "Manrope", serif;
    line-height: 19px;
    padding: 23px 16px;
    color: #595972;
    background: #323243;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 12px;
    display: inline-block;
    min-width: 172px;
    margin-right: 16px;
    text-align: center;
    margin-bottom: 17px;
}
.cabinet-content .nav .link.active {
    background: #6B77FE;
    color: #fff;
}
.cabinet-content .right .item .img {
    width: 100%;
    border-radius: 14px;
}
.cabinet-content .right .item,
.cabinet-content .right .item a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabinet-content .right .item a {
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 14px;
    width: 100%;
}
.cabinet-content .right .item .plus {
    width: 16px;
    margin-right: 14px;
}
.cabinet-content .right .item .desc {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}
.cabinet-content .right .list {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 24px;
}

.cabinet-content .new-request {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cabinet-content .new-request {
    padding: 0 25px;
}

.cabinet-content .request-left {
    width: 100%;
    /*max-width: 539px;*/
    flex: 1;
}
.cabinet-content .request-right {
    max-width: 395px;
    flex: 1;
}

.cabinet-content .request-right .img-container .row {
    display: flex;
    flex-direction: row;
}

.cabinet-content .request-right .img-container .row:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 19px;
}

.cabinet-content .request-right .img-container .row:nth-child(2) {
    justify-content: flex-end;
}

.cabinet-content .request-right .img-container .row:nth-child(3) {
    margin-bottom: 78px;
}

.cabinet-content .request-right .img-container .row:nth-child(4) {
    justify-content: flex-end;
}

.cabinet-content .request-right .img-container .row:first-child .text {
    position: relative;
    font-family: "Manrope", serif;
    font-size: 20px;
}

.cabinet-content .request-right .img-container .row:first-child .text.quote::before {
    position: absolute;
    top: -9px;
    left: -24px
}

.cabinet-content .request-left {
    display: flex;
    flex-direction: column;
    row-gap: 33px;
}

.cabinet-content .request-left .request-left__title {
    font-family: "Manrope", serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 73px;
}

.cabinet-content .request-left form {
    /*background: #F7F7F7;*/
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px 28px 12px 0px;
}

.cabinet-content .request-left form .sliders {
    max-width: 525px;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    /*margin-top: 18px;*/
}
.cabinet-content .request-left form .sliders .request-description {
    font-family: "Manrope", serif;
    text-align: left;
    font-size: 15px;
    color: #797777;
    line-height: 21px;
}
.cabinet-content .request-left form .sliders .section {
    padding: 0;
    margin-bottom: 15px;
}
.cabinet-content .request-left form .sliders #additional_params {
    margin-bottom: 0;
}
.cabinet-content .request-left form .sliders .section .ac {
    background-color: transparent;
    border: none;
}
.cabinet-content .request-left form .sliders .section .ac .ac-trigger:focus {
    color: #111;
}
.cabinet-content .request-left form .sliders .section .ac .ac-trigger {
    font-family: "Manrope", serif;
    font-size: 20px;
    padding-left: 0;
    padding-right: 0;
}
.cabinet-content .request-left form .sliders .section .ac.is-active .ac-panel {
    display: flex;
    flex-direction: column;
    row-gap: 17px;
}
.cabinet-content .request-left form .sliders .section .ac .ac-trigger:after {
    /*content: none;*/
    /*font-family: "Manrope", serif;*/
    /*font-size: 20px;*/
    height: 32px;
    right: -6px;
}
.cabinet-content .request-left form .sliders .section .ac .ac-panel .form-row:first-child {
    /*content: none;*/
    /*font-family: "Manrope", serif;*/
    /*font-size: 20px;*/
    /*height: 32px;*/
    justify-content: stretch;
    margin-top: 15px;
}
.cabinet-content .request-left form .sliders .section .ac .ac-panel .form-row:last-child {
    /*content: none;*/
    /*font-family: "Manrope", serif;*/
    /*font-size: 20px;*/
    /*height: 32px;*/
    justify-content: stretch;
}
.cabinet-content .request-left form .sliders .noUi-horizontal .noUi-tooltip {
    font-family: "Open Sans", sans-serif;
}

.cabinet-content .request-left form .sliders .form-row .noUi-handle {
    flex:1;
    max-width: 100px;
    background: linear-gradient(to right, #83FDD8, #1EECAE);
    box-shadow: none;
}

.cabinet-content .request-left form .sliders .form-row .label {
    flex:1;
    max-width: 160px;
}

.cabinet-content .request-left form .sliders .form-row .noUi-horizontal {
    height: 24px;
}


.cabinet-content .request-left form .sliders .form-row .noUi-horizontal .noUi-handle {
    width: 3px;
    right: -2px;
    background: #1A1C1F;
}


.cabinet-content .request-left form .sliders .slider-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 18px;
    flex: 1;
    /*padding-left: 15px;*/
}

.cabinet-content .request-left form .sliders .slider-wrapper.start {
    /*padding-left: 15px;*/
}

.cabinet-content .request-left form .sliders .slider-wrapper.end {
    /*padding-right: 15px;*/
}

.cabinet-content .request-left form .sliders .slider-wrapper .slider {
    max-width: unset;
    display: flex;
    align-items: center;
}

.cabinet-content .request-left form .sliders .slider-wrapper .slider .noUi-base {
    max-height: 16px;
}

.cabinet-content .request-left form .sliders .slider-wrapper .slider {
    border-radius: 0;
}

.cabinet-content .request-left form .sliders .slider-wrapper .slider .noUi-connects {
    border-radius: 0;
}

.cabinet-content .request-left form .sliders .slider-wrapper .slider .noUi-connect {
    background-color: #338700;
}

.cabinet-content .request-left form .sliders .slider-wrapper .slider .noUi-handle::after, .cabinet-content .request-left form .sliders .slider-wrapper .slider .noUi-handle::before {
    display: none;
}

.cabinet-content .request-left form .sliders .slider-wrapper .slider .noUi-handle {
    max-height: 20px;
    top: -1.8px;
    border-radius: 0;
}


.cabinet-content .request-left form .sliders .slider-wrapper__min, .cabinet-content .request-left form .sliders .slider-wrapper__max {
    font-family: sans-serif;
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    position: absolute;
    top: 32px;
}

.cabinet-content .request-left form .sliders .slider-wrapper__min {
    left: 0;
}
.cabinet-content .request-left form .sliders .slider-wrapper__max {
    right: 0;
}
.cabinet-content .request-left form .sliders .slider {
    max-width: 400px;
    flex: 1;
}


.cabinet-content .request-left form .sliders .slider {
    max-width: 400px;
}

.cabinet-content .request-left form .sliders .form-row:last-child {
    justify-content: space-between;
    margin-top: 0;
}

.cabinet-content .request-left form .form-row {
    display: flex;
    flex-direction: row;
    /*column-gap: 25px;*/
    margin-bottom: 15px;
}

.cabinet-content .request-left form .form-row.form-row_total {
    justify-content: space-between;
}

.cabinet-content .request-left form .form-row.form-row_general_error:last-child {
    margin-top: -48px;
    justify-content: flex-end;
}

/*.cabinet-content .request-left form .form-row input[type="radio"] {*/
/*    appearance: none;*/
/*    !* Safari support *!*/
/*    -webkit-appearance: none;*/
/*    border: 0.2rem solid #fff;*/
/*    !*background-color: var(--bg-color);*!*/
/*    border-radius: 50%;*/
/*    height: 25px;*/
/*    width: 25px !important;*/
/*    padding: 0;*/
/*    box-shadow: 0 0 0 1px var(#555555);*/
/*}*/

/*.cabinet-content .request-left form .form-row input[type="radio"]:hover {*/
/*    border-width: 0;*/
/*}*/

/*.cabinet-content .request-left form .form-row input[type="radio"]:checked {*/
/*    box-shadow: 0 0 0 1px var(--checked-color);*/
/*    background-color: var(--checked-color);*/
/*    border-width: 0.2rem;*/
/*}*/


.cabinet-content .request-left form .form-row input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: #F5F5F5;
    /* Not removed via appearance */
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 24px !important;
    height: 24px;
    padding: 0;
    /*border: 0.15em solid currentColor;*/
    border-radius: 50%;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

.cabinet-content .request-left form .form-row input[type="radio"]::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: scale(-0.5);
    display: none;
    /*transition: 120ms transform ease-in-out;*/
    box-shadow: inset 1em 1em #338700;
    /* Windows High Contrast Mode */
    background-color: CanvasText;
}

.cabinet-content .request-left form .form-row input[type="radio"]:checked::before {
    transform: scale(1);
    display: inline;
}

/*.cabinet-content .request-left form .form-row input[type="radio"]:focus {*/
/*    outline: max(2px, 0.15em) solid currentColor;*/
/*    outline-offset: max(2px, 0.15em);*/
/*}*/


/*.cabinet-content .request-left form .form-row input[type="radio"]:checked::before {*/
/*    transform: scale(1);*/
/*}*/


.cabinet-content .request-left form .form-row_column {
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 0;
}
.cabinet-content .request-left form .form-row {
    margin-top: 15px;
}
.cabinet-content .request-left form .form-row .form-row__price {
    margin-top: 19px;
    display: flex;
    justify-content: left;
    font-weight: 700;
    color: #000000;
    font-size: 18px;
    line-height: 19px;
    text-align: left;
    margin-bottom: 22px;
}
.cabinet-content .request-left form .form-row .form-row__button {
}
.cabinet-content .request-left form .form-row .radio-group {
    display: flex;
    flex-direction: row;
}
.cabinet-content .request-left form .form-row .radio-group__item {
    display: flex;
    font-family: "Manrope", serif;
    font-size: 14px;
    column-gap: 10px;
    color: #000000;
}
.cabinet-content .request-left form .form-row .radio-group__item input {
    width: auto;
}
.cabinet-content .request-left form .form-row .slider{
    flex: 1;
}
.cabinet-content .request-left form.request-error .input-wrapper {
    margin-top: 6px;
}
.cabinet-content .request-left label {
    flex: 1;
    padding-right: 30px;
    display: flex;
    align-items: center;
}
.cabinet-content .request-left label.error > .desc.small {
    height: 100%;
    padding-top: 22px;
}
.cabinet-content .request-left  #see_more_options label {
    padding-right: 0;
}
.cabinet-content .request-left label .input-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    /*align-items: center;*/
}
.cabinet-content .request-left input {
    margin-top: 0;
}
.cabinet-content .request-left label .desc {
    margin-right: 16px;
}
.cabinet-content .request-left form {
    text-align: center;
    max-width: 565px;
}
.cabinet-content .request-left .button {
    min-width: 180px;
    padding: 20px;
}
.cabinet-content .request-left .info .img {
    width: 24px;
    margin-right: 14px;
    filter: brightness(0) invert(1);
}
.cabinet-content .request-left .info .desc {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}
.cabinet-content .request-left .info {
    max-width: 950px;
    margin: 0 auto;
    padding: 34px 16px 26px;
    display: flex;
    align-items: flex-start;
}
.cabinet-content .books {
    width: 60%;
}
.cabinet-content .ai {
    width: 100%;
    margin-top: 46px;
    text-align: center;
}
.cabinet-content .ai .button {
    width: 307px;
    align-self: center;
    margin-top: 40px;
    padding: 20px;
}
.cabinet-content td {
    padding: 18px 12px;
    /*font-size: 14px;*/
    /*color: #383847;*/
    vertical-align: middle;
    border-bottom: 2px solid #F5F5F5;
}

.cabinet-content table {
    border-collapse: collapse;
    table-layout: fixed;
}

.cabinet-content table {
    width: 100%;
}

.cabinet-content thead td {
    /*font-size: 14px;*/
    line-height: 18px;
    padding: 0 12px 30px;
    color: #383847;
    /*font-family: "Manrope", serif;*/
}
.cabinet-content tbody tr:nth-child(odd) {
    /*background: #F7F7F7;*/
}
.cabinet-content tbody tr:last-child td {
    border-bottom: 0;
}
.cabinet-content td:first-child {
    /*padding-left: 30px;*/
    /*width: 20%;*/
    padding-left: 0;
}
.cabinet-content.payment-history table .status.pending {
    color: #F9A000;
}
.cabinet-content.payment-history table .status.success {
    color: #338700;
}
.cabinet-content.payment-history table .status.failed, .cabinet-content.payment-history table .status.error  {
    color: #ED0006;
}
.cabinet-content td:nth-child(2) {
    /*width: 20%;*/
}
.cabinet-content td:last-child {
    /*padding-right: 30px;*/
    /*text-align: right;*/
}
.cabinet-content .request-table-container td:last-child {
    text-align: center;
}
.cabinet-content .request-table-container thead td:last-child {
    width: 20%;
}
.cabinet-content td .img {
    width: 74px;
    border-radius: 14px;
}
.cabinet-content-history {
    padding: 0;
    display: block;
    padding-bottom: 42px;
}
.cabinet-content-history table {
    width: 100%;
}
.cabinet-content .pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #FFFFFF;
    border-radius: 0 0 12px 12px;
    padding-bottom: 28px;
    padding-right: 30px;
    padding-left: 30px;
}
.cabinet-content .pagination .item {
    font-size: 14px;
    line-height: 28px;
    width: 33px;
    text-align: center;
    margin: 0 1px;
    color: #000000;
    font-family: "Manrope", serif;
    font-weight: 700;
}
.cabinet-content .pagination .item.active {
    font-weight: 700;
}
.cabinet-content .pagination .arrow {
    background-image: url('../img/arrow.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 36px;
    height: 20px;
}
.cabinet-content .pagination .arrow.next {
    margin-left: 20px;
}
.cabinet-content .pagination .arrow.prev {
    margin-right: 20px;
    transform: scale(-1);
}
.cabinet-content .pagination .arrow.prev.disabled {
    background-image: url('../img/arrowDisabled.svg');
    transform: scale(1);
}
.cabinet-content .pagination .arrow.next.disabled {
    background-image: url('../img/arrowDisabled.svg');
    transform: scale(-1);
}
.cabinet-page .main {
    padding: 0 16px;
}
.text {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 24px;
}
.text .desc {
    margin-top: 36px;
    width: 100%;
}
.text .desc + .desc {
    margin-top: 48px;
}
.text .desc.short {
    margin-top: 48px;
    width: 50%;
}
.text .desc.short {
    padding-right: 18px;
}
.text .desc.short + .desc.short {
    padding-left: 18px;
    padding-right: 0;
}
.text .desc b {
    line-height: 200%;
}
.text-page .desc,
.text-page .title {
    color: #000;
}

/* LANGUAGE SELECTOR IN HEAD  */
.lang-selector {
    display: inline-block;
    position: relative;
    padding-right: 10px;
    margin-left: 20px;
}

.lang-selector select {
    padding: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    color: #fff;
    background: transparent;
    border-radius: 12px;
    text-align: center;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.lang-selector.black select {
    color: #000;
}

.lang-selector select option {
    background: #1A1C1F;
    color: #fff;
    font-weight: 700;
}

.lang-selector select:hover {
    opacity: 0.7;
}

.lang-selector::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    pointer-events: none;
}

.lang-selector.black::after {
    color: #000;
}

.lang-selector.open::after {
    content: "▲";
}

.select2-container .select2-selection--single .select2-selection__rendered {
    /*padding-left: 14px !important;*/
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    background: transparent;
    /*border: 1px solid #C1C1C1;*/
    border-radius: 8px;
    font-family: "Manrope", serif;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    line-height: 48px;
    padding: 9px 16px;
}
body .select2-container--default .select2-selection--single {
    background: transparent;
    border: 0;
    border-radius: 6px !important;
    height: 48px;
    width: 100%;
}
.select2-search--dropdown {
    display: none;
}
.select2-container {
    width: 100% !important;
    max-width: 80vw;
}
select.input + .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11px;
    right: 12px;
    background: url('../img/arrow-down.svg');
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}
.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(180deg);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    opacity: 0;
}
.select2-container--open .select2-dropdown--below {
    border-radius: 6px;
    margin-top: 0px;
    overflow: hidden;
    box-shadow: none;
    transform: translateY(1px);
    border-top: 1px solid #AAABB6;
    max-width: 80vw;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #AAABB6;
}
body .select2-container--default .select2-results__option--selected,
body .select2-results__option,
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
body .select2-container--default .select2-results__option--highlighted[aria-selected],
body .select2-container--default .select2-results__option[aria-selected=true] {
    background: #F0F2F3;
    color: #AAABB6;
    font-size: 12px;
    font-family: "Manrope", serif;
    font-weight: 400;
    line-height: 16px;
    display: flex;
    align-items: center;
    padding: 0 0 0 15px;
}
.select2-results__option {
    margin-top: 12px;
}
.select2-dropdown {
    background: #F0F2F3;
    border: 1px solid #AAABB6;
}
.select2-container--default .select2-results>.select2-results__options {
    padding-bottom: 12px;
    background: #F0F2F3;
}

.select2.select2-container  {
    width: 100% !important;
    padding: 2px 20px;
    margin-top: 12px;
}

.select2.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 13px;
}

.select2-container--default .select2-results > .select2-results__options {
    padding-bottom: 12px;
    background: #F0F2F3;
}

.select2-dropdown {
    background: #F0F2F3;
    border: 1px solid #AAABB6;
}

.select2.select2-container .select2-selection--single {
    background: transparent;
    border: 0;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
    text-align: left;
    padding-left: 0;
}

.text-page .text p {
    width: 100%;
    font-family: "Manrope", serif;
    line-height: initial;
}
.text-page .text strong {
    font-weight: 700;
}


.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 10;
}

.cookie-modal {
    background-color: #333344;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    border-radius: 8px;
}

.cookie-modal .button {
    margin: 16px 8px;
    width: 120px;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .question-mark img {
    width: 16px;
}

.tooltip .question-mark {
    position: relative;
    top: 3px;
    color: #007bff; /* Change the color to your preference */
    font-weight: bold;
    font-size: 16px;
    margin-left: 4px;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 160px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.download-img-wrapper .input-container:nth-child(2) {
    margin-bottom: 10px;
}

.download-img-wrapper .input-container .select2.select2-container {
    height: auto;
    padding: 2px 10px
}

.download-img-wrapper .input-container .select2-container--default .select2-selection--single {
    height: auto;
}

.download-img-wrapper .input-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 3px 16px;
}

.request-table-container .button {
    min-width: 140px;
    font-size: 12px;
    line-height: 5px;
}


/* media */

@media screen and (max-width: 1300px) {
    .home-page .section-3::before {
        width: 20px;
    }

    .home-page .section.intro-section {
        flex-direction: column;
        justify-content: center;

        row-gap: 90px;
    }

    .home-page .intro-section .left .intro-section__heading {
        max-width: unset;
        flex: 1;
        text-align: center;
    }

    .home-page .intro-section .left .intro-section__buttons {
        justify-content: center;
    }


}
@media screen and (max-width: 1200px) {
    .title.big {
        font-size: 56px;
        line-height: 76px;
    }
    .home-page .hero-section {
        padding: 164px 16px 0;
    }
    .home-page .hero-section .right {
        padding: 26px 52px;
    }
    .home-page .section-2 {
        padding: 165px 48px 16px;
    }
    .home-page .section-2 .block-2 {
        margin-top: 48px;
    }
    .page:before {
        height: 1160px;
    }
    .text-page:before {
        height: 90px;
    }

    .home-page .benefits-section .benefit-list {
        flex-direction: column;
        align-items: center;
        row-gap: 32px;
    }

    .home-page .benefits-section .benefit-list .benefit {
        width: 100%;
    }

    .home-page .benefits-section .benefits-section__head .head__desc {
        position: relative;
        top: 19px;
        text-align: center;
    }

    .home-page .benefits-section .benefits-section__head {
        flex-direction: column;
        align-items: center;
    }

    .home-page .our-mission img {
        display: none;
    }

    .home-page .our-mission .our-mission__title {
        text-align: center;
    }

    .home-page .our-mission .our-mission__info .info__text {
        max-width: unset;
    }

    .home-page .how-it-works .how-it-works__title {
        text-align: center;
    }

    .home-page .features .section__title {
        text-align: center;
    }

    .home-page .features .features__list {
        flex-direction: column;
        align-items: center;
    }

    .latest-generation-section .wrapper {
        margin-right: 0;
        margin-left: 0;
    }

    .footer .wrapper {
        flex-direction: column;
        row-gap: 16px;
    }

    .footer .static-pages {
        order: 1;
        align-items: center;
    }

    .footer .support {
        order: 2;
        align-items: center;
    }

    .footer .wrapper .company-info {
        order: 3;
        max-width: unset;
        text-align: center;
    }

    .footer .wrapper .links {
        order: 4;
        justify-content: center;
        display: flex;
        margin-right: 0;
        max-width: unset;
    }

    .footer .wrapper .support {
        margin-right: 0;
    }

    .footer .wrapper .support .support__email .text {
        justify-content: center;
    }

    .section.section-packs .section__title {
        text-align: center;
    }

    .cabinet-content .new-request .request-left {
        align-items: center;
        max-width: unset;
    }

    .cabinet-content .new-request .request-right {
        display: none;
    }

    .footer .wrapper .links ul {
        justify-content: center;
    }
}
@media screen and (max-width: 1100px) {
    .home-page .section-2 .shapes {
        left: calc(50% + 510px);
    }
    .home-page .section-2 .block-1 {
        width: 70%;
        max-width: 712px;
    }
    .home-page .section-2 .block-4 {
        margin-top: 52px;
        width: 100%;
    }
    .home-page .section-2 .block-3 {
        margin-top: 62px;
    }
    .home-page .section-2 .block-5 {
        margin-top: 52px;
        width: 100%;
    }
    .home-page .section-2 .block-6 {
        margin-top: 52px;
    }
    .footer .block-4 .button {
        width: 100%;
        max-width: 273px;
    }
    .home-page .section-3 .block-3 {
        margin-top: 77px;
    }
    .home-page .section-3 {
        padding-bottom: 48px;
    }
    .home-page .section-3 .icon {
        width: 160px;
        height: 160px;
    }
    .home-page .section-3 .icon .img {
        width: 80px;
    }
    .home-page .section-3 .path {
        display: none;
    }
    .home-page .section-3 .row:nth-child(3) .block-1 {
        padding-left: 100px;
    }
    .home-page .section-3 .block-1 {
        width: 40%;
    }
    .home-page .section-3 .row:nth-child(2) .block-1 {
        padding-left: 100px;
    }
    .home-page .section-3 .wrapper .row + .row {
        margin-top: 64px;
    }
    .footer .social-list .item {
        margin-bottom: 16px;
        display: inline-block;
    }
    .footer .block-1 .desc {
        margin-top: 40px;
    }
    .footer .block-2 {
        width: 20%;
    }
    .cabinet-content .carousel-container {
        padding-right: 24px;
        padding-left: 64px;
    }
    .cabinet-content .balance {
        padding-left: 0;
    }
    .cabinet-content .request-left {
        padding-top: 0;
    }
    .cabinet-content .request-left .info {
        margin-top: 24px;
    }
    .cabinet-content-container {
    }
    .cabinet-content td:nth-child(2) {
        width: 10%;
    }

    .header .wrapper {
        grid-template-columns: 1fr auto;
        grid-template-rows: repeat(2, 1fr);
        margin: 0;
        row-gap: 16px;
        padding-top: 24px;
    }

    .header .wrapper .logo {
        align-items: center;
    }

    .header .wrapper > .links {
        grid-area: 2 / 1 / 3 / 2;
    }

    .header .wrapper > .right {
        display: flex;
        justify-content: flex-end;
        grid-area: 2 / 2 / 3 / 3;
    }

    .header .account .account-title {
        margin: 0 0 40px 0;
        text-align: center;
    }

    .header .account .account-info .balance .balance__info {
        flex-direction: column;
        align-items: center;
        row-gap: 36px;
    }

    .header .account .account-info .balance .balance__info .right {
        order: 1;
    }

    .header .account .account-info .balance .balance__info .left {
        order: 2;
    }

    .cabinet-content .request-left .request-left__title {
        text-align: center;
    }

    .section.latest-generation-section .section__title {
        text-align: center;
    }

    .section.latest-generation-section .carousel-container {
        width: unset;
    }
}

@media screen and (max-width: 900px) {
    .header > .wrapper {
        display: flex;
        flex-direction: column;
    }

    .header .links {
        justify-content: center;
    }

    .header .wrapper .right {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .home-page.page:before {
        display: none;
    }
    .home-page .hero-section::before {
        content: '';
        width: 100%;
        height: 100%;
        min-width: 1920px;
        background-image: url('../img/bg.png');
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }
    .button {
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 14px;
    }
    .button.green {
        font-size: 14px;
        padding: 15px 0;
    }
    .title.big {
        font-size: 42px;
        line-height: 56px;
        text-align: center;
    }
    .desc {
        font-size: 18px;
        line-height: 32px;
    }
    .header .right .desc {
        margin-right: 24px;
    }
    .header .button {
        min-width: 0;
    }
    .header > .wrapper {
        flex-direction: column;
        align-items: center;
    }
    .header .right {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 12px;
        gap: 15px;
    }

    .footer .wrapper .top {
        flex-direction: column;
    }
    .footer .payment-method-list {
        flex-wrap: wrap;
    }
    .section-packs .wrapper {
        gap: 32px;
    }
/* LANGUAGE SELECTOR IN HEAD 768px  */
    .lang-selector select {
        font-size: 14px;
        line-height: 22px;
        padding-left: 12px;
        border-radius: 8px;
        text-align: left;
        min-width: 100px;
    }
    .lang-selector::after {
        right: 10px;
    }

    .desc.small.hover-link.login-open{
        margin-right: 0px;
    }


    .home-page .hero-section .wrapper {
        flex-direction: column;
    }
    .home-page .hero-section .cube {
        display: none;
    }
    .home-page .hero-section .left {
        width: 100%;
        text-align: center;
    }
    .home-page .hero-section .right {
        width: 100%;
        margin-top: 24px;
    }
    .home-page .hero-section .right {
        padding: 26px 32px;
    }
    .home-page .hero-section .button {
        margin-top: 24px;
    }
    .home-page .hero-section {
        padding-bottom: 48px;
    }
    .carousel-container {
        margin-top: 100px;
    }
    .carousel {
        margin-top: 24px;
    }
    .home-page .section-2 .shapes {
        display: none;
    }
    .home-page .section-2 .block-1 {
        width: 100%;
    }
    .home-page .section-2 .block-2 .divider {
        max-height: 120%;
    }
    .home-page .section-2 .block-num .desc,
    .home-page .section-2 .block-4 .desc {
        margin-top: 0;
    }
    .home-page .section-2 {
        padding: 48px 16px;
    }
    .home-page .section-2 .right {
        display: none;
    }
    .home-page .section-3 .block-1,
    .home-page .section-3 .row:nth-child(2) .block-1,
    .home-page .section-3 .row:nth-child(3) .block-1 {
        width: 100%;
        padding-left: 0;
    }
    .home-page .section-3 .icon {
        margin: 0 auto;
    }
    .home-page .section-3 .shapes2,
    .home-page .section-3 .shapes3 {
        display: none;
    }
    .home-page .section-3 .block-2 {
        width: 100%;
        text-align: center;
        padding-left: 0;
        margin-top: 24px;
    }

    .home-page .section-3 .desc.small {
        margin: 24px auto 0;
    }
    .home-page .section-4 {
        padding: 32px 16px 48px;
    }
    .home-page .section-4 .logo {
        margin-top: 32px;
    }
    .slick-arrow {
        top: -60px;
    }
    .slick-next {
    }
    .footer {
        padding: 32px 16px;
    }
    .footer .wrapper {
        flex-direction: column;
        text-align: center;
    }
    .footer .block-1 {
        width: 100%;
        padding-right: 0;
    }
    .footer .social-list .item {
        margin: 0 8px 16px;
    }
    .footer .block-1 .desc {
        margin-top: 16px;
    }
    .footer .block-2 {
        width: 100%;
        margin-top: 32px;
        padding: 0;
    }
    .footer .block-2 .item,
    .footer .block-2 .item:last-child {
        margin: 0 auto 16px;
    }
    .footer .block-3 {
        width: 100%;
        margin-top: 32px;
        padding: 0;
    }
    .footer .block-3 .desc-3 {
        margin-top: 16px;
    }
    .footer .block-4 {
        width: 100%;
        padding: 0;
        margin-top: 32px;
        text-align: center;
    }
    .footer .payment-method-list {
        margin-top: 24px;
        justify-content: center;
    }
    .footer .payment-method-list .img {
        margin: 0 16px;
    }
    .cabinet-page .main {
        padding-bottom: 32px;
    }
    .cabinet-content {
        flex-direction: column;
        margin-top: 16px;
    }
    .cabinet-content .left {
        width: 100%;
    }
    .cabinet-content .user-info .name {
        margin-top: 16px;
    }
    .cabinet-content .user-info .nav {
        margin: 24px auto 0;
    }
    .cabinet-content .right {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
    }
    .cabinet-content .balance-container {
        flex-direction: column;
    }
    .cabinet-content .left-wrapper + .button {
        margin-top: 24px;
    }
    .cabinet-content .nav .link {
        margin-left: 16px;
    }
    .cabinet-content .balance-container .button {
        margin: 24px auto 0;
        max-width: 180px;
    }
    .cabinet-page .top {
        padding: 24px 16px 18px;
    }
    .cabinet-page .top .title {
        margin-left: 32px;
    }
    .cabinet-content .carousel-container {
        padding: 32px 32px 0;
    }
    .cabinet-content .request-left {
        padding-top: 16px;
    }
    .cabinet-content .request-left form.request-error .input-wrapper {
        margin-top: 0;
    }
    .cabinet-page .shapes4 {
        display: none;
    }
    .cabinet-content .request-right {
        padding-top: 32px;
        flex-direction: column;
    }
    .cabinet-content .request-left form {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .cabinet-content .books {
        width: 100%;
    }
    .cabinet-content .ai {
        width: 100%;
        padding-left: 0;
        padding-top: 24px;
        text-align: center;
    }
    .cabinet-content .ai .button {
        margin-top: 24px;
    }
    .cabinet-content .pagination {
        flex-wrap: wrap;
    }
    .cabinet-content-history .table-container {
        overflow: auto;
    }
    .cabinet-content thead td {
        padding: 12px;
    }
    .cabinet-content td:first-child {
        /*width: auto;*/
        /*padding-left: 16px;*/
    }
    .cabinet-content td:last-child {
        width: auto;
        padding-right: 16px;
    }

    .cabinet-content tbody td:last-child {
        width: auto;
        padding-right: 16px;
    }
    .cabinet-content-history table {
        min-width: 600px;
    }
    .text .desc.short {
        width: 100%;
        padding-right: 0;
    }
    .text .desc.short + .desc.short {
        padding-left: 0;
    }
    .text {
        padding-bottom: 0;
    }
    .modal .wrapper {
        display: flex;
        flex-wrap: wrap;
    }
    .modal .form-container {
        width: 100%;
        padding: 24px;
    }
    label + label {
        margin-top: 24px;
    }
    .modal .checkbox-container {
        width: 100%;
    }
    .modal .checkbox-label .desc {
        width: auto;
    }
    .modal .checkbox-container + .button {
        margin-top: 24px;
    }
    .modal .form-container {
        min-height: 0;
        background-size: 100% 160px;
    }
    .modal .side {
        width: 100%;
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
    }
    .modal .side .desc {
    }
    .modal .button.white {
    }
    .modal .close {
        top: 12px;
        right: 12px;
    }
    .reg-modal .side {
        order: 2;
    }
    .home-page .hero-section .button {
        width: 240px;
    }
    .home-page .section-2 .wrapper {
        flex-direction: column;
    }
    .home-page .section-2 .left {
        width: 100%;
    }
    .home-page .section-2 .right {
        padding-left: 0;
        width: 100%;
        margin-top: 24px;
    }
    .home-page .section-2 .list {
        display: block;
    }
    .home-page .section-2 .list .item {
        margin-bottom: 24px;
    }
    .home-page .section-3 .wrapper{
        display: block;
        padding-top: 48px;
        padding-bottom: 32px;
    }
    .home-page .section-3 .left {
        width: 100%;
        padding-bottom: 0;
    }
    .home-page .section-3 .list .desc {
        margin-top: 16px;
    }
    .home-page .section-3 .list .item:nth-child(2) .decor1 {
        display: none;
    }
    .home-page .section-3 .list .item:nth-child(2) .decor2 {
        display: none;
    }
    .home-page .section-3 .list .item:nth-child(2) {
        width: 100%;
        margin: 32px auto 0 0;
    }
    .home-page .section-3 .right {
        display: none;
    }
    .home-page .section-3 .text-1,
    .home-page .section-3 .text-2,
    .home-page .section-3 .text-3,
    .home-page .section-3 .list .item:nth-child(3) .decor1,
    .home-page .section-3 .list .item:nth-child(3) .decor2 {
        display: none;
    }
    .home-page .section-3 .list .item:nth-child(3) {
        margin-top: 32px;
    }

    .home-page .section-3 .title {
        font-size: 24px;
        line-height: 32px;
    }
    .home-page .section-3 .slick-slider {
        width: 100%;
    }
    .home-page .section-4 .item,
    .home-page .section-4 .item:nth-child(2) {
        margin-bottom: 42px;
    }
    .home-page .section-3 .list .desc {
        margin: 16px auto 0;
        text-align: center;
    }
    .home-page .section-4 .item .title {
        font-size: 48px;
        line-height: 56px;
    }
    .home-page .section-4 .item:nth-child(3) {
        margin-bottom: 48px;
    }
    .footer .wrapper {
        padding-bottom: 0;
        padding-top: 0;
    }
    .footer .left {
        width: 100%;
    }
    .footer .center {
        width: 100%;
        margin-top: 32px;
    }
    .footer .right {
        width: 100%;
    }
    .footer .right .item,
    .footer .right .item:last-child {
        margin: 0 auto 24px;
    }
    .footer .left .item {
        margin: 0 auto 16px;
    }
    .footer .center {
        flex-direction: column;
    }
    .footer .right {
        text-align: center;
        padding-top: 24px;
    }
    .cabinet-page .top .left {
        position: static;
        transform: none;
    }
    .cabinet-page .top {
        display: block;
        margin-bottom: 0;
        padding: 0;
    }
    .cabinet-page .top .left {
        width: 100%;
    }
    .cabinet-page .top .link {
        justify-content: center;
    }
    .cabinet-page .top .title {
        text-align: center;
        margin: 24px auto 0;
    }
    .text-page .top .title {
        text-align: left;
    }
    .cabinet-content .nav {
        text-align: center;
        margin-top: 24px;
    }
    .cabinet-content .right-wrapper {
        padding: 16px;
    }
    .cabinet-content .right .list {
        display: block;
    }
    .cabinet-content .right-wrapper {
        max-height: unset;
    }
    .cabinet-content .right-wrapper .title {
        text-align: center;
    }
    .cabinet-content .right .item, .cabinet-content .right .item a {
        margin-bottom: 16px;
    }
    .cabinet-content .right .arrow {
        margin-bottom: 16px;
    }
    .cabinet-content table {
        min-width: 500px;
    }
    .cabinet-content .request-left form {
        flex-direction: column;
    }
    .cabinet-content .request-left label {
        align-items: stretch;
        flex-direction: column;
        padding-right: 0;
    }
    .cabinet-content .request-left label .desc {
        margin-right: 0;
        margin-bottom: 16px;
    }
    .cabinet-content .request-left .button {
        margin-top: 16px;
        width: 100%;
    }
    .cabinet-content .request-left .info {
        margin-top: 0;
    }
    .cabinet-content .request-right {
        padding: 16px;
    }
    .cabinet-content .right .img-list {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .cabinet-content .ai {
        margin-top: 0;
    }
    .cabinet-content .ai .button {
        width: 200px;
    }
    .modal.top-modal .form-container,
    .modal.top-modal2 .form-container {
        background-size: 100% 85px;
    }

    .update-profile-modal form button[type="submit"] {
        margin-top: 30px;
    }

    .cabinet-content .request-left .info .desc {
        color: #000;
    }
    .cabinet-page:before {
        height: 370px;
    }
    .text-page:before {
        height: 132px;
    }
    .cabinet-content .request-left form .form-row .slider {
        flex: auto;
        /*margin-left: 16px;*/
    }
    /*.cabinet-content .request-left form .sliders .slider-wrapper.start, .cabinet-content .request-left form .sliders .slider-wrapper.end {*/
    /*    padding-right: 0;*/
    /*    padding-left: 0;*/
    /*}*/


    .cabinet-content .request-left form {
        /*padding-left: 28px;*/
    }
    .cabinet-content .request-left form .form-row .radio-group {
        justify-content: left;
        margin-right: 18px;
        flex-wrap: wrap;
        row-gap: 10px;
        column-gap: 7px;
    }
    .cabinet-content .request-left form .form-row .radio-group .radio-group__item input {
        margin-left: 0;
    }
    .cabinet-content .request-left form .sliders {
        row-gap: 15px;
    }
    .cabinet-content .request-left form .sliders .form-row:first-child {
        margin-top: 0;
    }
    .cabinet-content .request-left form .sliders .form-row .label {
        max-width: unset;
        text-align: left;
    }
    .cabinet-content .request-left form .sliders .form-row{
        flex-direction: column;
        row-gap: 20px;
    }
    .cabinet-content .request-left form .sliders .form-row:last-child {
        flex-direction: column;
    }
    .cabinet-content .request-left form .sliders .form-row:last-child .form-row__price {
        justify-content: stretch;
    }


    .cabinet-page .account-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cabinet-content .cabinet-content__title {
        text-align: center;
    }

    .cabinet-page .account-nav ul {
        flex-direction: column;
    }

    .cabinet-page .account-nav ul li:not(:last-child)::after {
        content: none;
    }

    .cabinet-page .account-nav ul li {
        text-align: center;
        padding: 23px 0;
    }

    .cabinet-page .account-nav ul li:not(:last-child) {
        padding-bottom: 0;
    }
}

.home-page .section-4 .wrapper {
    justify-content: space-between;
    width: 100%;
    padding: 191px 0px;
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
}
.home-page .section-4 .left {
    display: flex;
    align-items: center;
    width: 50%;
}
.home-page .section-4 .right {
    max-width: 589px;
    width: 50%;
}
.home-page .section-4 .title,
.home-page .section-4 .title.middle {
    color: #000;
}
.home-page .section-4 .title {
    line-height: 48px;
    font-size: 38px;
    margin-bottom: 42px;
}
.home-page .section-4 .title.middle {
    line-height: 38px;
    font-size: 24px;
}
.section-4 .images-wrapper {
    background: linear-gradient(to left, rgba(8,90,228,.55), #EA5EFF00);
    background-size: cover;
    border-radius: 12px;
    display: flex;
    width: 100%;
}
.section-4 .images-wrapper .images {
    display: flex;
    width: 100%;
}
.section-4 .images img {
    width: 331px;
}
.section-4 .desc {
    color: #383847;
    line-height: 24px;
}
.section-4 .block {
    margin-bottom: 42px;
}
.section-4 .block:last-child {
    margin-bottom: 0px;
}
.section-4 .block .icon {
    width: 45px;
    margin-bottom: -20px;
}
.section-4 .block .icon img {
    width: 90px;
    position: relative;
    left: -20px;
}
.section-4 .block .title {
    margin-bottom: 42px;
}
.home-page .section-4 .title.middle {
    margin-bottom: 20px;
}
.section.section-5 {
    padding: 97px 240px;
    background: url('/img/testimonial-bg.png') no-repeat;
    background-size: cover;
}
.section.section-5 .carousel-container {
    margin-top: 0px;
}
.section.section-5 .item {
    padding: 0 8px;
}
.section.section-5 .item .wrpr {
    background: #fff;
    display: flex;
    border-radius: 8px;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 48px 34px;
}
.carousel2 {
    margin-top: 42px;
}
.section.section-5 .text {
    min-height: 120px;
    font-family: "Manrope", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #383847;
    text-align: center;
    align-items: center;
}
.section.section-5 .info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.section.section-5 .info img {
    width: 42px;
    height: 42px;
}
.section.section-5 .info span {
    font-family: "Manrope", serif;
    font-weight: 600;
    font-size: 18px;
    color: #000;
}
@media screen and (max-width: 1600px) {
    .section-4 .images img {
        width: 37%;
    }
}
@media screen and (max-width: 1282px) {
    .home-page .section-4 .wrapper {
        padding: 70px 0px;
    }
    .home-page .section-4 .right {
        width: 40%;
    }
}
@media screen and (max-width: 1115px) {
    .section.section-5 {
        padding: 97px 16px;
    }
}
@media screen and (max-width: 1000px) {
    .home-page .section-4 .left {
        display: none;
    }
    .home-page .section-4 .right {
        max-width: 100%;
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .home-page .section-4 .wrapper {
        padding: 50px 0px;
    }

    .home-page .how-it-works .how-it-works__video {
        flex-direction: column;
        align-items: center;
    }

    .home-page .how-it-works .how-it-works__video video {
        flex-direction: column;
        margin-bottom: 36px;
    }

    .home-page .how-it-works .how-it-works__video .right {
        row-gap: 36px;
        flex: 1;
        align-items: center;
    }

    .latest-generation-section .section__title {
        margin-bottom: 100px;
        text-align: center;
    }

    .section-packs .section__title {
        text-align: center;
    }
}
@media screen and (max-width: 469px) {
    .carousel2 .slick-arrow {
        top: -86px;
        width: 50px;
    }
    .carousel2 .slick-prev {
        right: 70px;
    }

    .modal.top3-modal .button-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .top-modal .amount-wrapper {
        flex-direction: column;
        row-gap: 12px;
    }

    .top-modal .amount-wrapper .buttons {
        justify-content: center;
        column-gap: 10px;
    }

    .top-modal .amount-wrapper .buttons .button {
        padding: 10px;
        min-width: 68px;
    }

    .header .account {
        margin-right: 0;
        margin-left: 0;
    }

    .header {
        padding: 0 16px;
    }

    .cabinet-page .wrapper {
        margin-right: 0;
        margin-left: 0;
    }

    .cabinet-content .request-left form .sliders .form-row:last-child .form-row__price {
        justify-content: center;
    }
}
.social-list {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.payment-processing .payment-result {
    flex-flow: column;
    margin-bottom: 200px;
}
@media screen and (max-width: 2250px) {
    .payment-processing .payment-result {
        margin-bottom: 100px;
    }
}
@media screen and (max-width: 1600px) {
    .payment-processing .payment-result {
        margin-bottom: auto;
    }
}
@media screen and (max-width: 768px) {
    .payment-processing:before {
        height: 100%;
    }
    .payment-processing > .main {
        padding-bottom: 0px;
    }
    .header nav.links ul {
        gap: 6px 12px;
    }
    .home-page .intro-section .left .intro-section__heading,
    .home-page .our-mission .our-mission__title,
    .home-page .section .section__title,
    .section.latest-generation-section .section__title,
    .home-page .features .section__title,
    .section.section-packs .section__title,
    .cabinet-content.profile .right-wrapper .container .form-container .title,
    .cabinet-content .cabinet-content__title {
        font-size: 48px;
        line-height: 56px;
        margin: 0;
    }
    .home-page .features .section__title {
        margin-bottom: 48px;
    }
    .section.latest-generation-section .section__title {
        margin-bottom: 100px;
    }
    .home-page .our-mission .our-mission__info .info__text {
        font-size: 16px;
        line-height: 24px;
        margin-top: 16px;
    }
    .home-page .how-it-works .how-it-works__img {
        margin-top: 24px;
    }
    .pack-image, .pack-preview-modal .pack-image img,
    .pack-image img, .pack-preview-modal .pack-image img {
        max-width: 90px;
        max-height: 90px;
    }
    .pack-card, .pack-preview-modal .pack-card {
        justify-content: flex-start;
    }
    .footer .wrapper {
        padding: 0;
    }
    .footer .static-pages a + a {
        margin-top: 12px;
    }
    .header .balance .left .my-balance {
        margin-right: 0;
    }
    .header .account .account-info .balance .balance__info .left {
        gap: 16px;
        flex-wrap: wrap;
    }
    .input-container input, .input-container select {
        width: 100%;
        box-sizing: border-box;
    }
}
