.pricing-container-1 {
    background: #FFFFFF;
    padding: 60px 108px 0 108px;
}

.pricing-container-2 {
    display: flex;
    justify-content: center;
    padding: 60px 108px 60px;
}

.pricing-container-3 {
    background: #EFF8FF;
    padding: 60px 108px 60px;
}

.pricing-container-4 {
    position: relative;
    padding: 80px 108px 80px;
    background: linear-gradient(to right, #1C75BC, #4E9EC9, #1C75BC);
}

@media (max-width: 1319px) {
    .pricing-container-1 {
        padding: 60px 80px 60px;
    }

    .pricing-container-2 {
        padding: 60px 80px 60px;
    }

    .pricing-container-3 {
        padding: 60px 80px 60px;
    }

    .pricing-container-4 {
        padding: 60px 80px 60px;
    }
}

@media (max-width: 768px) {
    .pricing-container-1 {
        padding: 48px 40px 48px;
    }

    .pricing-container-2 {
        padding: 48px 40px 48px;
    }

    .pricing-container-3 {
        padding: 48px 40px 48px;
    }

    .pricing-container-4 {
        padding: 48px 40px 48px;
    }
}

.pricing-container-4::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: 1;
    opacity: 0.8;
}

.pricing-container-4::after {
    content: '';
    position: absolute;
    top: 0;
    width: 12%;
    height: 100%;
    background-size: cover;
    z-index: 1;
    opacity: 0.8;
}

.pricing-container-4::before {
    left: 0;
    background: url('../images/home/logo_gram.svg') no-repeat;
}

.pricing-container-4::after {
    right: 0;
    background: url('../images/home/logo_gram_2.svg') no-repeat;
}

@media (max-width: 1024px) {
    .pricing-container-4::before {
        top: 30%;
        scale: 0.9;
        left: -5%;
    }

    .pricing-container-4::after {
        scale: 0.9;
    }
}

@media (max-width: 768px) {
    .pricing-container-4::before {
        top: 40%;
        scale: 0.8;
        left: -15%;
    }

    .pricing-container-4::after {
        scale: 0.8;
    }
}

.pricing-container-4>* {
    position: relative;
    z-index: 2;
}

.pricing-content-1 {
    text-align: center;
    color: #1D2939;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
}

.pricing-content-2 {
    text-align: center;
    color: #586474;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.pricing-content-3 {
    color: #1D2939;
    font-weight: 500;
    font-size: 18px;
}

.pricing-content-4 {
    background-color: #12B76A;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    border-radius: 48px;
    padding: 0px 8px 0px 8px;
    margin-left: 8px;
}

.pricing-content-5 {
    text-align: center;
    color: #FCFCFD;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
}

.pricing-content-6 {
    text-align: center;
    color: #FCFCFD;
    font-size: 20px;
    font-weight: 400;
    margin-top: -12px;
    line-height: 30px;
}

@media (max-width: 768px) {
    .pricing-content-6 {
        margin-top: -4px;
    }
}

.duration-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    margin-right: -18px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    margin-bottom: 16px;
    margin-left: 20px;
    margin-right: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: #FFFFFF;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #53B1FD;
}

input:focus+.slider {
    box-shadow: 0 0 1px #53B1FD;
}

