@charset "UTF-8";

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px
}

.gray {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
    font-size: 16px
}

.blue {
    color: #5075ae;
    font-weight: 500;
    font-size: 16px
}

.hero {
    background: url(/images/bg-home-svg.jpg) center
}

@media (max-width:992px) {
    .hero {
        padding: 48px 0
    }
}

@media (max-width:768px) {
    .hero {
        padding: 32px 0
    }
}

.hero__wrapper {
    display: flex;
    align-items: center;
    gap: 50px
}

@media (max-width:992px) {
    .hero__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 48px
    }
}

.hero__image-side {
    flex: 1
}

    .hero__image-side .video-box {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0,0,0,0.1)
    }

        .hero__image-side .video-box img {
            width: 100%;
            display: block;
            aspect-ratio: 16/10;
            -o-object-fit: cover;
            object-fit: cover
        }

        .hero__image-side .video-box .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 65px;
            height: 65px;
            background: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(0,0,0,0.2);
            transition: all 0.3s ease
        }

            .hero__image-side .video-box .play-btn:hover {
                transform: translate(-50%,-50%) scale(1.1)
            }

@media (max-width:768px) {
    .hero__image-side .video-box .play-btn {
        width: 50px;
        height: 50px
    }
}

.hero__content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px
}

@media (max-width:992px) {
    .hero__content-side {
        align-items: center
    }
}

.hero__title {
    font-size: 42px;
    font-weight: 900;
    color: #222
}

@media (max-width:768px) {
    .hero__title {
        font-size: 30px;
        line-height: 44px
    }
}

.hero__subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #444
}

@media (max-width:768px) {
    .hero__subtitle {
        font-size: 24px;
        line-height: 36px
    }
}

.hero__description {
    font-size: 18px;
    line-height: 1.8;
    color: #555
}

@media (max-width:768px) {
    .hero__description {
        font-size: 18px;
        line-height: 28px
    }
}

.hero__description .blue-text {
    color: #13558d;
    font-weight: bold
}

.hero__btns {
    display: flex;
    gap: 15px;
    margin-top: 10px
}

@media (max-width:768px) {
    .hero__btns {
        flex-direction: column;
        width: 100%
    }
}

@media (max-width:768px) {
    .hero__btns .btn {
        width: 100%;
        justify-content: center
    }
}

.btn {
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer
}

@media (max-width:768px) {
    .btn {
        padding: 8px 16px;
        font-size: 15px
    }
}

.btn--primary, .btn--primary-large {
    background: #13558d;
    color: #fff
}

    .btn--primary:hover, .btn--primary-large:hover {
        background: #05577f;
        transform: translateY(-2px);
        box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.12),0px 1px 6px 0px rgba(0,0,0,0.06)
    }

.btn--outline, .btn--outline-large {
    border: 1.5px solid #13558d;
    color: #13558d;
    background: transparent
}

    .btn--outline:hover, .btn--outline-large:hover {
        background: rgba(7,122,178,0.08);
        transform: translateY(-2px)
    }

.btn--primary-large {
    padding: 15px 40px;
    font-size: 18px
}

@media (max-width:768px) {
    .btn--primary-large {
        padding: 12px 24px;
        font-size: 18px
    }
}

.btn--outline-large {
    padding: 15px 40px;
    font-size: 18px
}

@media (max-width:768px) {
    .btn--outline-large {
        padding: 12px 24px;
        font-size: 18px
    }
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px)
}

@media (max-width:992px) {
    .hide-mobile {
        display: none !important
    }
}

.show-mobile {
    display: none
}

@media (max-width:992px) {
    .show-mobile {
        display: flex
    }
}

.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #000
}

    .video-wrapper video {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        -o-object-fit: cover;
        object-fit: cover;
        background: #000
    }

    .video-wrapper .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2;
        transition: all 0.3s ease;
        padding: 0
    }

        .video-wrapper .play-btn:hover {
            transform: translate(-50%,-50%) scale(1.1)
        }

        .video-wrapper .play-btn:active {
            transform: translate(-50%,-50%) scale(0.95)
        }

        .video-wrapper .play-btn svg {
            width: 60px;
            height: 60px;
            filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4))
        }

@media (max-width:768px) {
    .video-wrapper .play-btn svg {
        width: 48px;
        height: 48px
    }
}

@media (max-width:480px) {
    .video-wrapper .play-btn svg {
        width: 40px;
        height: 40px
    }
}

.video-wrapper.playing .play-btn {
    opacity: 0;
    pointer-events: none
}

.rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px
}

@media (max-width:768px) {
    .rating {
        flex-wrap: wrap;
        justify-content: center
    }
}

.rating__avatars {
    display: flex;
    flex-direction: row-reverse
}

    .rating__avatars img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 3px solid #fff;
        margin-left: -15px;
        -o-object-fit: cover;
        object-fit: cover
    }

@media (max-width:768px) {
    .rating__avatars img {
        width: 38px;
        height: 38px;
        margin-left: -12px
    }
}

.rating__count {
    font-weight: bold;
    color: #13558d;
    font-size: 18px;
    display: block
}

@media (max-width:768px) {
    .rating__count {
        font-size: 18px
    }
}

.rating__stars {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffcc00
}

    .rating__stars .rating__num {
        color: #13558d;
        font-size: 14px
    }

@media (max-width:768px) {
    .rating__stars .rating__num {
        font-size: 12px
    }
}

.products {
    max-width: 1330px;
    width: 90%;
    margin: 120px auto;
    padding: 50px 40px 80px;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 0 40px rgba(0,0,0,0.15);
    background: url(../../images/Mask.png) center
}

@media (max-width:1024px) {
    .products {
        width: 95%;
        padding: 40px 24px 70px
    }
}

@media (max-width:768px) {
    .products {
        padding: 30px 20px 60px;
        margin: 48px auto
    }
}

.product-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 70px
}

@media (max-width:768px) {
    .product-title {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}

.product-title img {
    width: 46px
}

@media (max-width:768px) {
    .product-title img {
        width: 36px
    }
}

.product-title span {
    font-size: 30px;
    font-weight: 800;
    color: #313131
}

@media (max-width:768px) {
    .product-title span {
        font-size: 22px
    }
}

.products-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 80px 40px;
    justify-items: center
}

@media (max-width:1024px) {
    .products-wrapper {
        grid-template-columns: repeat(2,1fr);
        gap: 70px 30px
    }
}

@media (max-width:640px) {
    .products-wrapper {
        grid-template-columns: 1fr;
        gap: 70px
    }
}

.product {
    position: relative;
    width: 260px;
    height: 260px;
    background: #fff;
    border: 2px solid #3684c6;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease
}

@media (max-width:640px) {
    .product {
        width: 220px;
        height: 220px
    }
}

.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12)
}

.product-box {
    position: absolute;
    bottom: -38px;
    right: 50%;
    transform: translateX(50%);
    min-width: 240px;
    height: 60px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px
}

@media (max-width:640px) {
    .product-box {
        min-width: 200px;
        height: 52px;
        padding: 8px 12px
    }
}

.pro-name {
    font-size: 18px;
    font-weight: 700;
    color: #313131
}

@media (max-width:640px) {
    .pro-name {
        font-size: 14px
    }
}

.more-products {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 40px
}

@media (max-width:640px) {
    .more-products {
        display: flex
    }
}

