/***offer area***/
.offer-slider {
    .slick-dots {
        position: absolute;
        left: 222px;
        top: 50%;
        transform: translate(0, -50%);
        margin: 0;
        li {
            display: block;
            margin: 0;
            padding: 8px;
            border: 2px dotted #525960;
            border-radius: 50%;
            transition: 0.4s;
            &:not(:last-child) {
                margin-bottom: 26px;
            }
            &.slick-active {
                border-color: $theme-color;
                button {
                    background: $theme-color;
                }
            }
        }
        button {
            height: 20px;
            width: 20px;
            background: $white-color;
            border-radius: 50%;
            transition: 0.4s;
        }   
        &:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translate(-50%, 100%);
            height: 144px;
            width: 2px;
            background: linear-gradient(#3e3c3c, transparent);
        }
        &:before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translate(-50%, -100%);
            height: 144px;
            width: 2px;
            background: linear-gradient(transparent, #3e3c3c);
        }     
    }
}
.special-offer-wrap {
    .title {
        font-size: 30px;
        color: $white-color;
        margin-bottom: 14px;
    }
    .content {
        color: $white-color;
        margin-bottom: 19px;
    }
    .price {
        font-size: 24px;
        font-weight: 700;
        color: $theme-color2;
        display: flex;
        align-items: center;
        margin-bottom: 47px;
        .tag {
            font-size: 14px;
            font-weight: 600;
            color: $white-color;
            margin-left: 23px;
        }
    }
    .as-btn {
        min-width: 163px;
    }
}
.offer-thumb {
    margin: -120px -320px -120px 0;
    position: relative;
    z-index: 0;
    .offer-tag {
        width: 158px;
        height: 152px;
        display: inline-block;
        z-index: 0;
        font-size: 30px;
        font-weight: 800;
        font-family: $title-font;
        color: $white-color;
        line-height: 36px;
        padding: 32px 17px 58px 25px;
        position: absolute;
        top: 15%;
        left: 11%;
        z-index: -1;
        &::first-line {
            font-size: 16px;
            font-weight: 600;
            line-height: 26px;
        }
        &:after {
            content: '';
            position: absolute;
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            background: $theme-color2;
            clip-path: path("M158 53C158 87.5178 144.518 152 110 152C75.4822 152 0 97.0178 0 62.5C0 27.9822 27.9822 0 62.5 0C97.0178 0 158 18.4822 158 53Z");
            z-index: -1;
        }
    }
}
@media (max-width: 1600px) {
    .offer-slider .slick-dots {
        left: 80px;
    }    
}
@include xxl {
    .offer-thumb {
        margin: -10px -100px -60px 0;
        .offer-tag {
            top: 10%;
        }
    }
    .offer-slider .slick-dots {
        left: 35px;
    }
}
@include ml {
    .offer-thumb {
        margin: -10px -120px -60px 0;
    }
}
@media (max-width: 1200px) {
    .offer-slider .slick-dots {
        display: none !important;
    }    
}
@include lg {
    .offer-thumb {
        margin: 50px -50px -60px -90px;
        .offer-tag {
            top: 0%;
        }
    }
}
@include md {
    .offer-thumb {
        margin: 0;
    }
}
@include sm {
    .offer-thumb {
        .offer-tag {
            left: 0;
        }
    }
    .special-offer-wrap .title {
        font-size: 26px;
    }
}
@include xs {
    .offer-thumb {
        img {
            margin-top: 30px;
        }
    }
    .special-offer-wrap .title {
        font-size: 24px;
    }
}
@include vxs {
    .offer-thumb img {
        margin-top: 70px;
    }
    .special-offer-wrap .price {
        display: block;
        .tag {
            display: block;
            margin: 20px 0 0 0;
        }
    }
}