.product-tab {
    display: flex;
    padding: 0 20px;
    margin: 0 0 60px;
}

.product-tab:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.product-tab:nth-of-type(2n) .product-tab__left {
    margin-right: 0;
    margin-left: 24px;
    text-align: right;
}

.product-tab:nth-of-type(2n) .product-tab__left .product-tab__left-title {
    padding-right: 0;
    padding-left: 95px;
}

.product-tab__left {
    width: 32.4%;
    display: flex;
    flex-direction: column;
    background: var(--main-background-color);
    border-radius: 8px;
    margin-right: 24px;
    flex: 1 0 auto;
    position: relative;
    z-index: 2;
    max-height: 455px;
}

.product-tab__left-content {
    padding: 32px;
}

.product-tab__left-img {
    display: flex;
    justify-content: center;
    padding: 0 24px 24px 24px;
    height: 72%;
}

.product-tab__left-title {
    padding-right: 95px;
    font-size: 26px;
    margin: 0 0 12px;
}

.product-tab__left-link {
    color: var(--accent-color);
}

.product-tab__right {
    width: calc(67.6% - 24px);
}

.product-tab .swiper {
    width: 100%;
    overflow: visible;
}

.product-tab__left-nav {
    position: absolute;
    right: 10px;
    top: 35px;
    display: flex;
}

.product-tab:nth-of-type(2n) .product-tab__left-nav {
    right: auto;
    left: 10px;
}

.product-tab__nav {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
}

.product-tab__nav.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.35;
}

.product-tab__nav:hover {
    background: var(--accent-color);
    color: var(--secondary-text-color);
}

.product-tab .swiper .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition-duration: 250ms;
    transition-property: visibility, opacity;
}

.product-tab .swiper .swiper-slide-visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1550px) {
    .product-tab__left {
        width: 37.4%;
    }
    .product-tab__right {
        width: 61.2%;
    }
}

@media (max-width: 1439px) {
    .product-tab__left {
        width: 44.4%;
    }
    .product-tab__right {
        width: 54.2%;
    }
}

@media (max-width: 1330px) {
    .product-tab__left {
        width: 44.4%;
    }
    .product-tab__right {
        width: 54.2%;
    }
}

@media (max-width: 1150px) {
    .product-tab__left {
        width: 40.4%;
    }
    .product-tab__right {
        width: 58.2%;
    }
}


@media (max-width: 1024px) {

    .product-tab:nth-of-type(2n),
    .product-tab {
        flex-direction: column;
    }

    .product-tab__left {
        width: 100%;
    }

    .product-tab__left {
        margin-right: 0;
        margin-bottom: 24px;
    }

    .product-tab:nth-of-type(2n) .product-tab__left {
        text-align: left;
        margin-left: 0;
    }

    .product-tab__right {
        width: 100%;
    }

    .product-tab__left-img {
        display: none;
    }
    .product-tab:nth-of-type(2n) .product-tab__left-nav {
        right: 10px;
        left: auto;
    }

    .product-tab:nth-of-type(2n) .product-tab__left .product-tab__left-title {
        padding-left: 0;
        padding-right: 95px;
    }
}

@media (max-width: 768px) {
    .product-tab {
        padding-left: 0;
        padding-right: 0;
    }
}