.mo-product {
    font-family: IRANSansX;
    font-weight: 700;
    font-size: 16.5px;
    line-height: 25px;
    text-align: center;
    color: #13558d
}

@media (max-width:640px) {
    .extra-product {
        display: none
    }

    .more-products {
        display: flex
    }

    .products-wrapper.show-all .extra-product {
        display: flex
    }
}

.pay {
    margin: 80px auto
}

@media (max-width:768px) {
    .pay {
        margin: 48px auto
    }
}

.pay-titles {
    display: flex;
    gap: 32px;
    flex-direction: column
}

.pay-title {
    display: flex;
    gap: 16px;
    align-items: center
}

@media (max-width:768px) {
    .pay-title {
        flex-direction: column;
        text-align: center
    }
}

.pay-title img {
    width: 48px;
    height: 48px
}

@media (max-width:768px) {
    .pay-title img {
        width: 40px;
        height: 40px
    }
}

.pay-title-te {
    font-weight: 900;
    font-size: 32px;
    color: #313131
}

@media (max-width:768px) {
    .pay-title-te {
        font-size: 24px
    }
}

@media (max-width:480px) {
    .pay-title-te {
        font-size: 20px
    }
}

.pay-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 56px;
    align-items: start
}

@media (max-width:1024px) {
    .pay-wrapper {
        gap: 48px
    }
}

@media (max-width:768px) {
    .pay-wrapper {
        grid-template-columns: 1fr;
        gap: 48px
    }
}

.wrapper-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

@media (max-width:480px) {
    .wrapper-right {
        gap: 16px
    }
}

.pay-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px
}

@media (max-width:480px) {
    .pay-row {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

.pay-row2 {
    display: grid;
    grid-template-columns: 1fr
}

.pay-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer
}

@media (max-width:480px) {
    .pay-card {
        min-height: 150px;
        padding: 12px
    }
}

.pay-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1)
}

    .pay-card:hover .show-box {
        background-color: #066899
    }

        .pay-card:hover .show-box span {
            color: #ffffff
        }

        .pay-card:hover .show-box img {
            filter: brightness(0) invert(1)
        }

.pay-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(6,104,153,0.15) 0%,#066899 100%);
    border-radius: 16px;
    z-index: 0
}

.pay-card-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

@media (max-width:480px) {
    .pay-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}

.pay-text1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    text-align: right;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3)
}

@media (max-width:480px) {
    .pay-text1 {
        font-size: 18px
    }
}

.show-box {
    background-color: #ffffff;
    display: inline-flex;
    gap: 8px;
    border-radius: 30px;
    padding: 8px 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap
}

@media (max-width:480px) {
    .show-box {
        padding: 4px 16px
    }
}

.show-box span {
    font-weight: 600;
    font-size: 13px;
    color: #066899;
    transition: all 0.2s ease
}

.show-box img {
    width: 16px;
    height: 16px;
    transition: all 0.2s ease
}

.wrapper-left {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(270deg,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.5) 100%);
    position: relative
}

.swiper {
    width: 100%;
    height: 100%;
    border-radius: 16px
}

.swiper-slide {
    text-align: center;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    overflow: hidden
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.swiper-pagination {
    margin-top: 16px;
    bottom: 0 !important
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.6
}

.swiper-pagination-bullet-active {
    background: #066899;
    opacity: 1
}

.order {
    margin: 80px auto
}

@media (max-width:768px) {
    .order {
        margin: 48px auto
    }
}

.order-wrapper {
    border-right: 3px solid #066899;
    background: rgba(54,133,198,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-radius: 16px;
    padding: 24px;
    border-right-width: 3px
}

@media (max-width:900px) {
    .order-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 16px
    }
}

.order-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-align: right;
    color: #066899;
    flex: 1
}

@media (max-width:900px) {
    .order-title {
        text-align: center
    }
}

@media (max-width:768px) {
    .order-title {
        font-size: 16px;
        line-height: 26px
    }
}

.btns-order {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

@media (max-width:900px) {
    .btns-order {
        justify-content: center;
        margin-top: 8px
    }
}

@media (max-width:480px) {
    .btns-order {
        flex-direction: column;
        align-items: center;
        width: 100%
    }
}

.btn-order-right, .btn-order-left {
    width: 200px;
    height: 48px;
    min-width: 160px;
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease
}

@media (max-width:480px) {
    .btn-order-right, .btn-order-left {
        width: 100%;
        max-width: 280px
    }
}

.btn-order-right {
    border: 1px solid #066899;
    background-color: #ffffff
}

    .btn-order-right:hover {
        background-color: #066899
    }

        .btn-order-right:hover .bale-order-num {
            color: #ffffff
        }

        .btn-order-right:hover img {
            filter: brightness(0) invert(1)
        }

    .btn-order-right img {
        width: 24px;
        height: 24px;
        transition: all 0.2s ease
    }

.bale-order-num {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    color: #066899;
    transition: all 0.2s ease;
    direction: ltr;
    display: inline-block
}

.btn-order-left {
    background-color: #066899
}

    .btn-order-left:hover {
        background-color: #05577f;
        transform: translateY(-2px);
        box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.12),0px 1px 6px 0px rgba(0,0,0,0.06)
    }

    .btn-order-left:active {
        transform: translateY(0)
    }

.btn-left-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    white-space: nowrap
}

@media (max-width:480px) {
    .btn-left-text {
        white-space: normal
    }
}

.faq {
    margin: 80px auto
}

@media (max-width:768px) {
    .faq {
        margin: 48px auto
    }
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center
}

.branches-title {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center
}

@media (max-width:768px) {
    .branches-title {
        flex-direction: column
    }
}

.branches-title img {
    width: 48px;
    height: 48px
}

@media (max-width:768px) {
    .branches-title img {
        width: 40px;
        height: 40px
    }
}

.branches-title-te {
    font-weight: 900;
    font-size: 16;
    color: #313131
}

@media (max-width:768px) {
    .branches-title-te {
        font-size: 24px
    }
}

@media (max-width:480px) {
    .branches-title-te {
        font-size: 20px
    }
}

.faq__container {
    max-width: 1101px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 4px 24px
}

@media (max-width:768px) {
    .faq__container {
        padding: 4px 16px
    }
}

@media (max-width:480px) {
    .faq__container {
        padding: 4px 12px
    }
}

.faq__item {
    border-bottom: 1px solid #e5e7eb;
    padding: 0 0 12px
}

    .faq__item:last-child {
        border-bottom: none
    }

.faq__item--active .faq__arrow {
    transform: rotate(180deg)
}

.faq__item--active .faq__answer {
    display: block
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 12px;
    cursor: pointer;
    gap: 16px;
    flex-direction: row-reverse
}

@media (max-width:768px) {
    .faq__question {
        padding: 16px 0 12px;
        gap: 12px
    }
}

.faq__question-text {
    font-size: 16px;
    font-weight: 600;
    color: #232c39;
    text-align: right;
    flex: 1
}

@media (max-width:768px) {
    .faq__question-text {
        font-size: 16px
    }
}

