.db-section {
    padding: 50px 0;
    background-color: #fff;
}

.db-section .db-header {
    margin-bottom: 40px;
}

.db-section .db-label {
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.db-section .db-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.2;
}

.db-section .db-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    max-width: 800px;
}

.db-section .db-body-wrapper {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.db-section .db-slider-col {
    max-width: 345px;
    width: 100%;
    position: relative;
    min-width: 0;
}

.db-section .db-swiper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.db-section .db-image-ratio {
    position: relative;
    padding-bottom: 558px;
    width: 100%;
    background: #f4f4f4;
}

.db-section .db-image-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* height: 558px; */
}

.db-section .db-swiper .swiper-button-next,
.db-section .db-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: #D9D9D9;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background-image: none;
    cursor: pointer;
}

.db-section .db-swiper .swiper-button-next:hover,
.db-section .db-swiper .swiper-button-prev:hover {
    background: #BEB9B2;
}

.db-section .db-swiper .swiper-button-next svg path,
.db-section .db-swiper .swiper-button-prev svg path {
    fill: #000;
}

.db-section .db-swiper .swiper-button-next.swiper-button-disabled svg path,
.db-section .db-swiper .swiper-button-prev.swiper-button-disabled svg path {
    fill: #C5C5C6;
    fill: #000;
}

.db-section .db-swiper .swiper-button-next:after,
.db-section .db-swiper .swiper-button-prev:after {
    content: none;
    font-size: 18px;
    font-weight: bold;
}

.db-swiper:hover .swiper-button-prev,
.db-swiper:hover .swiper-button-next {
    display: flex;
}

.db-section .db-swiper .swiper-pagination-bullet-active {
    background: #e65c00;
}

.db-section .db-info-col {
    width: 100%;
}

.db-section .db-blocks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.db-section .db-feat-group {
    margin-bottom: 35px;
}

.db-section .db-card {
    padding: 50px;
    padding-bottom: 0;
    background: #F8F9FA;
    border-radius: 10px;
}

.db-section .db-card-icon img {
    width: 60px;
    height: auto;
    margin-bottom: 40px;
}

.db-section .db-card-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 24px;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 28px;
}

.db-section .db-hl-item {
    margin-bottom: 26px;
}

.db-section .db-hl-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.db-section .db-hl-content {
    font-size: 14px;
    line-height: 20px;
}

.db-section .db-feat-group-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 6px;
    color: #000;
}

.db-section .db-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.db-section .db-feat-list li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    line-height: 20px;
}

.db-section .check-icon {
    color: #e65c00;
    margin-right: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.db-section .db-mobile-tabs {
    display: none;
}

.db-section .swiper-pagination {
    bottom: -54px !important;
    left: 50%;
    transform: translateX(-50%);
}

.db-section .swiper-pagination span {
    margin: 0 4.3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s;
}

.db-section .swiper-pagination .swiper-pagination-bullet-active {
    background: #F06C00;
    width: 20px;
    border-radius: 100px;
    transition: all 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .db-section .db-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {

    .db-section .db-body-wrapper {
        flex-direction: column;
    }

    .db-section .db-slider-col,
    .db-section .db-info-col {
        width: 100%;
        max-width: 100%;
    }

    .db-section .db-image-ratio {
        padding-bottom: 400px;
    }

    .db-section .db-blocks-grid {
        display: block;
    }

    .db-section .db-card {
        display: none;
        padding-top: 40px;
        padding-bottom: 20px;
        animation: fadeIn 0.4s ease;
        padding-bottom: 0;
    }

    .db-section .db-card.mobile-show {
        display: block;
    }

    .db-section .db-mobile-tabs {
        display: flex;
        gap: 20px;
        margin-top: 59px;
        margin-bottom: 40px;
        overflow-x: auto;
        padding-bottom: 0;
        font-weight: 600;
    }

    .db-section .db-tab-btn {
        background: none;
        border: none;
        border-bottom: 1px solid transparent;
        cursor: pointer;
        text-align: left;
        max-width: 120px;
        white-space: normal;
        flex-shrink: 0;
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
    }

    .db-section .db-tab-btn:nth-child(1),
    .db-section .db-tab-btn:nth-child(2) {
        width: min-content;
        color: #000;
    }

    .db-section .db-tab-btn:nth-child(1) {
        width: 111px;
    }

    .db-section .db-tab-btn.active {
        color: #e65c00;
        border-bottom-color: #e65c00;
        margin: 0;
    }

    .db-section {
        padding-top: 0;
    }

    .db-section .swiper-pagination {
        bottom: -35px !important;
    }

    .db-section .swiper-pagination span {
        height: 8px;
        width: 8px;
        margin: 0 3.3px;
    }

    .db-section .swiper-pagination .swiper-pagination-bullet-active {
        width: 16px;
    }

    .db-section .db-card-icon img {
        width: 48px;
        height: auto;
        margin-bottom: 20px;
    }

    .db-card-title {
        font-size: 18px;
        line-height: 21px;
    }

    .db-section .db-card-subtitle {
        font-size: 14px;
        line-height: 16px;
        margin-top: 16px;
        margin-bottom: 30px;
    }

    .db-section .db-feat-list li {
        margin-bottom: 12px;
    }

    .db-section .check-icon {
        margin-right: 9px;
    }

    .db-section .sec-desc {
        display: none;
    }

    .db-section .db-feat-group:last-child {
        margin-bottom: 0;
        padding-bottom: 40px;
    }

    .db-section .db-feat-group:last-child li:last-child {
        margin-bottom: 0;
    }

    .db-section .db-feat-group:last-child ul {
        margin-bottom: 0 !important;
    }
}