#zz_frame::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}
#zz_frame {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 999;
}
#zz_media {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: 0 auto;
    /*max-width: 500px;*/
    display: inline-block;
}
#zz_media img {
    width: 100%;
    box-shadow: 0px 0px 20px 1px rgb(0, 0, 0);
}
#zz_frame .zz_close {
    color: #fff;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 26px;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}
#zz_frame .zz_controls {
    color: #fff;
    position: absolute;
    left: 10px;
    top: 10px;
}
#zz_frame .zz_controls button {
    background: #000;
    border: 0;
    color: #fff;
    padding: 8px;
    margin-right: 5px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

.catalog-description {
    margin-bottom: 30px;
    padding: 20px 0;
}

.wrap {
    max-width: 1380px; /* или другая подходящая ширина */
    margin: 0 auto;
    padding: 0 15px;
}

.production__desc {
    width: 100%;
    /*height: auto;
    overflow: visible;*/
}

.production__desc h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.production__desc p {
    margin-bottom: 15px;
}

/* Медиа-запрос для адаптивности на мобильных устройствах */
@media (max-width: 768px) {
    .catalog-description {
        margin-bottom: 15px;
    }
}

.back-to-blog {
    color: #142e76;
}

/* Description for bottom text*/
.description {
    padding-bottom: 70px;
    padding-top: 30px;
    overflow-y: scroll;
    max-height: 400px;
}

.description h2 {
    color: #142e76;
}

.description h3 {
    font-weight: 500;
    color: #142e76;
}

.description p,
.description li {
    color: rgb(20 46 118 / 0.5);
}

.description li:not(:last-child) {
    margin-bottom: 16px;
}

.description p:not(:last-child),
.description ul:not(:last-child),
.description ol:not(:last-child) {
    margin-bottom: 20px;
}

.description ul,
.description ol {
    padding-left: 20px;
}

.description a {
    color: #142e76;
}