.faq__arrow {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.faq__answer {
    background: #f3f4f6;
    border-radius: 0 0 8px 8px;
    padding: 16px;
    display: none;
    transition: all 0.3s ease
}

@media (max-width:768px) {
    .faq__answer {
        padding: 12px
    }
}

.faq__answer p {
    font-size: 14px;
    line-height: 25.2px;
    color: #4b5563;
    text-align: right;
    margin: 0
}

@media (max-width:768px) {
    .faq__answer p {
        font-size: 12px;
        line-height: 19px
    }
}

.articles {
    margin: 80px auto 80px
}

@media (max-width:768px) {
    .articles {
        margin: 48px auto 48px
    }
}

.articles-wrapper {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.article-title {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center
}

@media (max-width:768px) {
    .article-title {
        flex-direction: column
    }
}

.article-title img {
    width: 48px;
    height: 48px
}

@media (max-width:768px) {
    .article-title img {
        width: 40px;
        height: 40px
    }
}

.article-title-te {
    font-weight: 900;
    font-size: 32px;
    color: #313131
}

@media (max-width:768px) {
    .article-title-te {
        font-size: 24px
    }
}

@media (max-width:480px) {
    .article-title-te {
        font-size: 20px
    }
}

.arts-box {
    display: flex;
    flex-direction: column;
    gap: 56px;
    justify-content: center;
    align-items: center
}

.article-boxs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

@media (max-width:1102px) {
    .article-boxs {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:715px) {
    .article-boxs {
        grid-template-columns: 1fr
    }
}

.article-box {
    position: relative;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    background-color: #ffffff;
    border-radius: 16px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease
}

    .article-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1)
    }

.za-img {
    width: 100%;
    height: 204px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.2s ease
}

@media (max-width:768px) {
    .za-img {
        height: 180px
    }
}

.article-box:hover .za-img {
    transform: scale(1.02)
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px
}

@media (max-width:768px) {
    .article-content {
        padding: 16px;
        gap: 16px
    }
}

.article-infos {
    display: flex;
    gap: 48px;
    flex-wrap: wrap
}

@media (max-width:480px) {
    .article-infos {
        gap: 16px
    }
}

.article-info {
    display: flex;
    align-items: center;
    gap: 8px
}

    .article-info img {
        width: 20px;
        height: 20px
    }

    .article-info span {
        font-weight: 400;
        font-size: 14px;
        line-height: 21.25px;
        text-align: right;
        color: #6b7280
    }

@media (max-width:768px) {
    .article-info span {
        font-size: 12px
    }
}

.art-title {
    color: #101828;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-align: right
}

@media (max-width:768px) {
    .art-title {
        font-size: 18px
    }
}

.art-subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
    color: #4a5565
}

@media (max-width:768px) {
    .art-subtitle {
        font-size: 14px
    }
}

.art-more {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: -moz-fit-content;
    width: fit-content
}

    .art-more:hover {
        gap: 12px
    }

        .art-more:hover span {
            color: #05577f
        }

        .art-more:hover img {
            transform: translateX(-4px)
        }

    .art-more span {
        color: #066899;
        font-weight: 600;
        font-size: 18px;
        text-align: center;
        transition: all 0.2s ease
    }

@media (max-width:768px) {
    .art-more span {
        font-size: 15px
    }
}

.art-more img {
    width: 17px;
    height: 17px;
    transition: all 0.2s ease
}

.learn {
    background-color: #044566;
    width: 70px;
    border-radius: 10.75px;
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

    .learn span {
        color: #ffffff;
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        text-align: right
    }

@media (max-width:768px) {
    .learn span {
        font-size: 12px
    }
}

.show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #066899;
    width: 275px;
    min-width: 110px;
    border-radius: 16px;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease
}

@media (max-width:480px) {
    .show-more {
        width: 100%;
        max-width: 275px
    }
}

.show-more:hover {
    background-color: #05577f;
    transform: translateY(-2px);
    box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.12),0px 1px 6px 0px rgba(0,0,0,0.06)
}

.show-more:active {
    transform: translateY(0)
}

.show-more span {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    color: #ffffff
}

.features {
    margin: 80px auto
}

@media (max-width:768px) {
    .features {
        margin: 48px auto
    }
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px
}

@media (max-width:1077px) {
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

.feature {
    display: flex;
    gap: 16px;
    align-items: center;
    border: 1.5px solid rgba(253,199,0,0.3);
    background: rgba(253,199,0,0.25);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s ease;
    cursor: pointer
}

    .feature:hover {
        transform: translateY(-4px);
        box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.12),0px 1px 6px 0px rgba(0,0,0,0.06)
    }

@media (max-width:768px) {
    .feature {
        padding: 16px;
        gap: 12px
    }
}

.feature span {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    text-align: right;
    color: #066899;
    flex: 1
}

@media (max-width:768px) {
    .feature span {
        font-size: 18px
    }
}

@media (max-width:480px) {
    .feature span {
        font-size: 16px
    }
}

.feaure-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#fdc700 0%,#c7a010 100%);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0
}

@media (max-width:768px) {
    .feaure-icon {
        width: 42px;
        height: 42px
    }
}

@media (max-width:480px) {
    .feaure-icon {
        width: 36px;
        height: 36px
    }
}

.feaure-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1)
}

@media (max-width:768px) {
    .feaure-icon img {
        width: 20px;
        height: 20px
    }
}

@media (max-width:480px) {
    .feaure-icon img {
        width: 18px;
        height: 18px
    }
}

.feature2 {
    border: 1.5px solid rgba(5,223,114,0.3);
    background: rgba(0,201,80,0.15)
}

    .feature2 .feaure-icon {
        background: linear-gradient(135deg,#05df72 0%,#00bc7d 100%)
    }

.feature3 {
    border: 1.5px solid rgba(54,133,198,0.3);
    background: rgba(54,133,198,0.1)
}

    .feature3 .feaure-icon {
        background: linear-gradient(135deg,#3685c6 0%,#00b8db 100%)
    }

.feature4 {
    border: 1.5px solid rgba(194,122,255,0.3);
    background: rgba(173,70,255,0.1)
}

    .feature4 .feaure-icon {
        background: linear-gradient(135deg,#c27aff 0%,#f6339a 100%)
    }

.order-registration {
    margin: 80px auto
}

@media (max-width:768px) {
    .order-registration {
        margin: 48px auto
    }
}

.registration-container {
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: 1144px;
    width: 100%;
    margin: 0 auto
}

@media (max-width:768px) {
    .registration-container {
        gap: 32px
    }
}

.reconstruction-title {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center
}

@media (max-width:768px) {
    .reconstruction-title {
        flex-direction: column
    }
}

.reconstruction-title img {
    width: 48px;
    height: 48px
}

@media (max-width:768px) {
    .reconstruction-title img {
        width: 40px;
        height: 40px
    }
}

.reconstruction-title-te {
    font-weight: 900;
    font-size: 32px;
    color: #313131;
    text-align: center
}

@media (max-width:768px) {
    .reconstruction-title-te {
        font-size: 24px
    }
}

@media (max-width:480px) {
    .reconstruction-title-te {
        font-size: 20px
    }
}

.registration-ways {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px
}

    .registration-ways .registration-way {
        flex: 0 0 calc(33.333% - 32px);
        min-width: 250px
    }

        .registration-ways .registration-way:nth-child(4), .registration-ways .registration-way:nth-child(5) {
            max-width: 400px
        }

@media (max-width:992px) {
    .registration-ways {
        gap: 24px
    }

        .registration-ways .registration-way {
            flex: 0 0 calc(50% - 24px)
        }

            .registration-ways .registration-way:nth-child(4), .registration-ways .registration-way:nth-child(5) {
                flex: 0 0 calc(50% - 24px)
            }
}

@media (max-width:768px) {
    .registration-ways {
        flex-direction: column;
        align-items: center
    }

        .registration-ways .registration-way, .registration-ways .registration-way:nth-child(4), .registration-ways .registration-way:nth-child(5) {
            flex: 0 0 100%;
            width: 100%;
            max-width: 100%
        }
}

.registration-way {
    box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.15);
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer
}

    .registration-way:hover {
        transform: translateY(-5px);
        box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.2)
    }

@media (max-width:768px) {
    .registration-way {
        padding: 24px
    }
}

@media (max-width:480px) {
    .registration-way {
        padding: 16px
    }
}

.reg-ways {
    display: flex;
    flex-direction: column;
    gap: 24px
}

@media (max-width:768px) {
    .reg-ways {
        gap: 16px
    }
}

.way-row1 {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.way-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: #066899;
    box-shadow: 0 4px 8px rgba(6,104,153,0.3)
}

    .way-num span {
        font-weight: 900;
        font-size: 20px;
        text-align: center;
        color: #ffffff
    }

.way-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: #eff6ff
}

    .way-icon img {
        width: 22px;
        height: 22px;
        -o-object-fit: contain;
        object-fit: contain
    }

