.ced-header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background-color: transparent;
}

.banner-section {
    background-size: cover;
    z-index: 1;
    overflow: hidden;
    background-color: var(--ced-black-color);
}

.banner-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    z-index: -1;
    background-image: url(/wp-content/uploads/2024/05/tiktok-banner-1.png);
    width: 130%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

@media screen and (min-width: 1400px) {
    .banner-section h1 {
        font-size: 65px;
        line-height: 80px;
    }

    .banner-para {
        max-width: 80%;
    }

}

@media screen and (min-width: 1200px) and (max-width: 1399px) {

    .banner-section h1 {
        font-size: 54px;
        line-height: 68px;
    }

}


@media screen and (min-width: 768px) and (max-width: 1199px) {

    .banner-section h1 {
        font-size: 45px;
        line-height: 60px;
    }

}

@media screen and (min-width:992px) {


    .banner-section {
        padding: 210px 0px 100px;
    }

}

@media screen and (min-width:768px) {

    .banner-para {
        line-height: 30px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {

    .banner-section {
        padding: 150px 0px 80px;
    }

}

@media screen and (max-width: 767px) {
    .banner-section {
        padding: 140px 0px 60px;
    }

    .strip-header .banner-section {
        padding-top: 195px;
    }

    .banner-section h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .banner-para {
        font-size: 15px;
        line-height: 28px;
    }
}

/* end banner css */

.principle-card {
    background-color: var(--ced-bg-gray);
    border-radius: 16px;
}

.priciple-title {
    font-size: 18px;
    color: var(--ced-grey-60);
    font-family: var(--ced-montserrat-sb);
}

.priciple-para {
    font-size: 15px;
    line-height: 28px;
    color: var(--ced-grey-60);
}

.principle-card img {
    max-width: 55px;
}

.principle-card::before {
    position: absolute;
    bottom: -15px;
    left: 13px;
    width: 70%;
    height: 100px;
    background-image: conic-gradient(from 7deg at 25.05% 71.78%,
            rgba(106, 215, 150, 0.4) 0deg,
            rgba(65, 59, 188, 0.3) 360deg);
    filter: blur(25px);
    transition: all 0.5s;
    opacity: 0;
    content: "";
    z-index: -1;
    border-radius: 50px;
}

.principle-card:hover::before {
    opacity: 1;
}

@media screen and (min-width: 1200px) {
    .principle-card {
        padding: 30px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .principle-card {
        min-height: 235px;
    }
}

@media screen and (max-width: 1199px) {
    .principle-card {
        padding: 25px 20px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .principle-card {
        min-height: 260px;
    }
}

/* end rinciples section */

/* table section */
.table-section {
    background-color: var(--ced-black-color);
}

.table-section .table {
    table-layout: fixed;
}

.table-section .table .cell-style {
    background-color: transparent;
    border: none;
    line-height: 26px;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.table-section .table .table-rows::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.07) 15.34%,
            rgba(255, 255, 255, 0.1) 51.04%,
            rgba(255, 255, 255, 0.07) 83.14%,
            rgba(255, 255, 255, 0) 100%);
}

.table-section .table-responsive,
.table-section .section-head {
    max-width: 1100px;
}

.table-section .table .table-rows td::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #19191e;
}

.table-section .table .table-rows .cell-style.row-heading::after {
    display: none;
}

.table-section .table .table-rows:first-child td::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(0deg,
            rgba(25, 25, 30, 1) 23%,
            rgba(25, 25, 30, 0.3) 100%,
            rgba(255, 255, 255, 0.7) 100%);
}

.table-section .table .table-rows:last-child td::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(0deg,
            rgba(25, 25, 30, 1) 23%,
            rgba(25, 25, 30, 0.3) 100%,
            rgba(255, 255, 255, 0.7) 100%);
    transform: rotateY(61deg);
}

.table-icon-box {
    background-image: linear-gradient(180deg,
            rgba(255, 255, 255, 0.23) 0%,
            rgba(255, 255, 255, 0.05) 53.05%,
            rgba(255, 255, 255, 0) 100%);
    font-family: var(--ced-montserrat-sb);
}