@media (max-width: 767px) {
    .description h2,
    .description h3 {
        font-size: 20px;
        margin-top: 26px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .description {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (min-width: 768px) {
    .description h2,
    .description h3 {
        font-size: 26px;
        margin-top: 46px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 18px;
        line-height: 1.2;
    }
}

.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-checkbox {
    color: #ccc;
    font-size: 12px;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
    color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #2196f3;
    border-color: #2196f3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.lang {
    position: relative;
    padding-left: 32px;
}

.lang .header-chose__btn {
    transform: translateY(3px);
}

.lang__box {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    max-height: 20px;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: 0.2s max-height;
    background-color: #f4f6fc;
}

.lang--open .lang__box {
    max-height: 200px;
}

a.lang__btn {
    margin: 8px 0;
}

span.lang__btn {
    margin-bottom: 8px;
    order: -1;
}

.lang__btn:not(:first-child):before {
    display: none;
}

@media (min-width: 1025px) {
    .search {
        max-width: 280px;
    }
}

@media (min-width: 1025px) and (max-width: 1119px) {
    .topnav {
        gap: 15px;
    }
}

/* about */

@media (max-width: 767px) {
    .about-page {
        padding-bottom: 55px;
    }
}

@media (min-width: 768px) {
    .about-page {
        padding-bottom: 83px;
    }
}

.about-us__box {
    display: grid;
    align-items: flex-start;
    padding-bottom: 53px;
}

@media (max-width: 1024px) {
    .about-us__box {
        gap: 30px;
    }
}
@media (min-width: 1025px) {
    .about-us__box {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1025px) and (max-width: 1249px) {
    .about-us__box {
        gap: 30px;
    }
}
@media (min-width: 1250px) {
    .about-us__box {
        gap: 68px;
    }
}

.about-us-desc {
    font-weight: 400;
    line-height: 31px;
    color: #0c1839;
}

@media (max-width: 767px) {
    .about-us-desc {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .about-us-desc {
        font-size: 18px;
    }
}

.about-us-desc ul,
.about-us-desc ol {
    padding-left: 20px;
}

.about-us-desc p,
.about-us-desc li {
    color: #848a9c;
}

.about-us-desc p:not(:last-child),
.about-us-desc ul:not(:last-child),
.about-us-desc ol:not(:last-child) {
    margin-bottom: 26px;
}

.about-us-desc li:not(:last-child) {
    margin-bottom: 6px;
}

.about-us-desc li::marker {
    font-size: 20px;
    color: #2f5fe3;
}

.about-us__text {
    width: 100%;
}

.about-us__img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.about-us__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us h1,
.about-us-desc h2 {
    color: #142e76;
    font-weight: 400;
    line-height: 1.3;
}

.about-us-desc h2 {
    max-width: 920px;
    text-wrap: pretty;
}

@media (max-width: 767px) {
    .about-us h1,
    .about-us-desc h2 {
        margin-bottom: 23px;
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .about-us h1,
    .about-us-desc h2 {
        margin-bottom: 15px;
        font-size: 50px;
    }
}

/* benefit */
@media (max-width: 767px) {
    .benefit {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

@media (min-width: 768px) {
    .benefit {
        padding-top: 53px;
        padding-bottom: 60px;
    }
}

.benefit__box {
    display: grid;
}

@media (max-width: 767px) {
    .benefit__box {
        margin-top: 40px;
    }
}

@media (min-width: 768px) {
    .benefit__box {
        margin-top: 66px;
    }
}

@media (max-width: 559px) {
    .benefit__box {
        gap: 60px;
    }
}

@media (min-width: 560px) and (max-width: 1149px) {
    .benefit__box {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
}

@media (min-width: 1150px) {
    .benefit__box {
        grid-template-columns: repeat(3, 1fr);
        gap: 66px;
    }
}

.benefit__item {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 12px;
    border: 1px solid #2f5fe3;
}

@media (max-width: 767px) {
    .benefit__item {
        padding: 40px 36px 35px;
    }
}

@media (min-width: 768px) {
    .benefit__item {
        padding: 60px 32px 35px;
    }
}

@media (max-width: 1149px) {
    .benefit__item {
        max-width: 460px;
        margin: 0 auto;
    }
}

.benefit__item:hover .benefit-icon {
    max-width: 159px;
}

.benefit-icon {
    width: 100%;
    max-width: 117px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background-color: #fcfdff;
    transition: 0.3s max-width;
}

.benefit-icon__box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-25px);
}

.benefit-icon img {
    width: 50px;
    height: 50%;
}

.benefit__label {
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    color: #2f5fe3;
    font-weight: 700;
}

.benefit__desc {
    color: #848a9c;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    text-wrap: balance;
}

/* rewies */
@media (max-width: 767px) {
    .rewies {
        padding-top: 45px;
    }
}

@media (min-width: 768px) {
    .rewies {
        padding-top: 53px;
    }
}

.rewies__box {
    display: grid;
}

@media (max-width: 767px) {
    .rewies__box {
        margin-top: 40px;
        padding-bottom: 55px;
    }
}

@media (min-width: 768px) {
    .rewies__box {
        margin-top: 66px;
        padding-bottom: 83px;
    }
}

@media (max-width: 559px) {
    .rewies__box {
        gap: 60px;
    }
}

@media (min-width: 560px) and (max-width: 1149px) {
    .rewies__box {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
}

@media (min-width: 1150px) {
    .rewies__box {
        grid-template-columns: repeat(3, 1fr);
        gap: 66px;
    }
}

.rewies__item {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 12px;
    border: 1px solid #2f5fe3;
}

@media (max-width: 767px) {
    .rewies__item {
        padding: 40px 36px 35px;
    }
}

@media (min-width: 768px) {
    .rewies__item {
        padding: 60px 32px 35px;
    }
}

@media (max-width: 1149px) {
    .rewies__item {
        max-width: 460px;
        margin: 0 auto;
    }
}

.rewies__item:hover .rewies-icon {
    max-width: 159px;
}

.rewies-icon {
    width: 100%;
    max-width: 117px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background-color: #fcfdff;
    transition: 0.3s max-width;
}

.rewies-icon__box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-25px);
}

.rewies-icon img {
    width: 50px;
    height: 50%;
}

.rewies__label {
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    color: #2f5fe3;
    font-weight: 700;
}

.rewies__desc {
    color: #848a9c;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    text-wrap: balance;
}

.rewies__btn {
    width: 100%;
    max-width: 267px;
    height: 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2f5fe3;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    border-radius: 12px;
    transition: 0.3s all;
    cursor: pointer;
}
.rewies__btn:hover,
.rewies__btn:focus {
    background-color: #142e76;
}

/* slick-dots */
.slick-dots {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .slick-dots {
        gap: 0 10px;
    }
}

@media (min-width: 768px) {
    .slick-dots {
        gap: 0 19px;
    }
}

.slick-dots button {
    display: block;
    width: 11px;
    height: 11px;
    background-color: #d9d9d9;
    transition: 0.3s background;
    cursor: pointer;
    overflow: hidden;
    text-indent: 1000px;
    border-radius: 50%;
}

.slick-dots button:hover,
.slick-active button {
    background-color: #2f5fe3;
}

.slick-dots li {
    list-style-type: none;
}

/* brands */
.brands {
    padding: 30px 0 92px;
}

.brands__header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 10px;
}

.brands__title {
    font-size: 16px;
    line-height: 125%;
    font-weight: 400;
    color: #0c1839;
}

.brands__num {
    padding: 4px 8px;
    display: block;
    font-size: 13px;
    line-height: 1;
    background: #385bbc;
    color: #fff;
    border-radius: 32px;
}

.brands__box {
    padding: 15px;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
}

@media (min-width: 960px) {
    .brands__box {
        max-height: 240px;
        gap: 20px 12px;
    }
}
.brands__box::-webkit-scrollbar {
    height: 6px;
}
.brands__box::-webkit-scrollbar-track {
    border-radius: 20px;
    background: #eaeeff;
}
.brands__box::-webkit-scrollbar-thumb {
    background: #2f5fe3;
    border-radius: 20px;
}

.brands__link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    aspect-ratio: 1/1;
    border: 1px solid #f4f6fc;
    background: #fff;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.05);
    transition: 0.3s background;
}

@media (max-width: 767px) {
    .brands__link {
        height: 74px;
        width: 74px;
        padding: 10px;
    }
}

@media (min-width: 768px) {
    .brands__link {
        height: 98px;
        width: 98px;
    }
}

.brands__link img {
    max-width: 100%;
    height: auto;
}

/* subscription */
.subscription {
    padding: 30px 0 92px;
}

.subscription__box {
    margin-bottom: 67px;
}

@media (max-width: 767px) {
    .subscription__box {
        padding: 45px 20px;
        border-radius: 10px;
        background-color: #f3f5fc;
        text-align: center;
    }
}

.response {
    font-size: 14px;
    margin-top: 5px;
}

.success-message {
    color: green;
}

.error-message {
    color: red;
}

.subscription__title {
    font-weight: 500;
    font-size: 25px;
    color: #142e76;
}

@media (max-width: 767px) {
    .subscription__title {
        margin-bottom: 25px;
    }
}

@media (min-width: 768px) {
    .subscription__title {
        margin-bottom: 27px;
    }
}

.subscription__desc {
    margin-bottom: 27px;
    font-weight: 200;
    line-height: 106%;
    color: #142e76;
}

@media (max-width: 767px) {
    .subscription__desc {
        margin-bottom: 25px;
        font-size: 14px;
        font-weight: 200;
    }
}

@media (min-width: 768px) {
    .subscription__desc {
        margin-bottom: 27px;
        font-size: 18px;
    }
}

.subscription__text ul {
    list-style: none;
    padding-left: 0;
}
.subscription__text {
    font-weight: 300;
    font-size: 16px;
    line-height: normal;
    color: #000;
}

.subscription__text a {
    font-weight: 500;
    text-decoration: underline;
    color: #2f5fe3;
}

.subscription__text p:not(:last-child) {
    margin-bottom: 20px;
}

.subscription__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 767px) {
    .subscription__form {
        max-width: 360px;
        margin: 0 auto;
    }
}

.subscription__input {
    border-radius: 12px;
    padding: 7px 23px;
    width: 100%;
    max-width: 361px;
    height: 54px;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    color: #142e76;
    border: none;
    outline: none;
}

@media (max-width: 767px) {
    .subscription__input {
        background: #fff;
    }
}

@media (min-width: 768px) {
    .subscription__input {
        background: #f3f5fc;
    }
}

.subscription__btn {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    border-radius: 12px;
    background: #2f5fe3;
    cursor: pointer;
    transition: 0.3s background;
}

@media (max-width: 767px) {
    .subscription__btn {
        width: 100%;
        max-width: 360px;
    }
}

@media (min-width: 768px) {
    .subscription__btn {
        width: 227px;
    }
}

.subscription__btn:hover {
    background-color: #142e76;
}

.footer-download {
    display: flex;
    align-items: center;
    gap: 34px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer-download {
        margin-top: 54px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-download {
        margin-top: 24px;
    }
}

@media (max-width: 1024px) {
    .footer-download {
        width: 100%;
        flex-direction: column;
    }
}

.footer-download-apps,
.footer-social {
    display: flex;
    align-items: center;
    gap: 34px;
}

@media (max-width: 767px) {
    .footer-download-apps,
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-download-apps span,
    .footer-social span {
        width: 100%;
        text-align: center;
    }
}

.social__link {
    border-radius: 50px;
    width: 47px;
    height: 47px;
    padding: 11px;
    background: #223d85;
    transition: 0.3s background;
}

.social__link:hover {
    background: #fff;
}

/* partners */
@media (max-width: 767px) {
    .partners {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

@media (min-width: 768px) {
    .partners {
        padding-top: 53px;
        padding-bottom: 60px;
    }
}

.partners__box {
    display: grid;
}

@media (max-width: 767px) {
    .partners__box {
        margin-top: 40px;
        margin-bottom: 85px;
    }
}

@media (min-width: 768px) {
    .partners__box {
        margin-top: 66px;
        margin-bottom: 90px;
    }
}

@media (max-width: 559px) {
    .partners__box {
        gap: 60px;
    }
}

@media (min-width: 560px) and (max-width: 1149px) {
    .partners__box {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
}

@media (min-width: 1150px) {
    .partners__box {
        grid-template-columns: repeat(4, 1fr);
        gap: 90px 51px;
    }
}

.partners__item {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 12px;
    border: 1px solid #2f5fe3;
}

@media (max-width: 767px) {
    .partners__item {
        padding: 40px 36px 35px;
    }
}

@media (min-width: 768px) {
    .partners__item {
        padding: 60px 30px 27px;
    }
}

@media (max-width: 1149px) {
    .partners__item {
        max-width: 460px;
        margin: 0 auto;
    }
}

.partners__item:hover .partners-icon {
    max-width: 159px;
}

.partners-icon {
    width: 100%;
    max-width: 92px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background-color: #fcfdff;
    transition: 0.3s max-width;
}

.partners-icon__box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-25px);
}

.partners__label {
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    color: #2f5fe3;
    font-weight: 700;
}

.partners__desc {
    color: #848a9c;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    line-height: normal;
    text-wrap: balance;
}

.partners-content {
    font-weight: 400;
    line-height: 31px;
    color: #0c1839;
}

@media (max-width: 767px) {
    .partners-content {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .partners-content {
        font-size: 18px;
    }
}

.partners h1,
.partners-content h2 {
    color: #142e76;
    font-weight: 400;
    line-height: 1.3;
}

.partners-content h2 {
    max-width: 920px;
    text-wrap: pretty;
}

@media (max-width: 767px) {
    .partners h1,
    .partners-content h2 {
        margin-bottom: 23px;
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .partners h1,
    .partners-content h2 {
        margin-bottom: 15px;
        font-size: 50px;
    }
}

.partners-content ul,
.partners-content ol {
    padding-left: 20px;
}

.partners-content p,
.partners-content li {
    color: #848a9c;
}

.partners-content p:not(:last-child),
.partners-content ul:not(:last-child),
.partners-content ol:not(:last-child) {
    margin-bottom: 26px;
}

.partners-content li:not(:last-child) {
    margin-bottom: 6px;
}

.partners-content li::marker {
    font-size: 20px;
    color: #2f5fe3;
}

.partners__btn {
    width: 100%;
    height: 48px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2f5fe3;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    border-radius: 12px;
    transition: 0.3s all;
    cursor: pointer;
}

@media (min-width: 420px) {
    .partners__btn {
        max-width: 267px;
    }
}

.partners__btn:hover,
.partners__btn:focus {
    background-color: #142e76;
}

.partners-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 767px) {
    .partners-contact {
        gap: 20px;
        font-size: 14px;
    }
}

.partners-contact__item {
    color: #2f5fe3;
}

.partners-contact__item a {
    color: #2f5fe3;
    transition: 0.3s color;
}

.partners-contact__item a:hover,
.partners-contact__item a:focus {
    color: #142e76;
}

.partners-container {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .partners-container {
        flex-direction: column;
        gap: 34px 0;
    }
}

@media (min-width: 768px) {
    .partners-container {
        gap: 0 90px;
    }
}

.partners-text {
    max-width: 700px;
}

.partners-image {
    display: flex;
    flex-direction: column;
}

.partners-image img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .partners-image {
        flex-shrink: 0;
    }

    .partners-image--left {
        order: -1;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .partners-image {
        max-width: 350px;
    }
}

.partners-image p {
    max-width: 480px;
    margin: 10px auto;
    text-align: center;
    color: #2f5fe3;
    font-size: 20px;
    line-height: 31px;
}

@media (max-width: 767px) {
    .partners-image p {
        order: -1;
    }
}

/* cities */
.cities {
    padding: 30px 0 92px;
}

.cities__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 10px;
}

@media (max-width: 767px) {
    .cities__header {
        margin-bottom: 36px;
    }
}

@media (min-width: 768px) {
    .cities__header {
        margin-bottom: 46px;
    }
}

.cities__title {
    font-size: 16px;
    line-height: 125%;
    font-weight: 400;
    color: #0c1839;
}

.cities__num {
    padding: 4px 8px;
    display: block;
    font-size: 13px;
    line-height: 1;
    background: #385bbc;
    color: #fff;
    border-radius: 32px;
}

.cities__box {
    padding: 0 15px 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: auto;
}

@media (max-width: 959px) {
    .cities__box {
        max-height: 90px;
        gap: 32px 14px;
    }
}

@media (min-width: 960px) {
    .cities__box {
        max-height: 120px;
        gap: 41px 28px;
    }
}
.cities__box::-webkit-scrollbar {
    width: 6px;
}
.cities__box::-webkit-scrollbar-track {
    border-radius: 20px;
    background: #eaeeff;
}
.cities__box::-webkit-scrollbar-thumb {
    background: #2f5fe3;
    border-radius: 20px;
}

.cities__link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #2f5fe3;
    border: 2px solid #2f5fe3;
    background: transparent;
    transition: 0.3s all;
}

.cities__link:hover,
.cities__link:focus {
    color: #fff;
    background: #2f5fe3;
}

@media (max-width: 767px) {
    .cities__link {
        height: 28px;
        min-width: 116px;
        padding: 6px 16px;
    }
}

@media (min-width: 768px) {
    .cities__link {
        height: 32px;
        min-width: 130px;
        padding: 8px 20px;
    }
}
.brand_points_list {
    max-height: 200px;
}
.brand_points_block {
    /*max-width: 100%;*/
}
.company_slider_h2 {
    margin-top: 20px;
}
/*************************/
.blog-single__short h4,
.blog-single__content h4 {
    margin-bottom: 16px;
    color: #142e76;
    font-size: 20px;
}

.blog-single__short h5,
.blog-single__content h5 {
    margin-bottom: 14px;
    color: #142e76;
    font-size: 18px;
}

.blog-single__content div img,
.blog-single__content figure img{
    margin-bottom: 20px;
    max-width: 1350px;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .content-box ul:not(:last-child),
    .content-box ol:not(:last-child) {
        margin-bottom: 30px;
    }
}
@media (min-width: 768px) {
    .blog-single__short p:not(:last-child),
    .blog-single__content p:not(:last-child) {
        margin-bottom: 30px;
    }
}
@media (min-width: 768px) {
    .blog-single__short ul:not(:last-child),
    .blog-single__short ol:not(:last-child),
    .blog-single__content ul:not(:last-child),
    .blog-single__content ol:not(:last-child) {
        margin-bottom: 30px;
    }
}
@media (min-width: 768px) {
    .content-box p:not(:last-child) {
        margin-bottom: 30px;
    }
}
.page-title {
    max-width: 1350px !important;
    width: 100%;
    margin-bottom: 30px !important;
}
.blog-single__header {
    margin-bottom: 35px !important;
}