.way-row2 {
    display: flex;
    gap: 8px;
    flex-direction: column
}

.way-r-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 29.75px;
    text-align: right;
    color: #101828;
    margin: 0
}

@media (max-width:768px) {
    .way-r-title {
        font-size: 18px;
        line-height: 28px
    }
}

.way-r-subtitle {
    font-weight: 400;
    font-size: 14px;
    text-align: right;
    color: #4a5565;
    margin: 0
}

@media (max-width:768px) {
    .way-r-subtitle {
        font-size: 12px
    }
}

.ex-works {
    margin: 92px auto
}

.ex-works-container {
    display: flex;
    flex-direction: column;
    gap: 63px
}

.reconstruction-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center
}

@media (max-width:768px) {
    .reconstruction-title {
        flex-direction: column
    }
}

.reconstruction-title-te {
    font-size: 32px;
    font-weight: 900;
    color: #101828;
    line-height: 1
}

@media (max-width:768px) {
    .reconstruction-title-te {
        font-size: 24px
    }
}

@media (max-width:480px) {
    .reconstruction-title-te {
        font-size: 20px
    }
}

.ex-works-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 56px;
    align-items: stretch
}

@media (max-width:1134px) {
    .ex-works-wrapper {
        grid-template-columns: 1fr
    }
}

.work-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%
}

.work-ri-top {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: #ffffff
}

.work-ims {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr)
}

.w-img-right {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden
}

.w-img-left {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden
}

.w-img {
    position: relative;
    min-height: 346px
}

    .w-img img {
        width: 100%;
        height: 100%;
        display: block;
        -o-object-fit: cover;
        object-fit: cover
    }

@media (max-width:768px) {
    .w-img {
        min-height: 240px
    }
}

@media (max-width:480px) {
    .w-img {
        min-height: 180px
    }
}

.w-img1, .w-img2 {
    position: absolute;
    top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 32px;
    padding: 0 8px;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    z-index: 2
}

.w-img1 {
    right: 16px;
    background-color: #e6595c
}

.w-img2 {
    left: 16px;
    background-color: #00c950
}

.horiznatal-flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 8px
}

    .horiznatal-flash img {
        width: 25px;
        -o-object-fit: cover;
        object-fit: cover
    }

.works-text2 {
    background-color: #ffffff;
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.08);
    padding: 16px 12px;
    display: flex;
    justify-content: center;
    align-items: center
}

.work-text2 {
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    text-align: center
}

@media (max-width:768px) {
    .work-text2 {
        font-size: 18px
    }
}

@media (max-width:480px) {
    .work-text2 {
        font-size: 16px
    }
}

.work-ri-bottom {
    height: 100%;
    width: 100%
}

    .work-ri-bottom::-webkit-scrollbar {
        height: 6px
    }

    .work-ri-bottom::-webkit-scrollbar-track {
        background: #f3f4f6;
        border-radius: 4px
    }

    .work-ri-bottom::-webkit-scrollbar-thumb {
        background: #066899;
        border-radius: 4px
    }

.work-ri-bottom-wrapper {
    display: flex;
    justify-items: center;
    gap: 12px;
    height: 100%;
    gap: 12px;
    height: 100%;
    scrollbar-width: thin
}

@media (max-width:576px) {
    .work-ri-bottom-wrapper {
        overflow-x: scroll;
        scrollbar-width: thin
    }
}

.work-ri-bottom-wrapper img {
    height: 129px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0
}

.no-opacity {
    border: 3px solid #3685c6;
    opacity: 1
}

.opacity {
    opacity: 0.5
}

.work-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 42px;
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.15)
}

.work {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 42px;
    height: 100%;
    min-height: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px
}

@media (max-width:1134px) {
    .work {
        min-height: auto
    }
}

@media (max-width:480px) {
    .work {
        padding: 16px;
        gap: 24px
    }
}

.work-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1
}

@media (max-width:980px) {
    .work-info {
        margin-bottom: 16px
    }
}

.info-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

    .info-name span {
        color: #101828;
        font-size: 20px;
        font-weight: 700
    }

@media (max-width:768px) {
    .info-name span {
        font-size: 18px
    }
}

@media (max-width:480px) {
    .info-name span {
        font-size: 16px
    }
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px
}

    .stars img {
        width: 20px;
        height: 20px;
        -o-object-fit: contain;
        object-fit: contain
    }

.work-text span {
    color: #4b5563;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
    text-align: justify;
    display: block
}

@media (max-width:768px) {
    .work-text span {
        font-size: 16px
    }
}

@media (max-width:480px) {
    .work-text span {
        font-size: 14px;
        line-height: 1.8
    }
}

.swiper-pagination-bullet {
    background: #13558d;
    opacity: 0.4
}

.swiper-pagination-bullet-active {
    opacity: 1
}

@media (max-width:1134px) {
    .work-left, .work-right {
        height: auto
    }
}

@media (max-width:768px) {
    .ex-works {
        margin: 60px auto
    }

    .ex-works-container {
        gap: 40px
    }
}

@media (max-width:480px) {
    .reconstruction-title {
        gap: 8px
    }

    .w-img1, .w-img2 {
        font-size: 14px;
        min-width: 44px;
        height: 28px
    }
}

.restorations {
    margin: 92px auto;
    position: relative
}

@media (max-width:768px) {
    .restorations {
        margin: 60px auto
    }
}

.restorations-wrap {
    display: flex;
    flex-direction: column;
    gap: 63px
}

@media (max-width:768px) {
    .restorations-wrap {
        gap: 40px
    }
}

.section-header {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center
}

@media (max-width:768px) {
    .section-header {
        flex-direction: column
    }
}

.section-header img {
    width: 48px;
    height: 48px
}

@media (max-width:768px) {
    .section-header img {
        width: 36px;
        height: 36px
    }
}

.section-title {
    font-weight: 900;
    font-size: 22px;
    line-height: 34px;
    text-align: right;
    color: #313131
}