.table-rows th.cell-style:first-of-type .table-icon-box {
    border-top-left-radius: 8px
}

.table-rows th.cell-style:last-of-type .table-icon-box {
    border-top-right-radius: 8px
}

.table-section .table .cell-style.row-heading {
    color: var(--ced-orange-color);
    font-family: var(--ced-montserrat-sb);
    text-transform: capitalize;
}

.table-section .table thead .cell-style {
    padding: 0px;
}

.table-bottom-para {
    font-size: 15px;
    line-height: 28px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 53.05%, rgba(255, 255, 255, 0.03) 100%);
}


@media screen and (min-width: 1200px) {

    .table-section .table .cell-style .description {
        width: 325px;
    }

    .chart-image {
        max-width: 1100px;
    }
}

@media screen and (min-width: 576px) {
    .table-icon-box {
        padding: 20px 20px;
        font-size: 16px;
    }

    .table-section .table .cell-style {
        padding: 22px 20px;
    }

    .table-section .table .cell-style.row-heading {
        font-size: 15px;
    }

    .table-section .table .cell-style {
        font-size: 14px;
    }

    .table-bottom-para {
        padding: 25px 30px;
    }

}

@media screen and (max-width: 575px) {
    .table-section .table .cell-style {
        padding: 15px;
        font-size: 13px;
    }

    .table-icon-box {
        padding: 20px 15px;
        font-size: 14px;
    }

    .table-bottom-para {
        padding: 25px;
    }
}

/* table ends */

.program-section {
    background-color: var(--ced-light-orange);
}

.program-card {
    border-radius: 20px;
    margin-bottom: 10px;
    background: var(--ced-light-yellow);
    box-shadow: 0 3px 6px 0 rgba(23, 28, 33, 0.08);
}

.program-head {
    font-size: 17px;
    line-height: 28px;
    font-family: var(--ced-montserrat-sb);
    color: var(--ced-grey-60);
    margin-bottom: 12px;
}

.program-subtext {
    font-size: 15px;
    line-height: 28px;
    color: var(--ced-grey-60);
}

.dots {
    padding-left: 30px;
    position: relative;
}

.dots:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    top: 5px;
    left: 0px;
    background-image: url(/wp-content/uploads/2024/01/blue-check.svg);
    background-size: 18px;
    background-repeat: no-repeat;
}

.hover-line {
    font-family: var(--ced-montserrat-sb);
    padding: 0px 3px;
    position: relative;
}

.hover-line::before {
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 90%;
    content: "";
    position: absolute;
    transition: all 0.5s;
    background-color: var(--ced-blue-60);
    opacity: 0.12;
}

.hover-line:hover::before {
    height: 5%;
}

#program-slider .owl-nav {
    width: 100%;
    display: flex;
}

#program-slider .owl-nav button span {
    display: none;
}

#program-slider .owl-nav .owl-next,
#program-slider .owl-nav .owl-prev {
    background-color: var(--ced-white-color);
    border-radius: 50%;
    transition: all 0.4s;
    font-family: var(--ced-montserrat-m);
    position: absolute;
    box-shadow: 0 5px 20px -12px rgba(0, 0, 0, 0.6);
    background-repeat: no-repeat;
}

#program-slider .owl-nav .owl-prev::before,
#program-slider .owl-nav .owl-next::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s;
}

#program-slider .owl-nav .owl-prev::before {
    background-image: url(/wp-content/uploads/2023/08/chevron-left-Black.svg);
}

#program-slider .owl-nav .owl-next::before {
    background-image: url(/wp-content/uploads/2023/08/chevron-right-Black.svg);
}

#program-slider .owl-nav .owl-next:hover::before,
#program-slider .owl-nav .owl-prev:hover::before {
    filter: opacity(0.5);
}

@media screen and (min-width: 1200px) {

    #program-slider .owl-nav .owl-next,
    #program-slider .owl-nav .owl-prev {
        background-size: 26px !important;
        height: 50px;
        width: 50px;
    }

    #program-slider .owl-nav .owl-prev {
        left: -33px;
    }

    #program-slider .owl-nav .owl-next {
        right: -33px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {

    #program-slider .owl-nav .owl-next,
    #program-slider .owl-nav .owl-prev {
        background-size: 24px !important;
        height: 45px;
        width: 45px;
    }
}