input:checked+.slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-slider {
    position: relative;
    width: 100%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.pricing-container-box {
    display: flex;
    /* justify-content: center; */
    align-items: stretch;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scrollbar-color: #888 #f1f1f1;
    padding: 60px 108px 60px 108px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    padding: 16px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .slider-btn {
        display: none;
    }
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.slider-btn.left {
    left: 0;
}

.slider-btn.right {
    right: 0;
}

.pricing-container-box::-webkit-scrollbar {
    height: 0;
}

.pricing-container-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pricing-container-box::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.pricing-container-box::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.pricing-box {
    border: 1px solid #D0D5DD;
    border-radius: 17px;
    flex: 0 0 33%;
    margin-top: 40px;
}

.pricing-box.recommended {
    border: 2px solid #4E9EC9;
    border-radius: 18px;
    padding: 0;
    margin-top: 0;
}

.recommended-label {
    background: linear-gradient(270deg, #4E9EC9 47.44%, #1C75BC 100.1%);
    color: white;
    padding: 8px 20px 8px 20px;
    border-radius: 16px 16px 0 0;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    height: 40px;
}

.pricing-content {
    padding: 12px 20px;
}

@media (max-width: 1024px) {
    .pricing-box {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .pricing-container-box {
        flex-direction: column;
    }

    .pricing-box {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .pricing-container-box {
        margin-left: 0;
        margin-right: 0;
        padding: 60px 40px 60px 40px;
    }

    .pricing-box {
        flex: 0 0 100%;
    }
}

.add-on-box {
    background: #F9FAFB;
    border-radius: 16px;
    border: 1px solid #D0D5DD;
    width: 100%;
}

.add-on-container {
    margin: 30px 40px 30px 40px;
}

.add-on-title {
    color: #1D2939;
    font-weight: 600;
    font-size: 30px;
}

.add-on-text {
    color: #5A6472;
    font-weight: 400;
    font-size: 20px;
    margin-top: -16px;
    margin-bottom: 32px;
    line-height: 30px;
}

.add-on-pkg-title {
    color: #1D2939;
    font-size: 20px;
    font-weight: 600;
    margin-top: -8px;
}

.add-on-pkg-duration {
    color: #586474;
    font-weight: 600;
    font-size: 12px;
}

.add-on-pkg-left-header {
    color: #1D2939;
    font-weight: 500;
    font-size: 18px;
}

.add-on-pkg-left-header-sm {
    color: #586474;
    font-weight: 400;
    font-size: 14px;
    margin-top: -12px;
}

.divider-row {
    width: 100%;
    height: 50px;
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: #D0D5DD;
    margin-bottom: -40px;
    margin-top: -10px;
    box-sizing: border-box;
}

.divider-row-end {
    width: 100%;
    height: 50px;
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: #D0D5DD;
    margin-bottom: -12px;
    margin-top: -10px;
}

.add-on-price {
    color: #1D2939;
    font-size: 18px;
    font-weight: 400;
}

.add-on-item {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.add-on-item::-webkit-scrollbar {
    display: none;
}

.add-on-item > .row {
    display: flex;
    flex-wrap: nowrap;
    min-width: 600px;
}

.add-on-item > .row > .col-4 {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
}

.add-on-item > .divider-row, .divider-row-end {

}

.faq-list > .row {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .faq-list > .row {
        margin-top: 0;
    }
}

.faq-title {
    color: #1D2939;
    font-weight: 600;
    font-size: 30px;
}

.faq-description {
    color: #5A6472;
    font-size: 20px;
    font-weight: 400;
    margin-top: -12px;
    margin-bottom: 36px;
}

.faq-question {
    color: #1D2939;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.faq-answer {
    color: #5A6472;
    font-weight: 400;
    font-size: 16px;
    margin-top: -8px;
    line-height: 24px;
}

.contact-sales-box {
    margin-top: 40px;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px 32px 40px;
    gap: 24px;
}

.contact-sales-content {
    display: flex;
    flex-direction: column;
    flex: 0 0 75%;
}

.contact-sales-title {
    color: #1D2939;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 30px;
}

.contact-sales-desc {
    color: #1D2939;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 28px;
}

.contact-sales-btn {
    background: #1570EF;
    text-align: center;
    color: #FFFFFF;
    padding: 10px 20px 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.contact-sales-btn:hover {
    background: #175CD3;
    color: #FFFFFF;
}

@media (max-width: 1024px) {
    .contact-sales-box {
        padding: 24px 32px 24px 32px;
        gap: 24px;
    }

    .contact-sales-content {
        flex: 0 0 70%;
    }
}

@media (max-width: 768px) {
    .contact-sales-box {
        flex-direction: column;
        gap: 12px;
        align-items: start;
        padding: 24px 20px 24px 20px;
    }
}

.get-started {
    text-align: center;
    display: block;
    margin-top: 48px;
}

.get-started-sign-up {
    background: #FFFFFF;
    padding: 10px 16px 10px 16px;
    border-radius: 6px;
    color: #1570EF;
    font-weight: 500;
    font-size: 14px;
}

.pricing-name {
    color: #1D2939;
    font-size: 24px;
    font-weight: 600;
}

.pricing-desc {
    color: #586474;
    font-size: 16px;
    font-weight: 400;
    margin-top: -16px;
    line-height: 24px;
}

@media (max-width: 768px) {
    .pricing-desc {
        margin-top: -12px;
    }
}

.pricing-price {
    color: #1D2939;
    font-weight: 600;
    font-size: 30px;
}

.pricing-btn {
    color: #FFFFFF;
    background: #1570EF;
    display: block;
    width: 100%;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-btn:hover {
    background: #175CD3;
    color: #FFFFFF;
}

.pricing-support-list {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 0;
}

.pricing-support-list li {
    font-size: 16px;
    font-weight: 400;
    color: #586474;
    line-height: 30px;
}

.img-list {
    height: 20px;
    margin-right: 8px;
}

.pricing-feature li {
    font-size: 16px;
    font-weight: 400;
    color: #1D2939;
    line-height: 36px;
}

.pricing-support p {
    font-weight: 600;
    font-size: 16px;
    color: #1D2939;
    margin: 0;
    margin-top: 8px;
}