@media (max-width:768px) {
    .section-title {
        font-size: 20px;
        line-height: 30px
    }
}

.restoration-swiper {
    overflow: hidden !important;
    padding: 8px 4px 50px !important;
    position: relative;
    width: 100%
}

    .restoration-swiper .swiper-wrapper {
        align-items: stretch
    }

    .restoration-swiper .swiper-slide {
        height: auto;
        display: flex
    }

    .restoration-swiper .swiper-button-next, .restoration-swiper .swiper-button-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 44px;
        height: 44px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: all 0.25s ease
    }

@media (max-width:768px) {
    .restoration-swiper .swiper-button-next, .restoration-swiper .swiper-button-prev {
        width: 36px;
        height: 36px
    }
}

.restoration-swiper .swiper-button-next::after, .restoration-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
    color: #13558d
}

@media (max-width:768px) {
    .restoration-swiper .swiper-button-next::after, .restoration-swiper .swiper-button-prev::after {
        font-size: 14px
    }
}

.restoration-swiper .swiper-button-next:hover, .restoration-swiper .swiper-button-prev:hover {
    background: #13558d
}

    .restoration-swiper .swiper-button-next:hover::after, .restoration-swiper .swiper-button-prev:hover::after {
        color: #ffffff
    }

.restoration-swiper .swiper-button-next {
    right: 10px
}

.restoration-swiper .swiper-button-prev {
    left: 10px
}

.restoration-swiper .swiper-pagination {
    position: relative;
    bottom: 0 !important;
    margin-top: 20px
}

.restoration-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cccccc;
    opacity: 1;
    transition: all 0.25s ease
}

.restoration-swiper .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 6px;
    background: #13558d
}

.restoration-swiper .swiper-pagination-bullet:hover {
    background: #3684c6
}

.prices-pro {
    margin: 80px auto 80px
}

@media (max-width:768px) {
    .prices-pro {
        margin: 48px auto 48px
    }
}

.prices-info {
    display: flex;
    flex-direction: column;
    gap: 47px
}

.prices-info-title {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column
}

.price-info-ti span {
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    color: #4a5565
}

@media (max-width:768px) {
    .price-info-ti span {
        font-size: 20px
    }
}

@media (max-width:522px) {
    .price-info-ti span {
        font-size: 18px
    }
}

.price-title {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center
}

@media (max-width:768px) {
    .price-title {
        flex-direction: column
    }
}

.price-title img {
    width: 48px;
    height: 48px
}

@media (max-width:768px) {
    .price-title img {
        width: 40px;
        height: 40px
    }
}

.price-title-te {
    font-weight: 900;
    font-size: 32px;
    color: #313131
}

@media (max-width:768px) {
    .price-title-te {
        font-size: 24px
    }
}

@media (max-width:480px) {
    .price-title-te {
        font-size: 20px
    }
}

.price-update {
    display: flex;
    align-items: center;
    gap: 8px
}

.price-cals {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center
}

    .price-cals img {
        width: 24px;
        height: 24px
    }

.price-update-right {
    display: flex;
    align-items: center;
    gap: 7px
}

.price-last-up {
    color: #4a5565;
    font-weight: 700;
    font-size: 16px;
    text-align: center
}

.price-date {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row-reverse
}

    .price-date span {
        font-weight: 400;
        font-size: 20px;
        text-align: center;
        color: #4a5565
    }

@media (max-width:768px) {
    .price-date span {
        font-size: 18px
    }
}

.prices-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

@media (max-width:768px) {
    .prices-box {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:522px) {
    .prices-box {
        grid-template-columns: 1fr
    }
}

.pric-box {
    display: flex;
    flex-direction: column;
    gap: 22px;
    border-radius: 16px;
    padding: 32px;
    background: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1019607843)
}

@media (max-width:768px) {
    .pric-box {
        padding: 24px
    }
}

.pri-box-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px
}

.pri-top-ti span {
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #101828
}

@media (max-width:768px) {
    .pri-top-ti span {
        font-size: 18px
    }
}

.pri-top-subti span {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #4a5565
}

@media (max-width:768px) {
    .pri-top-subti span {
        font-size: 18px
    }
}

.price-space-line {
    border: 1px solid rgba(19,85,141,0.1215686275);
    border-width: 1px
}

.price-count {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center
}

.price-num, .price-val {
    color: #13558d;
    font-weight: 700;
    font-size: 20px;
    text-align: center
}

@media (max-width:768px) {
    .price-num, .price-val {
        font-size: 18px
    }
}

.price-val {
    font-size: 16px
}

@media (max-width:768px) {
    .price-val {
        font-size: 13px
    }
}

.price-notes {
    margin: 80px auto 80px
}

@media (max-width:768px) {
    .price-notes {
        margin: 48px auto 48px
    }
}

.price-note {
    display: flex;
    align-items: center;
    gap: 22px;
    border-radius: 16px;
    padding: 20px;
    background-color: #eff6ff
}

@media (max-width:768px) {
    .price-note {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        align-items: center;
        justify-content: center
    }
}

.price-note span {
    font-weight: 700;
    font-size: 20px;
    text-align: right;
    color: #13558d
}

@media (max-width:768px) {
    .price-note span {
        font-size: 18px;
        text-align: center
    }
}

.price-no-img {
    display: flex;
    background: #13558d;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    padding: 12px
}

    .price-no-img img {
        width: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }

.questions {
    margin: 24px auto 80px
}

@media (max-width:768px) {
    .questions {
        margin: 48px auto 48px
    }
}

.questions-box {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 19px
}

@media (max-width:1080px) {
    .questions-box {
        grid-template-columns: 1fr
    }
}

.question-box1 {
    display: flex;
    flex-direction: column;
    gap: 22px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1019607843);
    background: #ffffff
}

@media (max-width:768px) {
    .question-box1 {
        padding: 16px
    }
}

.question-box2 {
    display: flex;
    gap: 22px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1019607843);
    background: #ffffff
}

@media (max-width:768px) {
    .question-box2 {
        flex-direction: column;
        padding: 16px
    }
}

.question-title {
    color: #101828;
    font-weight: 700;
    font-size: 20px;
    text-align: right
}

@media (max-width:768px) {
    .question-title {
        font-size: 18px
    }
}

@media (max-width:480px) {
    .question-title {
        text-align: center
    }
}

.question-subtitle {
    color: #4a5565;
    font-weight: 400;
    font-size: 18px;
    text-align: right
}

@media (max-width:768px) {
    .question-subtitle {
        font-size: 14px
    }
}

.phone-num {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #13558d
}

@media (max-width:768px) {
    .phone-num {
        font-size: 18px
    }
}

.call-icon {
    background-color: #13558d;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.call {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width:480px) {
    .call {
        flex-direction: column;
        gap: 8px
    }
}

.questions-part {
    display: flex;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1019607843);
    background: #ffffff;
    justify-content: space-between;
    border-radius: 16px;
    padding: 32px
}

@media (max-width:768px) {
    .questions-part {
        flex-direction: column;
        gap: 22px;
        padding: 24px
    }
}

.question-part {
    display: flex;
    align-items: center;
    gap: 22px
}

@media (max-width:480px) {
    .question-part {
        flex-direction: column;
        text-align: center;
        gap: 12px
    }
}

.part-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eff6ff;
    padding: 12px;
    border-radius: 12px
}

