.adsc-sectors {
    position: relative;
    min-height: 745px;
    overflow: hidden;
    color: #fff;
    font-family: inherit;
}

.adsc-sectors * {
    box-sizing: border-box;
}

.adsc-sectors .adsc-bg-wrap,
.adsc-sectors .adsc-overlay {
    position: absolute;
    inset: 0;
}

.adsc-sectors .adsc-bg-wrap {
    z-index: 1;
}

.adsc-sectors .adsc-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 1.2s ease;
    will-change: opacity, transform;
}

.adsc-sectors .adsc-bg-layer.is-active {
    opacity: 1;
    transform: scale(1);
}

.adsc-sectors .adsc-overlay {
    z-index: 2;
    background: rgba(0, 0, 0, 0.40);
}

.adsc-sectors .adsc-inner {
    position: relative;
    z-index: 3;
    max-width: 1380px;
    min-height: 745px;
    margin: 0 auto;
    padding: 88px 40px 70px;
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
}

.adsc-sectors .adsc-left {
    padding-right: 30px;
}

.adsc-sectors .adsc-copy {
    max-width: 640px;
}

.adsc-sectors .adsc-main-heading {
    margin: 0 0 16px;
    color: #fff;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -1.6px;
}

.adsc-sectors .adsc-subheading {
    margin-bottom: 26px;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    font-style: italic;
    opacity: 0.95;
}

.adsc-sectors .adsc-divider {
    width: 100%;
    max-width: 575px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 34px;
}

.adsc-sectors .adsc-text-stage {
    position: relative;
    min-height: 290px;
}

.adsc-sectors .adsc-text-item {
    width: 100%;
}

.adsc-sectors .adsc-sector-title {
    margin: 0 0 24px;
    color: #fff;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.adsc-sectors .adsc-sector-desc {
    margin: 0 0 34px;
    max-width: 600px;
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
}

.adsc-sectors .adsc-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #1d32f3;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    transition: transform 0.22s ease, background 0.22s ease;
}

.adsc-sectors .adsc-btn:hover {
    transform: translateY(-2px);
    background: #2339ff;
}

.adsc-sectors .adsc-btn-arrow {
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    transform: translateY(-1px);
}

.adsc-sectors .adsc-anim-out-up {
    animation: adscOutUp 0.38s ease forwards;
}

.adsc-sectors .adsc-anim-in-up {
    animation: adscInUp 0.45s ease forwards;
}

.adsc-sectors .adsc-anim-out-down {
    animation: adscOutDown 0.38s ease forwards;
}

.adsc-sectors .adsc-anim-in-down {
    animation: adscInDown 0.45s ease forwards;
}

@keyframes adscOutUp {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-26px); }
}

@keyframes adscInUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes adscOutDown {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(26px); }
}

@keyframes adscInDown {
    from { opacity: 0; transform: translateY(-26px); }
    to   { opacity: 1; transform: translateY(0); }
}

.adsc-sectors .adsc-right {
    position: relative;
    min-height: 520px;
}

.adsc-sectors .adsc-cards {
    position: relative;
    width: 100%;
    height: 470px;
}

.adsc-sectors .adsc-card {
    position: absolute;
    top: 0;
    width: 290px;
    border-radius: 16px;
    overflow: hidden;
    transition:
        left 0.55s ease,
        top 0.55s ease,
        width 0.55s ease,
        height 0.55s ease,
        opacity 0.55s ease,
        transform 0.55s ease;
    cursor: pointer;
}

.adsc-sectors .adsc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.34), rgba(0,0,0,0.06));
    pointer-events: none;
}

.adsc-sectors .adsc-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.adsc-sectors .adsc-card-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
}

.adsc-sectors .adsc-card.pos-0 {
    left: 0;
    top: 0;
    width: 290px;
    height: 440px;
    z-index: 4;
    opacity: 1;
}

