.partnership-hero {
    position: relative;
    background-color: var(--green-100);
    padding-block: 96px 48px;
}
@media (min-width: 991.8px) {
    .partnership-hero {
        padding-block: 100px;
    }
}
.partnership-hero .container-new {
    position: relative;
}
.partnership-hero .row-new {
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
@media (min-width: 1280px) {
    .partnership-hero .row-new {
        gap: 80px;
    }
}
.partnership-hero .text-wrapper {
    padding-inline: 24px;
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    z-index: 9;
    text-align: center;
}
@media (min-width: 575.8px) {
    .partnership-hero .text-wrapper {
        text-align: left;
    }
}
@media (min-width: 991.8px) {
    .partnership-hero .text-wrapper {
        width: 620px;
        flex-basis: 620px;
    }
}
.partnership-hero .text-wrapper > * {
    width: 100%;
    flex-basis: 100%;
}
.partnership-hero .text-wrapper .product-subtitle {
    background-color: var(--green-10);
    border-radius: 40px;
    padding: 6px 12px;
    margin-block: 0;
    display: block;
    width: 100%;
    flex-basis: 100%;
    text-align: center;
}
@media (min-width: 575.8px) {
    .partnership-hero .text-wrapper .product-subtitle {
        display: inline-flex;
        width: auto;
        flex-basis: auto;
    }
}
.partnership-hero .text-wrapper .product-short-text p {
    margin-bottom: 12px;
}
.partnership-hero .text-wrapper .product-short-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 330px;
    max-width: 100%;
    margin-inline: auto;
}
@media (min-width: 575.8px) {
    .partnership-hero .text-wrapper .product-short-text ul {
        width: 100%;
    }
}
.partnership-hero .text-wrapper .product-short-text ul li {
    padding-left: 34px;
    position: relative;
    margin-bottom: 5px;
    text-align: left;
}
.partnership-hero .text-wrapper .product-short-text ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    mask: url('./images/check.svg') no-repeat center;
    -webkit-mask: url('./images/check.svg') no-repeat center;
    background-color: #00b290;
    background: contain;
}
.partnership-hero .text-wrapper .product-btn-wrapper a {
    display: block;
    text-align: center;
    width: 100%;
}
@media (min-width: 575.8px) {
    .partnership-hero .text-wrapper .product-btn-wrapper a {
        display: inline-block;
        width: auto;
    }
}
.partnership-hero .video-wrapper {
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-inline: 24px;
}
@media (min-width: 991.8px) {
    .partnership-hero .video-wrapper {
        width: calc(100% - 700px);
        flex-basis: calc(100% - 700px);
    }
}
.partnership-hero .video-wrapper .video-inner {
    position: relative;
    width: 100%;
}
.partnership-hero .video-wrapper .video-inner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
}
.partnership-hero .video-wrapper .video-inner .play-video-button {
    border: 2px solid #fff;
    background-color: #fff;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f37038;
    font-size: 20px;
    line-height: 50px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    border-radius: 50%;
    transition: 0.5s;
    cursor: pointer;
}
.partnership-hero .video-wrapper .video-inner .play-video-button i {
    font-size: 32px;
    margin-left: 8px;
}
.partnership-hero .video-wrapper .video-inner .play-video-button:hover {
    border-color: var(--orange-10);
    background-color: var(--orange-10);
    color: var(--white);
}
.partnership-hero .video-wrapper .video-inner .play-video-button.hidden {
    display: none;
}
.partnership-hero .video-wrapper .image-holder {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.partnership-hero .video-wrapper .image-holder .founder-info {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.partnership-hero .video-wrapper .image-holder .founder-info .teacher-info {
    max-width: 310px;
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    border-radius: 16px;
    display: inline-flex;
    margin-inline: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: -80px;
}
.partnership-hero .video-wrapper .image-holder .founder-info .teacher-info > * {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 0;
    text-align: center;
}
.partnership-hero .video-wrapper .image-holder .founder-info .teacher-info h4 {
    font-size: 20px;
}
.partnership-hero .video-wrapper .image-holder .founder-info .teacher-info .teacher-experience {
    font-size: 16px;
    line-height: 20px;
}
.partnership-hero .video-wrapper .image-holder .founder-info .teacher-info .teacher-position {
    font-size: 16px;
    line-height: 20px;
}
.partnership-hero .small-dot {
    position: absolute;
    z-index: 2;
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: red;
    /* Add color to make it visible */
}
@media (min-width: 991.8px) {
    .partnership-hero .small-dot {
        display: block;
    }
}
.partnership-hero .md-cir-animation {
    animation-name: md-circle-rotate;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.partnership-hero .md-cir-animation-2 {
    animation-name: md-circle-rotate-2;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.partnership-hero .orange-dot {
    background-color: #f37038;
}
.partnership-hero .purple-dot {
    background-color: #273269;
}
.partnership-hero .green-dot {
    background-color: #c9e265;
}
.partnership-hero .blue-dot {
    background-color: #6adcff;
}
.partnership-hero .dot-1 {
    top: -115px;
    left: 36px;
}
.partnership-hero .dot-2 {
    top: -89px;
    left: 293px;
}
.partnership-hero .dot-4 {
    top: 0;
    left: 796px;
}
.partnership-hero .dot-5 {
    top: -115px;
    right: 100px;
}
.partnership-hero .dot-6 {
    top: 0;
    right: 80px;
}
.partnership-hero .dot-7 {
    bottom: 60px;
    left: 15px;
}
.partnership-hero .dot-8 {
    bottom: 90px;
    left: 560px;
}
.partnership-hero .dot-9 {
    bottom: 70px;
    right: 15px;
}
.partnership-hero:before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 20%;
    mask: url('./images/orange-arrow.svg') no-repeat center;
    -webkit-mask: url('./images/orange-arrow.svg') no-repeat center;
    background-color: #f27038;
    mask-size: contain;
    z-index: 9;
    display: none;
}
@media (min-width: 767.8px) {
    .partnership-hero:before {
        bottom: -40px;
        left: 50px;
        width: 120px;
        height: 130px;
        display: block;
    }
}
@media (min-width: 991.8px) {
    .partnership-hero:before {
        bottom: -80px;
        left: 20%;
        width: 154px;
        height: 163px;
    }
}
.partnership-hero .trust-holder {
    margin-top: 40px;
}
@media (min-width: 767.8px) {
    .partnership-hero .trust-holder {
        margin-top: 80px;
    }
}
@keyframes md-circle-rotate {
    0% {
        transform: translate(0px, 25px);
    }
    12.5% {
        transform: translate(-20px, 15px);
    }
    25% {
        transform: translate(-25px, 0px);
    }
    37.5% {
        transform: translate(-20px, -15px);
    }
    50% {
        transform: translate(0px, -25px);
    }
    62.5% {
        transform: translate(20px, -15px);
    }
    75% {
        transform: translate(25px, 0px);
    }
    87.5% {
        transform: translate(20px, 15px);
    }
    100% {
        transform: translate(0px, 25px);
    }
}
@keyframes md-circle-rotate-2 {
    0% {
        transform: translate(0px, -25px);
        /* Opposite of 0% in original */
    }
    12.5% {
        transform: translate(20px, -15px);
        /* Opposite of -20px, 15px */
    }
    25% {
        transform: translate(25px, 0px);
        /* Opposite of -25px, 0px */
    }
    37.5% {
        transform: translate(20px, 15px);
        /* Opposite of -20px, -15px */
    }
    50% {
        transform: translate(0px, 25px);
        /* Opposite of 0px, -25px */
    }
    62.5% {
        transform: translate(-20px, 15px);
        /* Opposite of 20px, -15px */
    }
    75% {
        transform: translate(-25px, 0px);
        /* Opposite of 25px, 0px */
    }
    87.5% {
        transform: translate(-20px, -15px);
        /* Opposite of 20px, 15px */
    }
    100% {
        transform: translate(0px, -25px);
        /* Opposite of 0px, 25px */
    }
}
#editor .heroSwiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
#editor .heroPaginationSwiper {
    display: none;
}
#editor .product-hero-v2 .row-new {
    gap: 0;
}
.partnership-hero .trust-holder {
    position: relative;
}

.partnership-hero .iframe-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0);
    padding: 0;
    border-radius: 8px;
}