.q-part-text {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.guarantees {
    margin: 80px auto 80px
}

@media (max-width:768px) {
    .guarantees {
        margin: 48px auto 48px
    }
}

.guarantee {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    border-radius: 32px;
    padding: 32px;
    background: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.2)
}

@media (max-width:1150px) {
    .guarantee {
        display: flex;
        flex-direction: column-reverse
    }
}

@media (max-width:768px) {
    .guarantee {
        padding: 24px
    }
}

.guarantee-right {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    gap: 42px
}

@media (max-width:768px) {
    .guarantee-right {
        gap: 32px
    }
}

.madein-country {
    color: #313131;
    font-weight: 700;
    font-size: 20px;
    text-align: right
}

@media (max-width:768px) {
    .madein-country {
        font-size: 13px
    }
}

.madein {
    display: flex;
    gap: 16px;
    align-items: center
}

.country {
    display: flex;
    gap: 8px;
    align-items: center
}

    .country img {
        width: 40px;
        height: 28px;
        border-radius: 8px
    }

    .country span {
        font-weight: 500;
        font-size: 18px;
        text-align: right;
        color: #313131
    }

@media (max-width:768px) {
    .country span {
        font-size: 14px
    }
}

.top-guarantee {
    background: linear-gradient(135deg,#234d69 0%,#13558d 100%);
    width: 197px;
    height: 42.5px;
    border-radius: 16.75px;
    display: flex;
    gap: 9px;
    padding-right: 16px;
    padding-left: 16px;
    align-items: center
}

@media (max-width:768px) {
    .top-guarantee {
        height: auto;
        padding: 8px 16px
    }
}

.top-guarantee span {
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
    text-align: right
}

@media (max-width:768px) {
    .top-guarantee span {
        font-size: 16px
    }
}

.top-guarantee img {
    width: 24px;
    height: 24px
}

.guarantees-title {
    color: #13558d;
    font-weight: 700;
    font-size: 22px;
    text-align: right
}

@media (max-width:768px) {
    .guarantees-title {
        font-size: 18px
    }
}

.usages {
    display: flex;
    align-items: center;
    gap: 16px
}

@media (max-width:480px) {
    .usages {
        flex-wrap: wrap
    }
}

.usage-ti span {
    color: #313131;
    font-weight: 700;
    font-size: 16px;
    text-align: right
}

@media (max-width:768px) {
    .usage-ti span {
        font-size: 14px
    }
}

.usage {
    background-color: #d7e6f4;
    border-radius: 14px;
    padding: 10px;
    gap: 10px;
    font-weight: 500;
    font-size: 22px;
    text-align: right;
    color: #313131
}

@media (max-width:768px) {
    .usage {
        font-size: 14px;
        padding: 8px
    }
}

.guarantee-left {
    display: flex;
    gap: 16px
}

@media (max-width:1150px) {
    .guarantee-left {
        flex-direction: column-reverse
    }
}

.pro-colors {
    display: flex;
    flex-direction: column;
    gap: 10px
}

@media (max-width:768px) {
    .pro-colors {
        flex-direction: row;
        gap: 4px;
        flex-wrap: wrap
    }
}

.col {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    flex-shrink: 0
}

.col-brown {
    background-color: #b57a5c
}

.col-nescoffe {
    background-color: #cdb488
}

.col-gray {
    background-color: #dcd9d9
}

.col-cream {
    background-color: #f0e0b7
}

.col-darkred {
    background-color: #560717
}

.col-black {
    background-color: #1e293b
}

.pro-color {
    display: flex;
    align-items: center;
    border: 1px solid #e7e7e7;
    background: #ffffff;
    border-radius: 13px;
    padding: 10px;
    gap: 10px;
    border-width: 1px;
    cursor: pointer;
    transition: all 0.2s ease
}

@media (max-width:768px) {
    .pro-color {
        flex-direction: column;
        padding: 8px
    }
}

.pro-color span {
    color: #1e293b;
    font-weight: 500;
    font-size: 22px;
    text-align: right
}

@media (max-width:768px) {
    .pro-color span {
        font-size: 12px
    }
}

.pro-color.active {
    background: var(--Color-Background,#ffffff);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1607843137);
    border: 1px solid var(--Color-Primary,#13558d)
}

.pro-color {
}

    .pro-color:hover {
        transform: scale(1.02)
    }

.pro-img {
    border: 1px solid #3685c6;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    padding: 12px;
    gap: 12px;
    border-width: 1px;
    justify-content: space-between
}

@media (max-width:1150px) {
    .pro-img {
        margin: 0 auto;
        width: 100%;
        max-width: 332px
    }
}

.pro-img img {
    width: 296px;
    height: 308px;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:1150px) {
    .pro-img img {
        width: 100%;
        height: auto;
        top: 0;
        left: 0
    }
}

@media (max-width:768px) {
    .pro-img img {
        top: 0px;
        left: 0px
    }
}

.pro-info {
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.1490196078);
    background-color: #ffffff;
    border-radius: 20px;
    justify-content: space-between;
    padding-top: 8px;
    padding-right: 14px;
    padding-bottom: 8px;
    padding-left: 8px
}

    .pro-info span {
        color: #313131;
        font-weight: 700;
        font-size: 20px;
        text-align: right
    }

@media (max-width:768px) {
    .pro-info span {
        font-size: 16px
    }
}

.pro-code {
    background-color: #13558d;
    border-radius: 16px;
    padding: 12px;
    gap: 12px
}

    .pro-code span {
        font-weight: 700;
        font-size: 18px;
        text-align: center;
        color: #ffffff
    }

@media (max-width:768px) {
    .pro-code span {
        font-size: 15px
    }
}

@media (max-width:768px) {
    .pay-title, .reconstruction-title, .restorations-wrap .section-header, .branches-title, .article-title, .price-title, .portfolio-slider__header {
        flex-direction: column;
        text-align: center
    }
}

.portfolio {
    margin: 90px auto;
    overflow: hidden
}

@media (max-width:768px) {
    .portfolio {
        margin: 48px auto
    }
}

.portfolio-slider__wrapper {
    display: flex;
    flex-direction: column;
    gap: 63px
}

@media (max-width:768px) {
    .portfolio-slider__wrapper {
        gap: 40px
    }
}

.portfolio-slider__header {
    display: flex !important;
    gap: 16px !important;
    align-items: center !important;
    justify-content: center !important
}

@media (max-width:768px) {
    .portfolio-slider__header {
        flex-direction: column !important
    }
}

.portfolio-slider__header img {
    width: 48px;
    height: 48px
}

@media (max-width:768px) {
    .portfolio-slider__header img {
        width: 40px;
        height: 40px
    }
}

.portfolio-slider__title {
    font-weight: 900;
    font-size: 32px;
    color: #313131;
    text-align: center
}

@media (max-width:768px) {
    .portfolio-slider__title {
        font-size: 24px
    }
}

@media (max-width:480px) {
    .portfolio-slider__title {
        font-size: 20px
    }
}

.portfolio-swiper {
    width: 100%;
    overflow: hidden
}

    .portfolio-swiper .swiper-slide {
        display: flex;
        height: auto
    }

.swiper-slide.p-slide {
    background: #ffffff;
    display: flex;
    gap: 26px;
    border-radius: 16px;
    padding: 16px
}

@media (max-width:768px) {
    .swiper-slide.p-slide {
        padding: 12px;
        gap: 16px
    }
}

.swiper-slide.p-slide img {
    width: auto !important
}

.portfolio-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%
}

.portfolio-card__image {
    border-radius: 16px;
    margin-bottom: 26px
}

    .portfolio-card__image img {
        width: 100%;
        height: 200px;
        -o-object-fit: cover;
        object-fit: cover
    }

@media (max-width:768px) {
    .portfolio-card__image img {
        height: 170px
    }
}

.portfolio-card__body {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0
}

.portfolio-card__title {
    color: #101828;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    text-align: right
}

@media (max-width:768px) {
    .portfolio-card__title {
        font-size: 18px;
        line-height: 28px
    }
}

.portfolio-card__desc {
    color: #4a5565;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: justify
}

@media (max-width:768px) {
    .portfolio-card__desc {
        font-size: 14px;
        line-height: 22px
    }
}

.portfolio-card__actions {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 26px;
    margin-bottom: 3px
}

@media (max-width:480px) {
    .portfolio-card__actions {
        grid-template-columns: 1fr
    }
}

.portfolio-btn {
    height: 52px;
    display: flex;
    gap: 10px;
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease
}

@media (max-width:768px) {
    .portfolio-btn {
        font-size: 15px;
        height: 46px
    }
}

.portfolio-btn--primary {
    background-color: #13558d;
    color: #ffffff
}

    .portfolio-btn--primary:hover {
        background-color: #05577f;
        transform: translateY(-2px);
        box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.12),0px 1px 6px 0px rgba(0,0,0,0.06)
    }