@media screen and (min-width: 992px) {
    .program-card {
        min-height: 400px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {

    #program-slider .owl-nav .owl-prev {
        left: -25px;
    }

    #program-slider .owl-nav .owl-next {
        right: -25px;
    }

}

@media screen and (max-width: 991px) {

    #program-slider .owl-nav .owl-next,
    #program-slider .owl-nav .owl-prev {
        background-size: 20px;
        height: 40px;
        width: 40px;
    }

}

@media screen and (min-width: 768px) {

    #program-slider .owl-nav .owl-next,
    #program-slider .owl-nav .owl-prev {
        top: 150px;
    }

    #program-slider .owl-nav {
        justify-content: space-between;
    }

    .program-card {
        padding: 30px 25px;
    }
}

@media screen and (max-width: 767px) {
    #program-slider .owl-nav {
        gap: 10px;
        justify-content: end;
    }

    #program-slider .owl-nav .owl-next,
    #program-slider .owl-nav .owl-prev {
        top: -20px;
    }

    #program-slider .owl-nav .owl-prev {
        right: 63px;
    }

    #program-slider .owl-nav .owl-next {
        right: 12px;
    }

    #program-slider .owl-nav .owl-prev::before,
    #program-slider .owl-nav .owl-next::before {
        background-size: 20px;
    }

    .program-card {
        padding: 40px 25px 30px;
    }
}

/* end programs section*/

.commitment-card {
    background-image: url(/wp-content/uploads/2024/02/banner122.png);
    background-size: cover;
    max-width: 1100px;
}

@media screen and (min-width: 1200px) {
    .commitment-para {
        font-size: 18px;
    }
}

@media screen and (min-width: 992px) {
    .commitment-card {
        padding: 50px;
        border-radius: 30px;
    }
}

@media screen and (min-width: 768px) {

    .commitment-para {
        line-height: 32px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .commitment-card {
        padding: 30px;
        border-radius: 24px;
    }
}

@media screen and (max-width: 767px) {
    .commitment-card {
        padding: 25px;
        border-radius: 20px;
    }

    .commitment-para {
        font-size: 15px;
        line-height: 30px;
    }
}

/* end commitment */
.gdpr-rights-section {
    background-color: var(--ced-black-color);
    z-index: 1;
    overflow: hidden;
}

.gdpr-rights-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url(https://d3vlhkqyz4y38a.cloudfront.net/skin/frontend/cedcomnew/default/images/channel-advisor/looking-for-something-bg.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: .8;
    z-index: -1;
}

.gdpr-right-card {
    max-width: 1100px;
}

.gdpr-rights-list {
    background-image: url(/wp-content/uploads/2024/01/check-circle.svg);
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
}

.highlighted-text {
    background-image: linear-gradient(126deg, rgba(255, 255, 255, .15) 2.09%, rgba(255, 255, 255, .05) 97.24%);
    border-radius: 12px;
    padding: 15px 20px;
}

.highlighted-text .hover-line::before {
    background-color: var(--ced-white-color);
}


@media screen and (min-width: 1200px) {

    .gdpr-rights-section::before {
        right: -200px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {

    .gdpr-rights-section::before {
        right: -330px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {

    .gdpr-rights-section::before {
        right: -370px;
    }
}

@media screen and (min-width: 768px) {
    .gdpr-rights-list {
        background-position: left 5px;
        padding-left: 36px;
        line-height: 30px;
        background-size: 20px;
    }

    .highlighted-text {
        line-height: 32px;
    }
}

@media screen and (max-width: 767px) {
    .gdpr-rights-list {
        background-position: left 5px;
        padding-left: 32px;
        line-height: 28px;
        background-size: 18px;
        font-size: 15px;
    }

    .highlighted-text {
        font-size: 15px;
        line-height: 28px;
    }
}

@media screen and (max-width: 575px) {

    .gdpr-rights-section::before {
        right: -300px;
    }

}

/* end gdpr-rights */