.pricing-page {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    color: #1F1F1F;
    line-height: 1.42857143;
    background: url(/sites/image/pricing/bg-page.png) no-repeat center center;
    background-size: cover;
    padding: 100px 15px 70px;
}

.nowrap {
    white-space: nowrap;
}

.primary-color {
    background: linear-gradient(180deg, #FF6F55 0%, #F64C2D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-title {
    position: relative;
    width: fit-content;
    margin: 0 auto 24px;
}

.pricing-title h1 {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 48px;
    text-align: center;
}

.pricing-title-icon {
    position: absolute;
    top: -12px;
    right: -60px;
}

.pricing-desc {
    font-size: 20px;
    text-align: center;
}

.pricing-list {
    /* max-width: 1640px; */
    margin: 80px auto 100px;
}

.pricing-list.owl-carousel .owl-item:not(.active) .pricing-package {
    position: relative;
}

.pricing-list.owl-carousel .owl-item:not(.active) .pricing-package::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    border-radius: inherit;
}

.pricing-list.owl-carousel.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.pricing-list.owl-carousel.owl-theme .owl-nav.disabled {
    display: none;
}

.pricing-list.owl-carousel.owl-theme .owl-nav .owl-prev,
.pricing-list.owl-carousel.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.10), 0 0 4px 0 rgba(0, 0, 0, 0.10);
}

.pricing-list.owl-carousel.owl-theme .owl-nav .owl-prev {
    left: 0;
}

.pricing-list.owl-carousel.owl-theme .owl-nav .owl-next {
    right: 0;
}

.pricing-list.owl-carousel.owl-theme .owl-nav .disabled {
    display: none;
}

.pricing-package {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(254, 205, 127, 0.50);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 246, 240, 0.80) 100%);
    box-shadow: 0 1.111px 4.444px 0 rgba(234, 88, 12, 0.10);
    padding: 32px 16px;
    margin: 20px 0;
}

.pricing-package.recommended {
    border: 1px solid #FF6F55;
}

.pricing-package .package-recommended {
    padding: 2px 5px;
    border-radius: 6px;
    background: linear-gradient(0deg, #2563EB 0%, #54A2F9 100%);
    color: #FFF;
    font-size: 12px;
    text-align: center;
    width: max-content;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pricing-package .package-credit {
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 24px;
    text-align: center;
}

.pricing-package .package-price {
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 32px;
    text-align: center;
    padding: 24px 0;
}

.pricing-package .package-price span {
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
}

.package-btn {
    display: block;
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 14px;
    background-color: #FFF7ED;
    border: 1px solid #EA580C;
    border-radius: 24px;
    padding: 12px 24px;
    text-align: center;
    cursor: pointer;
}

.package-btn:hover {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, #FF6F55 0%, #F64C2D 100%);
}

.package-btn:hover span {
    -webkit-text-fill-color: #FFF;
}

.package-desc {
    margin-top: 40px;
}

.package-desc div {
    background: url(/sites/image/pricing/ic-tick.svg) no-repeat left center;
    background-size: 16px;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #535862;
    font-size: 14px;
}

.package-desc div:last-child {
    margin-bottom: 0;
}

.detail-quote {
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    color: #FFF;
    padding: 12px 24px;
    cursor: pointer;
    width: 280px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, #FF6F55 0%, #F64C2D 100%);
    box-shadow: 0 0 0 0.556px rgba(10, 13, 18, 0.18) inset, 0 -1.111px 0 0 rgba(10, 13, 18, 0.05) inset, 0 0.556px 1.111px 0 rgba(10, 13, 18, 0.05);
}

@media (max-width: 979px) {
    .pricing-page {
        padding: 50px 15px 35px;
    }

    .pricing-title h1 {
        font-size: 32px;
    }
    

    .pricing-desc {
        font-size: 16px;
    }

    .pricing-list {
        margin: 40px auto 50px;
    }
    
}

@media (max-width: 767px) {
    .pricing-list {
        margin: 30px auto 20px;
    }

    .pricing-title-icon {
        right: -30px;
    }
}