.portfolio-btn--outline {
    border: 1px solid #13558d;
    color: #13558d
}

    .portfolio-btn--outline:hover {
        background-color: rgba(7,122,178,0.08);
        transform: translateY(-2px)
    }

.slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%
}

.swiper-slide img {
    width: auto;
    overflow: visible !important
}

.portfolio-card img {
    border-radius: 16px
}

.bg-swi, .mr-arrow {
    border: 1px solid #e2e8f0;
    color: #64748b;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none
}

    .mr-arrow img {
        width: 24px;
        height: 24px;
        -o-object-fit: cover;
        object-fit: cover;
        margin-top: -14px
    }

    .bg-swi img {
        width: 24px;
        height: 24px;
        -o-object-fit: cover;
        object-fit: cover;
        margin-top: 0px
    }

.butns {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 10px
}

.mr-arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px
}

.mr-arrow {
    background-color: var(--Color-Background,#ffffff);
    gap: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: absolute;
    bottom: 10px;
    z-index: 99;
    padding-top: 25px;
    border: 1px solid #e2e8f0;
    color: #64748b;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none
}

    .mr-arrow img {
        width: 24px;
        height: 24px;
        -o-object-fit: cover;
        object-fit: cover
    }

.swiper-button-next, .swiper-button-prev {
    position: static !important;
    display: block
}

.mr-arrow-le {
    left: 10px
}

.mr-arrow-ri {
    right: 10px
}

.portfolio-card img {
    border-radius: 50px 50px 50px 50px !important
}

.fab {
    display: flex;
    gap: 14px;
    width: 242px;
    min-width: 110px;
    position: fixed;
    bottom: 40px;
    right: 78px;
    padding: 6px 16px;
    border-top-left-radius: 42px;
    border-top-right-radius: 42px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 42px;
    background-color: #00b483;
    align-items: center;
    z-index: 100000000
}

    .fab img {
        width: 50px;
        height: 50px
    }

.fab-content {
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.fab-co-te {
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #ffffff
}

.fab-co-num {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    direction: ltr
}

@media (min-width:992px) {
    .fab {
        display: flex;
        position: fixed;
        bottom: 40px;
        right: 78px
    }
}

@media (max-width:991px) {
    .fab {
        display: none
    }
}

.video-box img {
    max-height: 430px
}

.bg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    gap: 10px;
    border-radius: 8px;
    padding: 4px
}

.bg-icon2 {
    background: #13558d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 88px;
    height: 52px;
    gap: 12px;
    border-radius: 16px;
    padding: 12px
}

@media (max-width:640px) {
    .bg-icon2 {
        height: 38px
    }
}

.bg-icon2 img {
    width: 18px;
    filter: brightness(0) invert(1)
}

.bg-icon2:hover {
    transform: scale(1.05)
}

.product-box > .bg-icon2 {
    width: 55px;
    height: 45px
}

.branches {
    margin: 80px auto
}

@media (max-width:768px) {
    .branches {
        margin: 48px auto
    }
}

.branches-wrapper {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center
}

.branches-title {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center
}

@media (max-width:768px) {
    .branches-title {
        flex-direction: column
    }
}

.branches-title img {
    width: 48px;
    height: 48px
}

@media (max-width:768px) {
    .branches-title img {
        width: 40px;
        height: 40px
    }
}

.branches-title-te {
    font-weight: 900;
    font-size: 32px;
    color: #313131
}

@media (max-width:768px) {
    .branches-title-te {
        font-size: 24px
    }
}

@media (max-width:480px) {
    .branches-title-te {
        font-size: 20px
    }
}

.box-branches {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    width: 100%;
    align-items: stretch
}

@media (max-width:786px) {
    .box-branches {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

.big-branches {
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    background-color: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    height: 100%
}

@media (max-width:768px) {
    .big-branches {
        padding: 24px;
        gap: 16px
    }
}

.location {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: #eff6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0
}

    .location img {
        width: 22px;
        height: 22px
    }

.branch {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 12px
}

.branch-title {
    color: #101828;
    font-weight: 700;
    font-size: 20px;
    line-height: 29.75px;
    text-align: right;
    margin: 0
}

@media (max-width:768px) {
    .branch-title {
        font-size: 18px
    }
}

.branch-sub {
    color: #4a5565;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    text-align: right;
    margin: 0;
    padding-right: 0
}

@media (max-width:706px) {
    .branch-sub {
        font-size: 16px;
        line-height: 28px
    }
}

.line-branch {
    border: 1px solid rgba(54,133,198,0.3);
    margin: 8px 0
}

.loc-apps {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px
}

@media (max-width:706px) {
    .loc-apps {
        display: grid;
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:476px) {
    .loc-apps {
        grid-template-columns: 1fr
    }
}

.loc-app {
    border: 1px solid #066899;
    display: flex;
    border-radius: 16px;
    gap: 8px;
    padding: 8px 16px;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff
}

    .loc-app:hover {
        background-color: #066899
    }

        .loc-app:hover span {
            color: #ffffff
        }

        .loc-app:hover img {
            filter: brightness(0) invert(1)
        }

    .loc-app img {
        width: 20px;
        height: 20px;
        -o-object-fit: cover;
        object-fit: cover;
        transition: all 0.2s ease
    }

    .loc-app span {
        font-weight: 700;
        font-size: 15px;
        text-align: center;
        color: #066899;
        transition: all 0.2s ease;
        white-space: nowrap
    }

@media (max-width:480px) {
    .loc-app span {
        white-space: normal;
        font-size: 12px
    }
}

.small-branches {
    display: flex;
    gap: 24px;
    flex-direction: column;
    height: 100%
}

@media (max-width:786px) {
    .small-branches {
        gap: 16px
    }
}

.s-top-branches {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px
}

@media (max-width:480px) {
    .s-top-branches {
        grid-template-columns: 1fr
    }
}

.s-top-branche {
    display: flex;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.2s ease;
    min-height: 120px
}

    .s-top-branche:hover {
        transform: translateY(-3px);
        box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15)
    }

    .s-top-branche .num {
        color: #066899;
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;
        text-align: center
    }

@media (max-width:768px) {
    .s-top-branche .num {
        font-size: 24px
    }
}

.s-top-branche span {
    color: #4a5565;
    font-weight: 400;
    font-size: 18px;
    text-align: center
}

@media (max-width:768px) {
    .s-top-branche span {
        font-size: 16px
    }
}

.s-bottombranch {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    gap: 12px;
    flex: 1;
    justify-content: center
}

@media (max-width:768px) {
    .s-bottombranch {
        padding: 24px;
        gap: 12px
    }
}

.s-bottombranch .branch-title {
    margin-top: 0
}

.s-bottombranch .branch-sub {
    line-height: 28px
}

    .s-bottombranch .branch-sub:last-child {
        margin-top: -4px
    }

.s-bottombranch .location {
    margin-bottom: 4px
}

@media (max-width:786px) {
    .box-branches {
        grid-template-columns: 1fr
    }

    .big-branches {
        order: 2
    }

    .small-branches {
        order: 1
    }

    .s-top-branches {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:480px) {
    .s-top-branches {
        grid-template-columns: 1fr
    }

    .loc-apps {
        grid-template-columns: 1fr
    }
}

.pro-img img {
    width: 410px;
    max-height: 288px
}

.portfolio-slider__swiper .swiper-slide {
    height: auto;
    display: flex
}

.butns {
    display: flex;
    gap: 20px
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    height: 100%
}

.portfolio-card__body {
    flex-grow: 1
}

.portfolio-card__actions {
    margin-top: auto
}

.dep-multi-locs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

@media (max-width:768px) {
    .dep-multi-locs {
        grid-template-columns: 1fr
    }
}

.dep-multi-loc {
    border: 1px solid #13558d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 16px;
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;
    border-width: 1px
}

    .dep-multi-loc img {
        width: 24px;
        height: 24px
    }

    .dep-multi-loc span {
        color: #13558d;
        font-weight: 700;
        font-size: 16px;
        text-align: center
    }

.map-add1 {
    border-radius: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

.pay-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pay-wrapper .swiper-slide {
    max-height: 600px;
    overflow: hidden
}

.before-after-wrapper {
    position: relative;
    aspect-ratio: 3/2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    user-select: none;
    -webkit-user-select: none
}

.w-img1, .w-img2 {
    position: absolute;
    top: 16px;
    padding: 8px 16px;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    z-index: 15;
    font-family: 'Iran1',sans-serif;
    pointer-events: none
}

.w-img1 {
    right: 16px;
    background-color: #e6595c
}

.w-img2 {
    left: 16px;
    background-color: #00c950
}

.before-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 10;
    border-radius: 40px 0 0 40px;
    will-change: width
}

.before-image {
    height: 100%;
    background-size: cover;
    position: relative;
    border-radius: 40px 0 0 40px
}

.after-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    border-radius: 40px 0 0 40px
}

.handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ffffff;
    z-index: 20;
    cursor: col-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3)
}

    .handle::before {
        content: '';
        position: absolute;
        inset: 0 -20px
    }

    .handle::after {
        content: '';
        width: 40px;
        height: 40px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24" width="24" viewBox="0 0 512 512"><path fill="%233685c6" d="M505.7 265.7c3-3 3.1-7.9 .2-11.1l-104-112c-3-3.2-8.1-3.4-11.3-.4s-3.4 8.1-.4 11.3L481.7 252 23.3 252l90.3-90.3c3.1-3.1 3.1-8.2 0-11.3s-8.2-3.1-11.3 0l-104 104c-3.1 3.1-3.1 8.2 0 11.3l104 104c3.1 3.1 8.2 3.1 11.3 0s3.1-8.2 0-11.3L23.3 268l457.4 0-90.3 90.3c-3.1 3.1-3.1 8.2 0 11.3s8.2 3.1 11.3 0l104-104z"/></svg>');
        background-size: 24px;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #ffffff
    }

@media (max-width:768px) {
    .before-after-wrapper {
        max-width: 100%;
        aspect-ratio: 4/3;
        border-radius: 24px
    }

    .w-img1, .w-img2 {
        font-size: 13px;
        padding: 6px 12px;
        top: 12px
    }

    .handle::after {
        width: 32px;
        height: 32px;
        background-size: 18px
    }
}

@media (max-width:480px) {
    .w-img1, .w-img2 {
        font-size: 11px;
        padding: 4px 10px;
        top: 8px
    }

    .handle::after {
        width: 28px;
        height: 28px;
        background-size: 14px
    }
}

.handle {
    align-items: center;
    background: unset;
    bottom: 0;
    cursor: col-resize;
    display: flex;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 0;
    width: 4px;
    z-index: 20
}

    .handle::before {
        content: '';
        position: absolute;
        inset: 0 -20px
    }

    .handle::after {
        align-items: center;
        background: #ffffff;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        content: '';
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 52px;
        height: 52px;
        z-index: 3;
        padding: 8px;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 512 512"><path stroke="%2313558D" stroke-width="14" stroke-linecap="round" stroke-linejoin="full" fill="blue" d="M505.7 265.7c3-3 3.1-7.9 .2-11.1l-104-112c-3-3.2-8.1-3.4-11.3-.4s-3.4 8.1-.4 11.3L481.7 252 23.3 252l90.3-90.3c3.1-3.1 3.1-8.2 0-11.3s-8.2-3.1-11.3 0l-104 104c-3.1 3.1-3.1 8.2 0 11.3l104 104c3.1 3.1 8.2 3.1 11.3 0s3.1-8.2 0-11.3L23.3 268l457.4 0-90.3 90.3c-3.1 3.1-3.1 8.2 0 11.3s8.2 3.1 11.3 0l104-104z"/></svg>');
        background-size: 32px;
        background-position: center;
        background-repeat: no-repeat
    }

.text-slider {
    height: 44px;
    overflow: hidden;
    flex: 1;
    min-height: 44px
}

.text-slider__track {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease
}

.slide {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 4px 0
}

    .slide img {
        width: 18px;
        height: 18px;
        flex-shrink: 0
    }

    .slide span {
        height: auto;
        display: flex;
        align-items: center;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
        line-height: 1.4;
        font-size: 13px
    }

@media (max-width:768px) {
    .top-bar__wrapper {
        flex-direction: column;
        align-items: flex-start
    }

    .top-bar__item, .top-bar__right {
        width: 100%;
        min-width: unset
    }

    .text-slider {
        height: 60px;
        min-height: 60px
    }

    .slide {
        height: 60px
    }

        .slide span {
            font-size: 12px
        }
}

@media (max-width:480px) {
    .text-slider {
    }

    .slide {
    }

        .slide span {
            font-size: 11px
        }
}

.all-colors {
    display: flex;
    border: 1px solid #13558D;
    max-width: 225px;
    gap: 10px;
    border-radius: 16px;
    padding: 12px 16px
}

@media (max-width:768px) {
    .all-colors {
        width: 100%;
        max-width: 100%;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.all-colors {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #13558D
}