.partnership-hero .loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--orange-10);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.partnership-hero .trustpilot-widget {
    display: none; /* Hide the widget initially */
}

.hero-section-v5 .slider-wrapper {
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-inline: 24px;
}


.hero-section-v5 .slider-wrapper .swiper-slide {
    position: relative;
}

.hero-section-v5 .slider-wrapper .certSwiper {
    padding-block: 20px;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    height: 400px;
}

@media (min-width: 991.8px) {
    .hero-section-v5 .slider-wrapper .certSwiper .swiper-slide {
        height: 500px;
    }
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide .certificate-slide {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide .slide-inner {
    width: 330px;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 20px;
    position: relative;
}

@media (min-width: 991.8px) {
    .hero-section-v5 .slider-wrapper .certSwiper .swiper-slide .slide-inner {
        width: 453px;
    }
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide .slide-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% - 50px);
    background-color: rgba(0, 0, 0, .2);
    border-radius: 24px;
    width: 100%;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide .slide-image {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    flex-basis: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
    background-color: rgba(0, 0, 0, .2);
    align-items: flex-end;
    padding: 10px;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide .slide-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide .slide-image .slide-text {
    margin-top: auto;
    position: relative;
    z-index: 2;
    border-radius: 16px;
    background-color: var(--white);
    width: 100%;
    padding: 20px;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide .slide-image .slide-text .cert-teacher-name {
    margin-bottom: 5px;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide .slide-image .slide-text .cert-teacher-text {
    font-style: italic;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide.swiper-slide-prev {
    opacity: 0 !important;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide.swiper-slide-prev img {
    display: none;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide.swiper-slide-next {
    opacity: 0 !important;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide.swiper-slide-next img {
    display: none;
}

.hero-section-v5 .slider-wrapper .certSwiper .swiper-slide.swiper-slide-visible img {
    display: block;
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-button {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 99;
    background-color: var(--orange-10);
    cursor: pointer;
    transition: 0.4s all;
}

@media (min-width: 991.8px) {
    .hero-section-v5 .slider-wrapper .certSwiper .cert-button {
        display: block;
    }
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-button .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-color: var(--white);
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-button.cert-button-next {
    right: 0;
    left: auto;
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-button.cert-button-next .icon {
    mask: url('./images/arrow-right.svg') no-repeat center;
    -webkit-mask: url('./images/arrow-right.svg') no-repeat center;
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-button.cert-button-prev {
    left: 0;
    right: auto;
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-button.cert-button-prev .icon {
    mask: url('./images/arrow-left.svg') no-repeat center;
    -webkit-mask: url('./images/arrow-left.svg') no-repeat center;
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-button:hover {
    background-color: var(--green-10);
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-block: 10px;
}

@media (min-width: 991.8px) {
    .hero-section-v5 .slider-wrapper .certSwiper .cert-pagination {
        display: none;
    }
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--orange-10);
    opacity: 0.2;
    transition: 0.4s all;
}

.hero-section-v5 .slider-wrapper .certSwiper .cert-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}