.catalog-hero {
    position: relative;
    background-color: var(--green-100);
    /*padding-block: 96px 48px;*/
    padding-block: 48px;
}

.catalog-hero-v2 {
    z-index: 50;
    min-height: 100vh;
}

@media (min-width: 991.8px) {
    .catalog-hero {
        padding-block: 100px 80px;
    }
}

.catalog-hero .container-new {
    position: relative;
}

.catalog-hero .row-new {
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.catalog-hero .text-wrapper {
    padding-inline: 24px;
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    z-index: 9;
}

@media (min-width: 991.8px) {
    .catalog-hero .text-wrapper {
        width: 648px;
        flex-basis: 648px;
    }
}

.catalog-hero .text-wrapper > * {
    width: 100%;
    flex-basis: 100%;
}

.catalog-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) {
    .catalog-hero .text-wrapper .product-subtitle {
        display: inline-flex;
        width: auto;
        flex-basis: auto;
    }
}

.catalog-hero .text-wrapper .product-short-text p {
    margin-bottom: 12px;
}

.catalog-hero .text-wrapper .product-short-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 7px;
}

.catalog-hero .text-wrapper .product-short-text ul li {
    padding-left: 34px;
    position: relative;
    margin-bottom: 5px;
}

.catalog-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;
}

.catalog-hero .text-wrapper .product-btn-wrapper a {
    display: block;
    text-align: center;
    width: 100%;
}

@media (min-width: 575.8px) {
    .catalog-hero .text-wrapper .product-btn-wrapper a {
        display: inline-block;
        width: auto;
    }
}

.catalog-hero .slider-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) {
    .catalog-hero .slider-wrapper {
        width: calc(100% - 672px);
        flex-basis: calc(100% - 672px);
        padding-inline: 0 24px;
    }
}

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

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

.catalog-hero .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) {
    .catalog-hero .slider-wrapper .certSwiper .swiper-slide {
        height: 500px;
    }
}

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

.catalog-hero .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) {
    .catalog-hero .slider-wrapper .certSwiper .swiper-slide .slide-inner {
        width: 453px;
    }
}

.catalog-hero .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%;
}

.catalog-hero .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;
}

.catalog-hero .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;
}

.catalog-hero .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;
}

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

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

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

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

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

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

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

.catalog-hero .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) {
    .catalog-hero .slider-wrapper .certSwiper .cert-button {
        display: block;
    }
}

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

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

.catalog-hero .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;
}

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

.catalog-hero .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;
}

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

.catalog-hero .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) {
    .catalog-hero .slider-wrapper .certSwiper .cert-pagination {
        display: none;
    }
}

.catalog-hero .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;
}

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

.catalog-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) {
    .catalog-hero .small-dot {
        display: block;
    }
}

.catalog-hero .md-cir-animation {
    animation-name: md-circle-rotate;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.catalog-hero .md-cir-animation-2 {
    animation-name: md-circle-rotate-2;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.catalog-hero .orange-dot {
    background-color: #f37038;
}

.catalog-hero .purple-dot {
    background-color: #273269;
}

.catalog-hero .green-dot {
    background-color: #c9e265;
}

.catalog-hero .blue-dot {
    background-color: #6adcff;
}

.catalog-hero .dot-1 {
    top: -115px;
    left: 36px;
}

.catalog-hero .dot-2 {
    top: -89px;
    left: 293px;
}

.catalog-hero .dot-4 {
    top: 0;
    left: 796px;
}

.catalog-hero .dot-5 {
    top: -115px;
    right: 100px;
}

.catalog-hero .dot-6 {
    top: 0;
    right: 80px;
}

.catalog-hero .dot-7 {
    bottom: 60px;
    left: 15px;
}

.catalog-hero .dot-8 {
    bottom: 90px;
    left: 560px;
}

.catalog-hero .dot-9 {
    bottom: 70px;
    right: 15px;
}

#editor .catalog-hero .text-wrapper {
    width: 100%;
    flex-basis: 100%;
}

@media (min-width: 991.8px) {
    #editor .catalog-hero .text-wrapper {
        width: 100%;
        flex-basis: 100%;
    }
}

#editor .catalog-hero .slider-wrapper {
    width: 100%;
    flex-basis: 100%;
}

#editor .catalog-hero .slider-wrapper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#editor .catalog-hero .slider-wrapper .swiper-wrapper .swiper-slide {
    width: 33.33%;
    flex-basis: 33.33%;
}

#editor .catalog-hero .slider-wrapper .cert-button {
    display: none;
}

@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 #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 #editor .heroPaginationSwiper {
    display: none;
}

#editor #editor .product-hero-v2 .row-new {
    gap: 0;
}

.catalog-hero-v2 #search-dropdown-button {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    background-color: var(--green-30);
    padding: 18px 32px;
    font-size: 22px;
    line-height: 28px;
    border-radius: 100px;
    max-width: 400px;
    width: 100%;
    justify-content: space-between;

}

.catalog-hero-v2 #search-dropdown-button:hover {
    background-color: var(--orange-10);
}

.catalog-hero-v2 #search-dropdown-button .icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-wrap: wrap;
    mask: url("./images/arrow-down.svg");
    -webkit-mask: url('./images/arrow-down.svg') no-repeat center;
    background-color: var(--white);
    background: contain;
}

.catalog-hero-v2 .text-wrapper .product-btn-wrapper {
    position: relative;
}

.catalog-hero-v2 .catalog-exam-select-list {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--grey-30);
    border-radius: 16px;
    height: 330px;
    display: none;
    background-color: #fafafa;
    padding: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transition: 0.4s all;
    z-index: -9;
}

.catalog-hero-v2 .catalog-exam-select-list.active {
    display: block;
    z-index: 99;
    opacity: 1;
}

.catalog-hero-v2 .product-btn-wrapper .catalog-exam-select-list .list-inner {
    display: block;
    z-index: 2;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding-right: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
}

.catalog-hero-v2 .product-btn-wrapper .catalog-exam-select-list .list-inner .item {
    display: flex;
    width: 100%;
    flex-basis: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-block: 10px;
}

.catalog-hero-v2 .text-wrapper .product-btn-wrapper .list-inner a {
    text-align: left;
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    line-height: 24px;
}

.catalog-hero-v2 .text-wrapper .list-inner::-webkit-scrollbar {
    width: 7px;
    /* Adjust width as needed */
    height: 7px;
    border-radius: 30px;
    padding-block: 30px;
}

.catalog-hero-v2 .text-wrapper .list-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
    /* Track color */
    border-radius: 10px;
    /* Rounded track */
    height: 30%;
    top: 5%;
    border: none;
}

.catalog-hero-v2 .text-wrapper .list-inner::-webkit-scrollbar-thumb {
    background: var(--orange-10);
    /* Scrollbar thumb color */
    border-radius: 10px;
    /* Rounded scrollbar */
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    height: 10px;
}