.adsc-sectors .adsc-card.pos-1 {
    left: 320px;
    top: 36px;
    width: 290px;
    height: 374px;
    z-index: 3;
    opacity: 1;
}

.adsc-sectors .adsc-card.pos-2 {
    left: 640px;
    top: 36px;
    width: 290px;
    height: 374px;
    z-index: 2;
    opacity: 1;
}

.adsc-sectors .adsc-card.pos-3 {
    left: 960px;
    top: 36px;
    width: 290px;
    height: 374px;
    z-index: 1;
    opacity: 1;
}

.adsc-sectors .adsc-nav {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    padding-left: 8px;
}

.adsc-sectors .adsc-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #1d32f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
	padding-bottom:6px;
}

.adsc-sectors .adsc-arrow:hover {
    transform: translateY(-2px);
}

@media (max-width: 1390px) {
    .adsc-sectors .adsc-inner {
        max-width: 1260px;
        grid-template-columns: 54% 46%;
    }

    .adsc-sectors .adsc-card.pos-0 {
        left: 0;
        width: 250px;
        height: 410px;
    }

    .adsc-sectors .adsc-card.pos-1 {
        left: 270px;
        width: 250px;
        height: 350px;
    }

    .adsc-sectors .adsc-card.pos-2 {
        left: 540px;
        width: 250px;
        height: 350px;
    }

    .adsc-sectors .adsc-card.pos-3 {
        left: 810px;
        width: 250px;
        height: 350px;
    }
}

@media (max-width: 980px) {
    .adsc-sectors {
        min-height: auto;
    }

    .adsc-sectors .adsc-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 60px 24px;
    }

    .adsc-sectors .adsc-left {
        padding-right: 0;
    }

    .adsc-sectors .adsc-copy {
        max-width: 100%;
    }

    .adsc-sectors .adsc-main-heading {
        font-size: 48px;
    }

    .adsc-sectors .adsc-text-stage {
        min-height: 250px;
    }

    .adsc-sectors .adsc-right {
        min-height: 420px;
    }

    .adsc-sectors .adsc-cards {
        height: 370px;
    }

    .adsc-sectors .adsc-card.pos-0 {
        left: 0;
        top: 0;
        width: 38%;
        height: 340px;
    }

    .adsc-sectors .adsc-card.pos-1 {
        left: 31%;
        top: 25px;
        width: 34%;
        height: 295px;
    }

    .adsc-sectors .adsc-card.pos-2 {
        left: 60%;
        top: 25px;
        width: 34%;
        height: 295px;
    }

    .adsc-sectors .adsc-card.pos-3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .adsc-sectors .adsc-inner {
        padding: 42px 18px 44px;
        gap: 24px;
    }

    .adsc-sectors .adsc-main-heading {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .adsc-sectors .adsc-subheading {
        font-size: 14px;
    }

    .adsc-sectors .adsc-divider {
        margin-bottom: 24px;
    }

    .adsc-sectors .adsc-sector-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .adsc-sectors .adsc-sector-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .adsc-sectors .adsc-btn {
        padding: 14px 26px;
        font-size: 15px;
    }

    .adsc-sectors .adsc-text-stage {
        min-height: 235px;
    }

    .adsc-sectors .adsc-cards {
        height: 290px;
    }

    .adsc-sectors .adsc-card.pos-0 {
        left: 0;
        width: 57%;
        height: 270px;
    }

    .adsc-sectors .adsc-card.pos-1 {
        left: 41%;
        top: 20px;
        width: 49%;
        height: 235px;
    }

    .adsc-sectors .adsc-card.pos-2,
    .adsc-sectors .adsc-card.pos-3 {
        display: none;
    }

    .adsc-sectors .adsc-card-label {
        font-size: 16px;
        left: 14px;
        bottom: 14px;
    }

    .adsc-sectors .adsc-nav {
        margin-top: 18px;
        padding-left: 0;
    }

    .adsc-sectors .adsc-arrow {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}
