/* File: Main Style Css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================================
============================== GLOBAL STYLES ===============================
========================================================================= */

:root {
    /* Define CSS Variables for easier theming */
    --font-inter: "Inter", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --font-roboto: "Roboto", sans-serif;
    --primary-color: #FF0000;
    --secondary-color: #010101;
    --background-color: #FFFFFF;
    --background-color-darker: #F3F3F3;
    --background-color-black: #000000;
    --text-color: #212529;
    --text-color-light: #FFFFFF;
    --text-color-grey: #6A6D77;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-sm: 0.875rem;
    --spacing-unit: 1rem;
    --title-line-height: 1.2;
    --text-line-height: 1.6;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
}

.container-fluid {
    --bs-gutter-x: 5rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: "Poppins", serif;
    font-size: var(--font-size-lg);
    line-height: var(--text-line-heigh);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.width-80 {
    width: 80%;
}

.section-margin-50 {
    margin: 3.125rem 0;
}

.section-margin-75 {
    margin: 4.688rem 0;
}

.section-margin-100 {
    margin: 6.25rem 0;
}

.section-margin-150 {
    margin: 9.375rem 0;
}

.section-padding-50 {
    padding: 3.125rem 0;
}

.section-padding-75 {
    padding: 4.688rem 0;
}

.section-padding-100 {
    padding: 6.25rem 0;
}

.section-padding-150 {
    padding: 9.375rem 0;
}

.section-padding-200 {
    padding: 12.5rem 0;
}

p {
    margin-bottom: unset;
}

video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

.primary-text-color {
    color: var(--primary-color) !important;
}

.white-text-color {
    color: var(--text-color-light) !important;
}

.row-gap-25 {
    row-gap: 1.563rem;
}

.white-bg {
    background-color: var(--background-color);
}

.light-gray-bg {
    background-color: var(--background-color-darker);
}

.black-bg {
    background-color: var(--background-color-black);
}

.black-2-bg {
    background-color: #13171B;
}

.section-sub-title {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
}

.section-desc-small {
    font-size: 1.125rem;
    font-weight: 400;
}

.section-intro {
    max-width: 1099px;
    margin: 0 auto 6.25rem;
}

.section-intro.centered {
    text-align: center;
}

.section-intro.left-aligned {
    margin: 0 0 6.25rem;
}

.section-intro .section-title {
    margin-bottom: 2.5rem;
}

.main-content {
    background-color: var(--secondary-color);
    height: min-content;
    overflow: visible;
    padding: 0;
    position: relative;
    min-height: 100vh;
    width: auto;
}

.gradient-wrapper {
    flex: none;
    height: 100vh;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 0;
}

#gradient-canvas {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.z-index-1 {
    z-index: 1;
}

.cta-title {
    font-size: 4.25rem;
}

.cta-desc {
    font-size: 1.625rem;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-100 {
    margin-bottom: 100px;
}

.fs-18 {
    font-size: 1.125rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.fs-32 {
    font-size: 2rem;
}

.fs-66 {
    font-size: 4.125rem;
}


/* -------------------- Button Start -------------------- */

.underline-btn {
    font-size: 1.25rem;
    font-weight: 400;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(1);
    height: 1.2px;
    bottom: 0;
    left: 0;
    background-color: var(--text-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation.white:after {
    background-color: var(--text-color-light);
}

.hover-underline-animation:hover:after {
    transform: scaleX(0);
    transform-origin: bottom left;
}

.primary-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--primary-color);
    overflow: hidden;
    cursor: pointer;
    border: none;
    width: fit-content;
    min-width: 225px;
}

.primary-btn:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--secondary-color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.primary-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.primary-btn span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 15px 30px;
    color: var(--text-color-light);
    font-size: 1.125em;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.primary-btn:hover span {
    color: var(--text-color-light);
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.primary-btn.white {
    background: var(--background-color);
}

.primary-btn.white:hover {
    background: var(--primary-color);
}

.primary-btn.white span {
    color: var(--primary-color);
}

.primary-btn.white:hover span {
    color: var(--text-color-light);
}

.primary-btn.white.w-border {
    border: 1px solid var(--primary-color);
    background: var(--background-color);
}

.primary-btn.c-btn {
    border-radius: 10px;
    background: #000;
}

.primary-btn.c-btn span {
    padding: 12px 30px;
}

.primary-btn.c-btn:after {
    background: var(--primary-color);
}

.primary-btn.c-btn.w-border {
    background: #fff;
    border: 1px solid #000000;
}

.primary-btn.c-btn.w-border span {
    color: #000;
}

.primary-btn.c-btn.w-border:hover {
    border-color: #fff;
}

.primary-btn.c-btn.w-border:hover span {
    color: #fff;
}


/* -------------------- Button End -------------------- */


/* =========================================================================
================================= Main CSS =================================
========================================================================= */


/* -------------------- header Start  -------------------- */

.align-item-center {
    align-items: center;
}

header {
    box-shadow: 0px 4px 1px 0px #0000000A;
}

header .top-bar {
    background: #FF0000;
    padding: 10px 0;
}

header .top-bar.blue {
    background: #0F6FFF;
}

header .header-menu {
    background-color: var(--background-color);
    padding: 15px 0px;
}

header .top-text-wrap {
    color: var(--text-color-light);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: var(--text-line-height);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

header .top-text-wrap .top-text {
    color: #F1EFED;
    font-size: 1.063rem;
    font-style: normal;
    font-weight: 400;
}

header .top-text-icon {
    border-radius: 79px;
    background: #fff;
    height: 35px;
    width: 35px;
    align-content: center;
}

header .top-text-icon.blue {
    background: #0051FF;
}

header .logo img {
    max-width: 175px;
}

header .header-menu-links-wrap {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 10px 10px;
    justify-content: end;
    margin-left: auto;
    width: max-content;
    border-radius: 48px;
    border: 1px solid #D3D1D1;
}

header .header-menu-links .links {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

header .header-menu-links .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 20px;
}

header .header-menu-links .links li a,
header .header-menu-links ul.link-sub-menu li a {
    text-decoration: none;
    text-transform: capitalize;
    color: #1F232E;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    padding-right: 8px;
}

header .header-menu-links .links li:hover .link-arrow {
    transform: rotate(180deg);
}

header .header-menu-links .links li .arrow {
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
}

header .header-menu-links ul.link-sub-menu {
    display: none;
    z-index: 2;
    padding: 0;
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    min-width: 200px;
}

header .header-menu-links ul.link-sub-menu li {
    padding: 10px 20px;
    border-bottom: 1px solid #D3D1D1;
}

header .header-menu-links ul.link-sub-menu li:last-child {
    border-bottom: none;
}

header .header-menu-links .links li:hover .link-sub-menu {
    display: block;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

header .navbar_menu-account {
    grid-column-gap: 1.6rem;
    grid-row-gap: 1.6rem;
    justify-content: flex-end;
    align-items: stretch;
    margin-left: auto;
    display: flex
}

header .navbar_menu-account .btn-text {
    text-decoration: none;
    text-transform: capitalize;
    color: #1F232E;
    font-family: Inter;
    font-size: 0.93rem;
    font-style: normal;
    font-weight: 500;
}

header .navbar_menu-account .navbar_link {
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
    align-items: center;
    margin-bottom: 0;
    padding: 2.4rem .8rem;
    display: flex;
}

header .navbar_menu-account .navbar_link.is-icon {
    grid-column-gap: 1.6rem;
    grid-row-gap: 1.6rem;
    align-self: center;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
}

header .navbar_menu-account .navbar_link-icon {
    background-color: #FF0000;
    color: #fff;
    border-radius: 50%;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

header .navbar_menu-account .navbar_link-icon.blue {
    background-color: #0f6fff;
}

header .navbar_menu-account .icon-move {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: transform .5s cubic-bezier(.215, .61, .355, 1);
    display: flex;
}

header .navbar_menu-account .icon-move.absolute {
    position: absolute;
    top: 100%;
    right: 100%;
}

header .navbar_menu-account .icon-embed-xsmall {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    transition: transform .35s;
    display: flex;
}

header .navbar_menu-account .w-embed:before,
header .navbar_menu-account .w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

header .navbar_menu-account .w-embed:after {
    clear: both;
}

header .navbar_menu-account .navbar_link:hover {
    color: #0f6fff;
}

header .navbar_menu-account a:hover .icon-move {
    transform: translateX(100%) translateY(-100%);
}


/* -------------------- header End -------------------- */


/* -------------------- Hero Start  -------------------- */

.hero-section {
    border-bottom: 1px solid #FFFFFF80;
}

.hero-section .hero-wrap {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    justify-content: space-between;
}

.hero-section .hero-wrap .hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 730px;
}

.hero-section .section-title {
    font-size: 3.625rem;
    font-style: normal;
    font-weight: 400;
}

.hero-section .hero-left p {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
}

.hero-section .hero-left .blue-btn {
    margin-top: 20px;
    padding: 15px 60px;
    border-radius: 80px;
    background: #0F6FFF;
}

.hero-section .hero-left .blue-btn span {
    color: #FFF;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
}

.hero-section .hero-left .blue-btn:hover {
    background: #FFF;
    border: 1px solid #0F6FFF;
}

.hero-section .hero-left .blue-btn:hover span {
    color: #0F6FFF;
}

.hero-section .hero-left .days-lists {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero-section .hero-left .days-lists .days-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-section .hero-left .days-lists .days-list span {
    font-size: 1.408rem;
    font-style: normal;
    font-weight: 500;
}

.hero-section .hero-left .days-lists .days-list:last-child {
    position: relative;
    padding-left: 30px;
}

.hero-section .hero-left .days-lists .days-list:last-child::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-left: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), #FFF, rgba(255, 255, 255, 0.15)) 1;
}


/* -------------------- Hero End  -------------------- */


/* -------------------- feature Start  -------------------- */

.feature-section {
    padding: 47px 0px;
}

.feature-section .feature-items-wrap {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: center;
}

.feature-section .feature-items-wrap .feature-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.feature-section .feature-items-wrap .feature-item p {
    font-size: 0.938rem;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}

.feature-section .feature-items-wrap .feature-item.middle {
    position: relative;
    padding: 0px 100px;
}

.feature-section .feature-items-wrap .feature-item.middle::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-left: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), #FFF, rgba(255, 255, 255, 0.15)) 1;
}

.feature-section .feature-items-wrap .feature-item.middle::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    border-left: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), #FFF, rgba(255, 255, 255, 0.15)) 1;
}


/* -------------------- feature End  -------------------- */


/* -------------------- intro-section Start  -------------------- */

.intro-section .intro-content-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
}

.intro-section .intro-content-wrap h2 {
    flex-shrink: 0;
}

.intro-section .intro-content-wrap .intro-content p:first-child {
    padding-bottom: 30px;
}


/* -------------------- intro-section End  -------------------- */


/* -------------------- challenges Start  -------------------- */

.challenges .heading-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.challenges .heading-content {
    flex: 1;
}

.challenges .heading-top h2 {
    margin: 0;
}

.secondary-text-color {
    color: #0F6FFF;
}

.challenges .heading-content.right {
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.56px;
}

.challenges .challenges-lists-wrap {
    padding-top: 119px;
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.challenges .challenges-list {
    flex: 1;
    border-radius: 8px;
    border: 1px solid #323745;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.challenges .challenges-list .challenges-img-wrap {
    display: flex;
    justify-content: end;
}

.challenges .challenges-list ul {
    list-style: disc;
    margin: 0;
}

.challenges .challenges-list ul li {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    padding-top: 20px;
}


/* -------------------- challenges End -------------------- */


/* -------------------- resources Start  -------------------- */

.resources .section-title {
    margin: 0;
    padding-bottom: 20px;
}

.resources div.sub-content {
    padding-bottom: 54px;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
}

.resources .resources-items-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.resources .resources-item {
    display: flex;
    width: 300px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 10px;
    border-bottom: 1px solid #B3C7FF;
    background: #FFF;
    padding: 25px 40px;
}

.resources .resources-item p {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
}


/* -------------------- resources End  -------------------- */


/* -------------------- Course Start  -------------------- */

.dark-blue-bg {
    background: #13171B;
}

.course .course-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

.course .course-top-wrap .section-title {
    font-size: 2.749rem;
    font-style: normal;
    margin: 0;
}

.course .course-top-wrap p {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    padding: 30px 0px 20px 0px;
}

.course .course-middle-wrap {
    border-radius: 10px;
    background: #1F232E;
    width: 100%;
    padding: 60px;
}

.course .course-middle-wrap .module-label {
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 700;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
}

.course .course-middle-wrap .module-label:first-child {
    padding-top: 0px;
}

.course .course-middle-wrap .course-accordion {
    --bs-accordion-bg: #1F232E;
    --bs-accordion-border-color: none;
}

.course .course-middle-wrap .course-accordion .accordion-button.collapsed {
    color: #fff;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 30px;
    padding-top: 0px;
    padding-left: 55px;
    padding-right: 0px;
}

.course .course-middle-wrap .course-accordion .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.course-accordion .accordion-button:not(.collapsed) {
    background: none;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 30px;
    padding-left: 47px;
    color: #ffffff;
    padding-top: 0px;
}

.course-accordion .accordion-button:not(.collapsed)::after {
    background: none;
}


/* .accordion-button:not(.collapsed)::after{
    background-image:
} */

.course .course-middle-wrap .course-accordion .accordion-collapse.show {
    border-bottom: 1px solid #455473;
    border-radius: 0;
    margin-bottom: 30px;
}

.course-accordion .accordion-body {
    padding: 0;
}

.course-accordion .accordion-body .module-list {
    padding-left: 80px;
    list-style: disc;
    margin: 0;
}

.course .course-middle-wrap .course-accordion .accordion-body .module-list li::marker {
    color: #ffffff;
}

.course .course-middle-wrap ul.vertical-border.module-list {
    list-style: disc;
    margin: 0;
    padding-left: 40px;
    position: relative;
}


/* Vertical line */

.course .course-middle-wrap ul.module-list.vertical-border::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: #0035C7;
}

.course .course-middle-wrap ul.module-list li {
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 30px;
    padding-left: 15px;
    position: relative;
}

.course .course-middle-wrap ul.module-list li::marker {
    color: #0035C7;
}

.course .course-middle-wrap .accordion-button {
    position: relative;
    padding-left: 55px;
    /* space for the icon */
}


/* Plus icon for closed state (collapsed) */

.course .course-middle-wrap .accordion-button.collapsed::before {
    content: "\f4fa";
    /* + icon */
    color: #0035C7;
    font-size: 1rem;
    position: absolute;
    left: 15px;
    top: 20%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-family: bootstrap-icons!important;
}


/* Minus icon for open state */

.course .course-middle-wrap .accordion-button::before {
    content: "\f2e6";
    /* - icon */
    color: #0035C7;
    font-size: 1rem;
    position: absolute;
    left: 15px;
    top: 20%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-family: bootstrap-icons!important;
}

.course .course-bottom-wrap {
    display: flex;
    padding: 60px;
    align-items: center;
    gap: 142px;
    border-radius: 8px;
    border: 1px solid #C3C3C3;
    width: 100%;
}

.course .course-bottom-wrap .price-left {
    border-radius: 4px;
    background: #0035C7;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.10);
    padding: 63px 81px;
}

.course .course-bottom-wrap .price-left p {
    text-align: center;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
}

.course .course-bottom-wrap .price-left .price {
    text-align: center;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    padding-top: 15px;
}

.course .course-bottom-wrap .price-left .note {
    text-align: center;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    padding-top: 29px;
}

.course .course-bottom-wrap .price-right {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.course .course-bottom-wrap .price-right h4 {
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 600;
}

.course .course-bottom-wrap .price-right p {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
}

.course .course-bottom-wrap .price-right .calculation {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
}


/* -------------------- Course End  -------------------- */


/* -------------------- eligibility Start  -------------------- */

.eligibility .section-title {
    margin-bottom: 80px;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.56px;
}

.eligibility .eligibility-list {
    display: flex;
    gap: 40px;
}

.eligibility .eligibility-item-wrap {
    border-radius: 8px;
    border: 1px solid #00000057;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.eligibility .eligibility-item {
    padding: 40px 40px 0px 40px;
}

.eligibility .eligibility-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.eligibility .eligibility-head h5 {
    margin: 0;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.8px;
    text-transform: capitalize;
}

.eligibility .eligibility-body {
    padding: 30px 0px;
}

.eligibility .eligibility-body ul {
    list-style: disc;
    margin: 0;
}

.eligibility .eligibility-body ul li {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 16px;
}

.eligibility .eligibility-footer {
    background: #0262F2;
    padding: 20px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.eligibility .eligibility-footer p {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
}


/* -------------------- eligibility End  -------------------- */


/* -------------------- why-choose Start  -------------------- */

.why-choose .section-title {
    text-align: center;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.56px;
    max-width: 829px;
    margin: 0px auto 80px;
}

.why-choose .why-choose-list {
    display: flex;
    justify-content: center;
}

.why-choose .why-choose-list .item {
    flex: 1;
    border: 1px solid #000;
    padding: 40px;
    width: 400px;
    height: 400px;
    align-content: center;
    border-radius: 100%;
    text-align: center;
    max-width: 402px;
    background-color: #fff;
    margin-right: -20px;
}

.why-choose .why-choose-list .item h5 {
    padding-bottom: 30px;
    text-align: center;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.8px;
    text-transform: capitalize;
    margin: 0;
}

.why-choose .why-choose-list .item p {
    text-align: center;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
}

.why-choose .why-choose-list .item.c1 {
    z-index: 4;
}

.why-choose .why-choose-list .item.c2 {
    z-index: 3;
}

.why-choose .why-choose-list .item.c3 {
    z-index: 2;
}

.why-choose .why-choose-list .item.c4 {
    z-index: 1;
}


/* -------------------- why-choose End  -------------------- */


/* -------------------- instructor Start  -------------------- */

.gray-bg {
    background: #EDF4FF;
}

.instructor .top-left-img {
    position: absolute;
    left: 0px;
    top: 60px;
    max-width: 340px;
}

.instructor .bottom-right-img {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.instructor .section-title {
    font-size: 2.625rem;
    font-style: normal;
}

.instructor .instructor-wrap {
    display: flex;
    flex-direction: row;
    column-gap: 100px;
    align-items: center;
}

.instructor .instructor-left {
    padding: 16px;
    border-radius: 8px;
    background: #FFF;
    width: 100%;
}

.instructor .instructor-left img {
    border-radius: 8px;
}

.instructor .instructor-left .instructor-name {
    color: #0E264A;
    font-size: 2.125rem;
    font-style: normal;
    font-weight: 400;
    margin: 10px 0px;
}

.instructor .instructor-left p {
    color: #0E264A;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.16px;
    margin: 10px 0px;
}

.instructor .instructor-left .instructor-social-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

.instructor .instructor-left .instructor-social-links a {
    color: #000;
    text-align: center;
    font-size: 1.092rem;
    font-style: normal;
    font-weight: 400;
}

.instructor .instructor-left .instructor-social-links a i {
    color: #0035C7;
}

.instructor .instructor-right {
    color: #000;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    max-width: 891px;
    ;
}


/* -------------------- instructor End  -------------------- */


/* -------------------- malware Start  -------------------- */

.malware-form {
    padding: 18px;
    border: 1px solid #A8A8A8;
    border-radius: 5px;
}

.malware-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 84.81px;
}

.malware .section-title {
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.56px;
}

.malware .mb-2 {
    margin-bottom: 20px !important;
}

.malware .section-desc-small {
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.56px;
}

.malware-form input {
    color: #969696;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    border-radius: 4.584px;
    border: 1.146px solid #A8A8A8;
    padding: 17.191px 19.483px;
    margin-bottom: 27px;
}

.malware-form input:focus-visible {
    outline: none;
}

.malware-form .agree-text {
    color: #51565E;
    font-family: "Open Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    padding-top: 20px;
}

.malware-form .agree-text a {
    color: #1C5584;
    text-decoration-line: underline;
}

.malware-form button {
    border-radius: 4.584px;
    border: 1.146px solid #1C5584;
    background: #0262F2;
    padding: 15.759px 35.529px 16.332px 35.529px;
    width: 100%;
    color: #FFF;
    text-align: center;
    font-size: 1.146rem;
    font-style: normal;
    font-weight: 400;
    margin-top: 100px;
}

.section-title2 {
    font-size: 2.006rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.385px;
}

.sub-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.56px;
}


/* -------------------- malware End -------------------- */


/* -------------------- certification Start  -------------------- */

.black-text-color {
    color: #000;
}

.certification {
    padding-top: 0px;
    padding-bottom: 30px;
}

.certification-content-wrap {
    display: flex;
    padding: 65px 65px 81px 65px;
    align-items: flex-start;
    gap: 87px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #000000;
    background: #FFF;
}

.certification .section-title {
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.56px;
}

.certification .section-desc-small {
    font-size: 1.375rem;
    font-style: normal;
}


/* -------------------- certification End -------------------- */


/* -------------------- CTA Start  -------------------- */

.secondary-btn.white:hover {
    background-color: #0262F2;
}

.secondary-btn.white span {
    color: #0035C7;
}


/* -------------------- CTA End -------------------- */


/* -------------------- Footer Start  -------------------- */

.footer-top-bar {
    color: #FFFFFF;
    background-color: #FF0000;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-top-bar.blue {
    background-color: #0262F2;
}

.footer-top-bar p {
    border-right: 5px solid #FFF;
    padding: 16px 41px;
    color: #FFF;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: capitalize;
    background-color: #FF0000;
    z-index: 1;
    min-width: 345px;
    text-align: center;
}

.footer-top-bar.blue p {
    background-color: #0262F2;
}

.footer-top-bar ul {
    margin: 0px;
    list-style: disc;
}

.footer-top-bar ul li {
    color: #FFF;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-top-bar.marquee {
    --duration: 100s;
    --gap: 150px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    bottom: 0;
}

.course-list.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    animation: scroll var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}


/* .marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: calc(var(--duration) / -2);
} */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

footer {
    color: #FFFFFF;
    background-color: #000000;
}

.footer-top {
    padding-top: 56px;
    padding-bottom: 20px;
    border-bottom: 1px solid #FFFFFF80;
}

.footer-top .footer-sign-up-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top .footer-sign-up-form input {
    width: 100%;
    background: #000000;
    border: unset;
    color: #414141;
    font-family: Poppins;
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.6px;
    text-transform: capitalize;
}

.footer-top .footer-sign-up-form input:focus-visible {
    outline: none;
}

.footer-top .footer-sign-up-form button {
    background: unset;
    border: unset;
    color: #FF0000;
    text-align: right;
    font-family: Poppins;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-transform: capitalize;
}

.footer-top .footer-sign-up-form button.blue {
    color: #0262F2;
}

.footer-sign-up h2 {
    color: #FFF;
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-middle {
    padding-top: 42px;
    padding-bottom: 60px;
}

.footer-middle .left {
    padding-right: 33px;
}

.footer-middle .middle {
    padding: 0px 50px;
    position: relative;
}

.footer-middle .middle::before {
    content: "";
    position: absolute;
    border-left: 1px solid #FFFFFF80;
    left: 0;
    height: 100%;
}

.footer-middle .middle::after {
    content: "";
    position: absolute;
    border-left: 1px solid #FFFFFF80;
    right: 0;
    height: 100%;
    top: 0;
}

.footer-middle .right {
    padding-left: 50px;
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #FFFFFF80;
}

.footer-bottom .copyright-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright-wrap p {
    color: #868686;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
}

.footer-logo-wrap img {
    padding-bottom: 52px;
}

.footer-logo-wrap p {
    color: #FFF;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 20px;
}

.footer-menu-wrap h4,
.footer-contact-wrap h4 {
    color: #FFF;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    text-transform: capitalize;
    margin: unset;
    padding-bottom: 40px;
}

.footer-menu-wrap .footer-menu-links {
    padding: unset;
    list-style: none;
    margin: unset;
}

.footer-menu-wrap .footer-menu-links li:first-child {
    padding-top: 0px;
}

.footer-menu-wrap .footer-menu-links li {
    padding-bottom: 16px;
    color: #FFF;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    padding-top: 16px;
    border-bottom: 1px solid #454545;
    display: flex;
    justify-content: space-between;
}

.footer-menu-wrap .footer-menu-links li i {
    color: #FFFFFF;
}

.footer-contact-wrap .footer-contact-links {
    padding-bottom: 50px;
}

.footer-contact-wrap .footer-contact-links p {
    color: #FFF;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.footer-contact-wrap .footer-contact-links .contact-no {
    display: inline;
}

.footer-contact-wrap .footer-contact-links .contact-no a {
    color: #FFF;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.footer-contact-wrap .footer-contact-links .contact-no span {
    color: #838383;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    padding: 0px 10px;
}

.footer-contact-wrap .social-media-links p {
    color: #FFF;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    padding-bottom: 30px;
}

.footer-contact-wrap .social-media-links .media-icons {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-contact-wrap .social-media-links .media-icons a {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    border: 1px solid #D9D9D94D;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* -------------------- Footer End -------------------- */


/* -------------------- Hero Start -------------------- */

.h-hero {
    background: url(../img/hero-bg.png) no-repeat center center;
    align-content: center;
    background-size: cover;
}

.h-hero .h-hero-content {
    margin-top: 7.813rem;
    margin-bottom: 3.125rem;
}

.h-hero .h-hero-title {
    font-size: 4.375rem;
    font-weight: 400;
    color: var(--text-color-light);
    margin-bottom: 3.438rem;
}

.h-hero .h-hero-title span {
    color: var(--primary-color);
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    animation: textclip 2s linear infinite;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.h-hero-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color-light);
    margin-bottom: 6.25rem;
}

.logos {
    width: 70%;
    margin: 70px auto 70px auto;
    overflow: hidden;
    white-space: nowrap;
}

.image-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.image-container .image-box {
    width: 15%;
    height: 74px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.image-container .image-box img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.image-container .image-box img.out {
    transform: translateY(100%);
    opacity: 0;
}

.image-container .image-box.swap img.in {
    animation: slideDownOut 0.6s forwards;
}

.image-container .image-box.swap img.out {
    animation: slideUpIn 0.6s forwards;
    animation-delay: 0.1s;
}

@keyframes slideDownOut {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(100%) scale(0.7);
        opacity: 0;
    }
}

@keyframes slideUpIn {
    0% {
        transform: translateY(100%) scale(0.7);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .image-container .image-box {
        width: 20%;
        /* height: 60px; */
    }
    /* .image-container .image-box img {
       height: 60px;
    } */
}

@media (prefers-reduced-motion: reduce) {
    .image-container .image-box img {
        transition: none;
        transform: translateY(0);
        opacity: 1;
    }
    .image-container .image-box.swap img.in,
    .image-container .image-box.swap img.out {
        transform: translateY(0);
        opacity: 1;
        animation: none;
    }
}

.scroll-down-wrap .circle {
    position: relative;
    width: 120px;
    height: 130px;
    border-radius: 100vmax;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto -65px;
}

.scroll-down-wrap .arrow {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    align-content: center;
    text-align: center;
}

.scroll-down-wrap .arrow i {
    color: var(--text-color-light);
    font-size: xx-large;
}

.scroll-down-wrap .scroll-text {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #b5b5b5;
    font-size: 10px;
    animation: textRotation 8s linear infinite;
}

@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}

.scroll-down-wrap .scroll-text span {
    position: absolute;
    left: 50%;
    font-size: 1.2em;
    transform-origin: 0 65px;
}


/* -------------------- Hero End -------------------- */


/* -------------------- What we offer Start -------------------- */

.box-wrapper {
    display: flex;
    border: 1px solid #D3D1D1;
    padding: 1.875rem 3.75rem;
    gap: 1.875rem;
    align-items: flex-start;
    border-radius: 0.5rem;
    height: 100%;
}

.box-wrapper .box-detail {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.box-wrapper .box-gif {
    width: 100%;
    max-width: 58px;
}

.box-wrapper .box-gif lottie-player {
    margin-top: 1.563rem;
    filter: hue-rotate(120deg);
    max-width: 5.938rem;
}

.box-wrapper .box-detail .box-title {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.box-wrapper .box-detail .box-desc {
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.box-wrapper .box-detail .underline-btn {
    font-size: 1rem;
    font-weight: 500;
}


/* -------------------- What we offer End -------------------- */


/* -------------------- About Us Start -------------------- */

.about-us .images-wrapper {
    position: relative;
}

.about-us .images-wrapper .img-behind {
    width: 100%;
    border-radius: 10px;
    max-width: 480px;
    max-height: 550px;
    object-fit: cover;
}

.about-us .images-wrapper .video-front {
    width: 100%;
    max-width: 440px;
    border-radius: 10px;
}

.about-us .images-wrapper .video-wrap {
    position: absolute;
    bottom: -60px;
    right: 50px;
}

.video-overlay-play-button {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0.625rem calc(50% - 3.125rem);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0.95;
    cursor: pointer;
    transition: opacity 150ms;
}

.is-hidden {
    display: none !important;
}

.has-media-controls-hidden::-webkit-media-controls {
    display: none !important;
}

.about-us .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.about-us .section-title {
    margin-bottom: 4rem;
}


/* -------------------- About Us End -------------------- */


/* -------------------- Services Start -------------------- */

.service-box {
    display: flex;
    flex-direction: column;
    border: 1px solid #D3D1D1;
    padding: 1.875rem;
    gap: 9.375rem;
    border-radius: 0.5rem;
}

.service-box .upper-content {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

.service-box img {
    width: 100%;
    max-width: 102px;
    margin: 1.25rem 1.25rem 0 0;
}

.service-box .service-title {
    font-size: 1.25rem;
    font-weight: 400;
}

.service-box .section-desc-small {
    font-size: 1rem;
}

.services .services-desc {
    height: 100%;
}

.services .services-desc p {
    font-size: 1.125rem;
    margin-top: 6rem;
}

.service-box.v2 {
    padding: 2.5rem;
    gap: 5rem;
    background: var(--background-color);
    border: unset;
    height: 100%;
}

.service-box.v2 img {
    margin: unset;
}

.service-box.v2 .service-title {
    font-size: 1.5rem;
}

.service-box.v2 .section-desc-small {
    color: var(--text-color-grey);
}


/* -------------------- Services End -------------------- */


/* -------------------- Case Study Start -------------------- */

.scroll-spy-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 6.25rem;
}

ul.tab-list {
    margin: unset;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

button.tab-btns {
    background: unset;
    border: unset;
    display: flex;
    gap: 20px;
    align-items: center;
}


/* .tab-btns .marker {
    background-color: var(--secondary-color);
    transform: none;
    transform-origin: 50% 50% 0px;
    opacity: 1;
    flex: none;
    height: 1px;
    overflow: visible;
    position: relative;
    width: 3px;
}

.tab-btns.active .marker {
    width: 40px;
    background-color: var(--primary-color);
}

.tab-btns .tab-title {
    font-size: 1rem;
}

.tab-btns.active .tab-title {
    font-size: 1.5rem;
    color: var(--primary-color);
} */

.case-study .section-title {
    font-size: 2rem;
}

.tab-btns .marker {
    background-color: var(--secondary-color);
    opacity: 1;
    flex: none;
    height: 1px;
    width: 3px;
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.tab-btns.active .marker {
    width: 40px;
    background-color: var(--primary-color);
}

.tab-btns .tab-title {
    font-size: 1rem;
    transition: font-size 0.3s ease-in-out, color 0.3s ease-in-out;
}

.tab-btns.active .tab-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: left;
}

@media(min-width:768px) {
    .scroll-spy-tab {
        position: sticky;
        top: 50px;
        height: 90vh;
        width: 100%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.case-study p {
    font-size: 1.125rem;
}

.scroll-spy-content {
    width: 100%;
}

.case-study-wrapper {
    height: 90vh;
    border-radius: 10px;
    margin-bottom: 2.5rem;
}

.case-study-wrapper:last-child {
    margin-bottom: unset;
}

.case-study-wrapper a {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    height: 100%;
    padding: 6.25rem 4.063rem;
}

.cs1 {
    background: linear-gradient(300deg, #1f8f10, #2ba91a, #093402, #1f7812);
    background-size: 240% 240%;
    animation: cs1 12s ease infinite;
}

@keyframes cs1 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cs2 {
    background: linear-gradient(227deg, #9c191b, #490b0c, #9c191b, #a1171a);
    background-size: 240% 240%;
    animation: cs2 12s ease infinite;
}

@keyframes cs2 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cs3 {
    background: linear-gradient(300deg, #0f5d99, #1878c0, #052a44, #3379a5);
    background-size: 240% 240%;
    animation: cs3 12s ease infinite;
}

@keyframes cs3 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cs4 {
    background: linear-gradient(290deg, #604893, #2a203f, #5f4791, #261c38);
    background-size: 200% 200%;
    animation: cs4 6s ease infinite;
}

@keyframes cs4 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.scroll-spy-content .cs-title {
    font-size: 3rem;
    margin-bottom: 1.875rem;
}

.case-study.cs-desc {
    font-size: 1.125rem;
}


/* -------------------- Case Study End -------------------- */


/* -------------------- Training Start -------------------- */

.training-intro {
    max-width: 750px;
    margin-bottom: 3.125rem;
}

.training-intro .section-sub-title {
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.training-intro .section-title {
    font-size: 2.5rem;
}

.training-card {
    border-bottom: 1px solid #ffffff9e;
    padding: 3.125rem 3.75rem;
}

.training-card:first-child {
    border-top: 1px solid #ffffff9e;
}

.training-card .training-info {
    display: flex;
    gap: 1.563rem;
    padding-right: 1.875rem;
    justify-content: space-between;
}

.training-card .training-img {
    width: 100%;
    max-width: 10.5rem;
}

.training-card .training-title {
    font-size: 1.125rem;
}

.traininig-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 1.875rem;
    gap: 1.5rem;
}

.training-card .training-desc {
    font-size: 1.125rem;
}

.training-card .underline-btn {
    font-size: 1rem;
}

.training-card .underline-btn .hover-underline-animation:after {
    height: 1px;
}

#toggleIcon {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}

.rotate-icon {
    transform: rotate(135deg);
}

.reset-rotation {
    transform: rotate(0deg);
}

#toggleButton:hover .reset-rotation {
    transform: rotate(135deg);
}

#toggleButton:hover .rotate-icon {
    transform: rotate(-45deg);
}


/* -------------------- Training End -------------------- */


/* -------------------- Features Start -------------------- */

.feature-block {
    border: 1px solid #D3D1D1;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.feature-block.horizontal {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.feature-block.horizontal .feature-details,
.feature-block.horizontal .feature-img {
    width: 50%;
}

.feature-block.horizontal .feature-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-block .feature-details {
    padding: 2.188rem 1.563rem;
    height: 100%;
}

.feature-block .feature-title {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.feature-block .feature-desc {
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.feature-block.vertical .feature-img img {
    width: 100%;
    max-height: 20rem;
    min-height: 20rem;
    object-fit: cover;
    object-position: center;
}

.feature-block.horizontal .feature-img img {
    width: 100%;
    max-height: 30.625rem;
    object-fit: cover;
    object-position: center;
}


/* -------------------- Features End -------------------- */


/* -------------------- Events Start -------------------- */

.events-wrapper .a-event {
    border: 1px solid #D3D1D1;
    border-radius: 0.625rem;
    overflow: hidden;
    height: 100%;
}

.a-event img {
    width: 100%;
    height: 100%;
    min-height: 23.75rem;
    max-height: 23.75rem;
    object-fit: cover;
    object-position: center;
}

.a-event .event-infos {
    padding: 1rem;
}

.a-event .event-infos .country {
    font-size: 0.835rem;
}

.a-event .event-infos .city {
    font-size: 1.375rem;
    font-weight: 500;
    /* border-top: 1px solid #E4E4E4; */
    width: fit-content;
    /* margin-top: 0.25rem; */
    margin-bottom: 1rem;
}

.a-event .event-infos .desc {
    font-size: 0.975rem;
}


/* -------------------- Events End -------------------- */


/* -------------------- Testimonials Start -------------------- */

.testimonials-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    place-items: center;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    opacity: 1;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
    overflow: hidden;
    cursor: grab;
}

.testimonial-item .testi-desc {
    font-size: 1rem;
    min-height: 175px;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.testimonial-item .testi-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.testimonial-item .testi-name-desig .testi-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-item .testi-name-desig .testi-desig {
    font-size: 1rem;
    color: #a8a8a8;
}

.testimonial-item .testi-image {
    width: 100%;
    max-width: 4.063rem;
    border-radius: 100%;
}


/* -------------------- Testimonials End -------------------- */


/* -------------------- Faq Start -------------------- */

.a-faq {
    padding: 1.875rem 0;
    border-bottom: 3px solid #f5f5f5;
    display: flex;
    gap: 3.125rem;
}

.a-faq:last-child {
    border-bottom: unset;
}

.a-faq .faq-que,
.a-faq .faq-ans {
    width: 50%;
}

.faq-que {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.a-faq .faq-num {
    color: #E8E8E8;
    font-size: 6.5rem;
    font-weight: 700;
    min-width: 4.438rem;
    text-align: center;
}

.a-faq .faq-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.a-faq .faq-ans {
    font-size: 0.875rem;
    align-content: center;
}

.faq-container {
    width: 100%;
    max-width: 1099px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.25rem;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #F2F5FF;
    transition: background-color 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    background-color: var(--background-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.25rem;
    background-color: var(--background-color);
    color: var(--text-color-grey);
    font-size: 1rem;
    /* transition: max-height 0.3s ease, padding 0.3s ease; */
}

.faq-answer.open {
    max-height: 100%;
    padding: 0.938rem 1.25rem;
}

.arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(45deg);
}


/* -------------------- Faq End -------------------- */


/* -------------------- Listing Page Start  -------------------- */

.c-listing-intro {
    background: linear-gradient(157.22deg, #231717 47.17%, #FF4F4F 175.7%);
    padding: 135px 0;
}

.w-bg-tag {
    width: fit-content;
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    margin: 0 auto 15px;
}

.w-bg-tag span {
    font-size: 1rem;
    font-weight: 500;
}

.cl-title {
    font-size: 4.125rem;
    margin-bottom: 18px;
}

.intro-sec-desc {
    max-width: 750px;
    margin: 0 auto 25px;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.stats-wrapper .stats-item {
    display: flex;
    flex-direction: column;
}

.stats-number {
    font-size: 3rem;
    font-weight: 500;
}

.stats-descp {
    font-size: 1.25rem;
}

.ha-search-inner-wrap {
    width: 100%;
    max-width: 792px;
    margin: 0 auto 50px;
    position: relative;
}

.ha-search-inner-wrap .search-box {
    position: relative;
}

.ha-search-inner-wrap .search-box input {
    width: 100%;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 60px;
    border: unset;
    outline: unset;
}

button.search-btn {
    background: #000000;
    border-radius: 100px;
    width: 48px;
    height: 48px;
    border: unset;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}

button.search-btn i {
    color: #fff;
    font-size: 24px;
}

.ha-search-wrapper {
    position: relative;
}

.ha-search-wrapper .search-suggests-results {
    border-radius: 10px;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    left: 0;
    z-index: 1000;
    height: auto;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease-in-out;
    max-width: 792px;
    margin: auto;
    box-shadow: 0 1px 5px 2px #ebebeb;
    pointer-events: none;
}

.ha-search-wrapper:hover .search-suggests-results {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.ha-search-wrapper .search-suggests-results .search-suggests-results-inner {
    overflow: auto;
    overflow-x: hidden;
    padding: 20px;
    max-height: calc(95vh - 183px);
}

.search-suggests-results-inner ul {
    padding: unset;
    margin: unset;
    list-style-type: none;
}

.search-suggests-results .search-suggests-results-inner li:not(:last-child) .search-result-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-suggests-results .search-suggests-results-inner .search-result-item .img-box {
    width: 60px;
    height: 84px;
}

.btns-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.section-title.st-38 {
    font-size: 2.375rem;
}

.section-title.mb-16 {
    margin-bottom: 16px;
}

.section-title.mb-30 {
    margin-bottom: 30px;
}

.max-710 {
    max-width: 710px;
}

.max-710.centered {
    margin: auto;
}

.tb-sec {
    background: #FFFBFB;
}

.tb-company-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.tb-company-logo {
    flex: 1;
    max-width: 200px;
    max-height: 65px;
    object-fit: contain;
}

ul.tick-list {
    list-style-type: none;
    padding: unset;
    margin: unset;
    display: inline-flex;
    gap: 16px;
}

ul.tick-list li i {
    color: #008000;
}

ul.tick-list li {
    font-weight: 500;
}

a.read-more-toggle {
    color: #FF0300;
    padding-left: 8px;
}

.c-listing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    row-gap: 60px;
}

.course-cards {
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #0000000D;
    overflow: hidden;
}

.course-cards .c-card-upper {
    background: #F7F7F7;
    padding: 25px;
}

.course-cards .c-card-lower {
    padding: 25px;
}

.course-cards .c-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.course-cards .c-timing {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.course-cards .c-timing i {
    color: #ff0300;
    font-size: 20px;
    margin-right: 7px;
}

.course-cards .c-card-desc {
    min-height: 285px;
    font-size: 16px;
    color: #858585;
    margin-bottom: 20px;
}

.course-cards .c-card-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* -------------------- Listing Page End ---------------------- */


/* -------------------- Course Detail Page Start ---------------------- */

.blue-text {
    color: #0F6FFF;
}

.intro-section {
    padding: 85px 0 150px;
}

.intro-section.blue-grad-bg {
    background: linear-gradient(126.59deg, #13171B 24.53%, #0F6FFF 213.45%);
}

.intro-section.red-grad-bg {
    background: linear-gradient(126.59deg, #13171B 24.53%, #FF0000 213.45%);
}

.intro-section.ocpt-grad-bg {
    background: linear-gradient(126.59deg, #13171B 24.53%, #818181 213.45%);
}

.intro-wrap {
    display: flex;
    align-items: center;
    gap: 105px;
}

.intro-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 190px;
}

.intro-left .upper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cd-m-title {
    font-size: 3.25rem;
}

.cd-m-desc {
    font-size: 1.25rem;
}

ul.fwhom-list {
    padding: unset;
    margin: unset;
    display: flex;
    flex-wrap: wrap;
}

ul.fwhom-list li {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid transparent;
    border-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
}

ul.fwhom-list li:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.intro-right {
    flex: 0 0 34%;
}

.c-inq-form-wrap {
    background: #ffffff;
    box-shadow: 0px 0px 25px 0px #00000029;
    backdrop-filter: blur(100px);
    padding: 50px 72px;
    border-radius: 10px;
    margin-top: -140px;
}

.c-inq-content-wrap {
    margin: 0 auto 30px;
    max-width: 744px;
    text-align: center;
}

.c-inq-title {
    font-size: 1.625rem;
    font-weight: 600;
}

.c-inq-desc {
    font-size: 1.125rem;
}

.c-inq-form-wrap form .row {
    row-gap: 24px;
}

.c-inq-fields {
    width: 100%;
    border: 0.94px solid #BBC2CB;
    border-radius: 8px;
    background: #F6F6F6;
    padding: 10px 15px;
    font-size: 16px;
}

textarea.c-inq-fields {
    height: 100%;
    height: 76px;
}

.c-inq-fields:focus {
    outline: unset;
    box-shadow: unset;
}

.c-inq-fields::placeholder {
    color: #ACACAC;
}

.c-inq-btn {
    width: 100%;
    height: 100%;
    background: #0F6FFF;
    color: #fff;
    border: unset;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.c-inq-form-wrap .c-inq-btn {
    max-height: 76px;
}

.c-inq-btn:hover {
    color: #0F6FFF;
    background: #e9e9e9;
}

.c-inq-btn.red-btn {
    background: #FF0000;
}

.c-inq-btn.red-btn:hover {
    color: #FF0000;
    background: #e9e9e9;
}

ul.co-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 120px;
    list-style-type: none;
    padding: unset;
    margin: unset;
}

ul.co-list li {
    position: relative;
    padding-left: 30px;
}

ul.co-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 14px;
    transform: translateY(-60%) rotate(45deg);
    width: 7px;
    height: 15px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: block;
}

.res-acc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.res-acc-card {
    background: #F0F6FF;
    padding: 30px 40px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
    min-height: 158px;
}

.res-acc-title {
    font-size: 15px;
    font-weight: 500;
}

.black-bg-w-img {
    background-color: #000000;
    background-image: url(../img/bg/module-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
}

.highl-module-wrap {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

ul.hl-m-list {
    flex: 0 0 63%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 55px;
    margin: unset;
    padding: unset;
}

ul.hl-m-list li {
    border-bottom: 1px solid #D8D4C533;
    padding: 18px 0;
}

.er-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.a-er-grid {
    border-radius: 10px;
    overflow: hidden;
}

.a-er-grid .a-er-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.a-er-grid .a-er-c-wrap {
    padding: 40px 26px 0;
}

.a-er-grid .a-er-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    min-height: 85px;
    margin-bottom: 30px;
}

.a-er-grid .a-er-head img {
    width: 100%;
    max-width: 48px;
}

.a-er-grid ul.er-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 45px;
    list-style: disc;
}


/* .a-er-grid ul.er-list li::marker {
    font-size: 10px;
} */

.a-er-grid .a-er-note {
    background: #0262F2;
    padding: 17.5px 20px;
    border-radius: 10px;
}

.red .a-er-grid .a-er-note {
    background: #FF0000;
}

.certif-wrap {
    background: linear-gradient(90deg, #F0F6FF 0%, #F6F0FF 100%);
    padding: 60px 150px 50px;
    border-radius: 20px;
}

.w-ha-sec .section-title {
    max-width: 670px;
}

.w-ha-fq-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 100px;
}

.w-ha-fq-wrapper .w-ha-right {
    flex: 0 0 59%;
}

.ha-faq-item {
    padding: 30px 0;
    border-bottom: 1px solid #000000;
}

.ha-faq-question {
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.ha-faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.ha-faq-item.active .ha-faq-question::after {
    content: "−";
}

.ha-faq-answer {
    display: none;
    font-size: 1rem;
    margin-top: 10px;
}

.c-enqy-form-sec {
    background-image: url(../img/inq-form-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.c-enqy-form-sec.red {
    filter: hue-rotate( 134deg);
}

.c-enqy-form-wrapper {
    display: flex;
    gap: 60px;
}

.c-enqy-form-sec-content-wrap {
    flex: 56;
}

.c-enqy-form-c-wrap {
    flex: 44;
    background: linear-gradient(140.62deg, rgba(255, 255, 255, 0.4) 1.01%, rgba(16, 82, 181, 0.4) 98.75%);
    backdrop-filter: blur(50px);
    padding: 60px 30px;
    border-radius: 20px;
}

.c-enqy-title {
    font-size: 3rem;
}

.c-enqy-desc {
    font-size: 1.375rem;
}

.enqy-text-title {
    font-size: 1.625rem;
}

.c-enqy-fields {
    width: 100%;
    border: 0.94px solid #BBC2CB;
    border-radius: 8px;
    background: #F6F6F6;
    padding: 10px 16px;
    margin-bottom: 25px;
}

.c-enqy-fields::placeholder {
    color: #ACACAC;
}

.c-enqy-fields:focus {
    outline: unset;
    box-shadow: unset;
}

.c-enqy-btn {
    background: #0262F2;
    color: #ffffff;
    border: unset;
    width: 100%;
    padding: 20px 0;
    border-radius: 10px;
}

.co-testimonials-carousel.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.co-testimonials-carousel.owl-carousel {
    display: block;
}

.co-testimonial-item {
    background: #F0F6FF;
    max-width: 42.5vw;
    border-radius: 20px;
    padding: 38px 50px 24px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.red .co-testimonial-item {
    background: #fff6f6;
}

.co-tes-by-name {
    font-size: 1.375rem;
}

.co-tes-content-wrap p {
    display: flex;
    flex-direction: column;
    font-size: 1.125rem;
    font-weight: 500;
}

.co-tes-content-wrap p i {
    color: #0262F2;
    font-size: 90px;
    line-height: 0;
    width: fit-content;
    height: fit-content;
}

.red .co-tes-content-wrap p i {
    color: #FF0000;
}

.co-testimonials-carousel .owl-item {
    opacity: 0.2;
    transform: scale(0.9);
    transition: 0.5s ease-in-out;
}

.co-testimonials-carousel .owl-item.active.center {
    opacity: 1;
    transform: scale(1);
}

.co-testimonials-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: #ffffff !important;
    box-shadow: 0px 0px 14px 0px #0000000D;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.co-testimonials-carousel .owl-nav button i {
    font-size: 24px;
}

.co-testimonials-carousel .owl-nav button.owl-prev {
    left: 12vw;
}

.co-testimonials-carousel .owl-nav button.owl-next {
    right: 12vw;
}

.course-faqs-wrapper {
    border: 2px solid #E8EEF7;
    padding: 20px 50px;
    border-radius: 10px;
}

.c-faq-item {
    padding: 32px 20px;
    border-bottom: 1px solid #D9DBE9;
    cursor: pointer;
}

.c-faq-item.active,
.c-faq-item.prev-active {
    border-bottom: unset;
}

.c-faq-item:last-child {
    padding: 32px 20px;
    border-bottom: unset;
}

.c-faq-item.active {
    background: #F0F6FF;
    border-radius: 10px;
}

.c-faq-que-wrap {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px;
}

.c-faq-que-ans-wrap {
    flex: 0 0 65%;
}

.c-faq-no {
    color: #A0A3BD;
    font-size: 18px;
    font-weight: 600;
}

.c-faq-que {
    font-size: 18px;
    font-weight: 600;
}

.c-faq-item.active .c-faq-no,
.c-faq-item.active .c-faq-que {
    color: #0F6FFF;
}

.c-faq-item.active .c-faq-que {
    text-align: start;
    margin-bottom: 24px;
}

.cross-wrap i {
    color: #A0A3BD;
    font-size: 24px;
    line-height: 0;
    transition: 0.3s ease-in-out;
}

.c-faq-item.active .cross-wrap i {
    display: block;
    color: #0F6FFF;
    font-size: 28px;
    transform: rotate(45deg);
}

.c-faq-item .c-faq-ans {
    color: #7F7F7F;
    font-size: 14px;
}

.course-pricing-wrapper {
    background: #F0F6FF;
    padding: 33px;
    border-top: 1px solid #F0F6FF;
    box-shadow: 0px 0px 14px 0px #00000026;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10vw;
}

.course-price-box {
    background: #0035C7;
    border-radius: 10px;
    padding: 30px 80px;
    width: fit-content;
    text-align: center;
    box-shadow: 0px 2px 8px 0px #0000001A;
}

.red .course-price-box {
    background: #FF0000;
}

.cpb-title {
    font-family: var(--font-inter);
    font-size: 1.25rem;
    font-weight: 700;
}

.course-price {
    font-family: var(--font-inter);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.inc-text {
    font-size: 14px;
}

.cp-title {
    font-family: var(--font-inter);
    font-size: 1.75rem;
    font-weight: 600;
}

.cp-details {
    font-family: var(--font-inter);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.price-brkp {
    color: #0056D2;
    font-family: var(--font-inter);
    font-size: 1.25rem;
    font-weight: 600;
}

.red .price-brkp {
    color: #FF0000;
}

.one-page-navigation {
    background: #F0F6FF;
    padding: 22px 0;
}

.red .one-page-navigation {
    background: #fff6f6;
}

ul.one-page-nav {
    list-style-type: none;
    padding: unset;
    margin: unset;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    row-gap: 20px;
}

ul.one-page-nav .nav-item {
    background: transparent;
    color: #0F1114;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    transition: 0.01s;
}

ul.one-page-nav .nav-item.current {
    background: #0F6FFF;
    color: #ffffff;
}

.red ul.one-page-nav .nav-item.current {
    background: #FF0000;
}

.about-course-wrappper {
    display: flex;
}

.about-course-wrappper .ls-content {
    flex: 0 0 67%;
}

.about-course-wrappper .course-title {
    font-family: var(--font-inter);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-course-wrappper .course-desc {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.in-detail-course {
    display: flex;
    gap: 30px;
}

.in-detail-course .idc-ls-wrap {
    flex: 0 0 67%;
}

.cd-ins-tb-wrap.sticky-top {
    z-index: 1;
    top: 86px;
}

.cd-ins-tb-wrap {
    background: #ffffff;
    padding: 33px 26px;
    border: 2px solid #E8EEF7;
    border-radius: 8px;
}

.cd-ins-tb-wrap .cd-wrap,
.cd-ins-tb-wrap .ins-wrap {
    margin-bottom: 24px;
}

.cd-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.125rem;
}

ul.cd-list {
    padding-left: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: disc;
}

.ins-bd-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

img.ins-img {
    padding: 5px;
    width: 100%;
    max-width: 131px;
}

.name-lk-wrap {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.ins-name {
    color: #0E264A;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.ins-by {
    color: #0E264A;
    font-size: 13px;
}

.ins-link {
    width: fit-content;
}

.ins-link i {
    color: #0077B5;
    font-size: 25px;
    line-height: 1;
}

.linkedin-color {
    color: #0077B5;
}

.ins-desc {
    font-size: 1rem;
}

.tr-b-wrap {
    border-top: 2px solid #DAE1ED;
    padding-top: 20px;
}

ul.tr-list {
    list-style-type: none;
    padding: unset;
    margin: unset;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

ul.tr-list li {
    background: #fff;
    width: 102px;
    height: 51px;
    border: 1px solid #E8EEF7;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.tr-list li img {
    width: 80%;
    object-fit: contain;
}

.brief-box-wrap {
    background: #F0F6FF;
    backdrop-filter: blur(50px);
    padding: 20px 50px;
    border-radius: 10px;
    display: flex;
    text-align: center;
}

.red .brief-box-wrap {
    background: #fff6f6;
}

.brb-c.sw {
    flex: 1;
}

.brb-c.bw {
    flex: 2;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
    border-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000000 50%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
    margin: 0 5px;
}

.brb-c:last-child {
    border: unset;
}

img.brb-img {
    margin: 0px auto 10px;
    max-width: 42px;
    object-fit: contain;
}

.brb-title {
    font-size: 14px;
    font-weight: 600;
    margin: unset;
}

.idc-ls-wrap .modules-wrapper {
    border: 2px solid #E8EEF7;
    border-radius: 8px;
    padding: 12px 35px;
}

.idc-ls-wrap .modules-wrapper {
    max-height: 150vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.idc-ls-wrap .modules-wrapper::-webkit-scrollbar {
    width: 6px;
}

.idc-ls-wrap .modules-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.idc-ls-wrap .modules-wrapper::-webkit-scrollbar-thumb {
    background: #ff00009e;
    border-radius: 10px;
}

.idc-ls-wrap .modules-wrapper::-webkit-scrollbar-thumb:hover {
    background: #FF0000;
}

.a-module-wrap {
    border-bottom: 2px solid #E8EEF7;
}

.a-module-wrap .a-module-title-wrap {
    padding: 18px 15px;
    margin: 12px 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.a-module-wrap.has-content .a-module-title-wrap {
    cursor: pointer;
}

.a-module-wrap .a-module-title-wrap .icon i {
    color: #0056D2;
    transition: all 0.3s ease-in-out;
}

.red .a-module-wrap .a-module-title-wrap .icon i {
    color: #ff0000;
}

.a-module-wrap .a-module-title-wrap .icon {
    display: none;
}

.a-module-wrap.has-content .a-module-title-wrap .icon {
    display: block;
}

.a-module-wrap:hover .a-module-title-wrap {
    background: #F0F6FF;
}

.red .a-module-wrap:hover .a-module-title-wrap {
    background: #fff6f6;
}

.a-module-wrap:last-child {
    border-bottom: unset;
}

.module-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.mod-details-wrap {
    color: #5B6780;
    font-size: 14px;
    line-height: 1;
}

.dot {
    background: #5B6780;
    width: 5px;
    height: 5px;
    border-radius: 50px;
    display: inline-flex;
    vertical-align: middle;
    margin: 0 8px;
}

.a-module-has-content {
    display: none;
    padding: 0 15px 18px;
    font-size: 1rem;
    border-radius: 0 0 6px 6px;
}

.a-module-wrap.has-content.active .a-module-title-wrap {
    margin-bottom: unset;
    border-radius: 6px 6px 0 0;
}

.a-module-wrap.has-content.active .a-module-title-wrap {
    background: #F0F6FF;
}

.red .a-module-wrap.has-content.active .a-module-title-wrap {
    background: #fff6f6;
}

.a-module-wrap.has-content.active .a-module-has-content {
    display: block;
    background: #F0F6FF;
    margin-bottom: 12px;
}

.red .a-module-wrap.has-content.active .a-module-has-content {
    background: #fff6f6;
}

.a-module-wrap.has-content.active .a-module-title-wrap .icon i {
    transform: rotate(-180deg);
    display: block;
}

.bg-as-blur .a-module-wrap .a-module-title-wrap:hover .module-name {
    color: #000;
}

.bg-as-blur .a-module-wrap .a-module-title-wrap .module-name {
    color: #fff;
}


.bg-as-blur .a-module-wrap.active .a-module-title-wrap .module-name {
    color: #000;
}

/* -------------------- Course Detail Page End ---------------------- */


/* -------------------- About Us Page Start ---------------------- */

.section-title.st-48 {
    font-size: 3rem;
}

.intro-bg {
    position: absolute;
    top: 0;
    z-index: 1;
}

img.intro-bg-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.z-index-2 {
    z-index: 2;
}

.about-intro-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.about-intro-wrapper .intro-content-wrap {
    max-width: 54vw;
}

.welcome-txt {
    font-family: var(--font-inter);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.welcome-txt i {
    font-size: 35px;
    line-height: 1;
}

.intro-title {
    font-size: 4.125rem;
}

.intro-content-wrap .intro-desc {
    max-width: 482px;
}

.founder-title {
    font-size: 4.125rem;
}

.founder-info-wrapper {
    display: flex;
    gap: 60px;
}

.founder-info-content-wrap {
    max-width: 43vw;
}

.founders-name {
    font-size: 1.875rem;
    font-weight: 400;
}

.founders-desg {
    color: #757575;
    font-size: 1.25rem;
}

.a-founder-wrap .social-icon-linkedin i {
    font-size: 24px;
}

.our-mission-sec-wrap {
    background: linear-gradient(88.9deg, #541616 45%, #8A0000 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}

.our-mission-sec-wrap .om-content-wrapper {
    flex: 0 0 50%;
    padding: 102px 0 50px 130px;
}

.our-mission-sec-wrap .our-mission-img-wrap {
    flex: 0 0 50%;
}

img.our-mission-img {
    margin: 65px 0 0 auto;
}

.om-title {
    font-size: 4.125rem;
    font-weight: 400;
}

.om-content-wrapper .om-desc {
    font-family: var(--font-inter);
    max-width: 430px;
}

.red .c-faq-item.active .c-faq-no,
.red .c-faq-item.active .c-faq-que {
    color: #FF0000;
}

.red .c-faq-item.active .cross-wrap i {
    color: #FF0000;
}

.red .c-faq-item.active {
    background: #FFF0F0;
}

img.ab-mulit-sec-w-c-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}


/* .ha-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.ha-stats-item {
    background: #FFFBFE;
    border: 1.21px solid #F1F0F4;
    border-radius: 20px;
    box-shadow: 0px 0px 29.02px 0px #0000000D;
    text-align: center;
    padding: 39px 77px;
}

.ha-stats-item img.hs-img {
    width: 100%;
    max-width: 64px;
    margin: 0 auto 12px;
}

.ha-stats-no {
    font-family: var(--font-inter);
    font-size: 3rem;
}

.ha-stats-title {
    color: #515151;
    font-size: 1.125rem;
    margin-top: 8px;
} */

.ha-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ha-stats-item {
    background: #FFFBFE;
    border: 1.21px solid #F1F0F4;
    border-radius: 20px;
    box-shadow: 0 0 29.02px 0 #0000000D;
    text-align: center;
    padding: 39px 77px;
    transition: transform .5s cubic-bezier(.22, .61, .36, 1), box-shadow .5s;
    will-change: transform, box-shadow;
}

.ha-stats-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}

.ha-stats-item img.hs-img {
    width: 100%;
    max-width: 64px;
    margin: 0 auto 12px;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.ha-stats-no {
    font-family: var(--font-inter);
    font-size: 3rem;
    line-height: 1;
    display: inline-block;
}

.ha-stats-title {
    color: #515151;
    font-size: 1.125rem;
    margin-top: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(.98);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .ha-stats-item,
    .reveal {
        transition: none !important;
    }
    .ha-stats-item img.hs-img {
        animation: none !important;
    }
}


/* ================== SCOPE: .ha-timeline ================== */

.ha-timeline {
    width: 100%;
    margin: 56px auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: calc(45% - 35px) calc(55% - 35px);
    column-gap: 70px;
    align-items: center;
}

.ha-timeline .dial {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e7efff;
    box-shadow: 0 10px 30px rgba(10, 20, 40, .08) inset, 0 8px 24px rgba(10, 20, 40, .08);
    display: grid;
    place-items: center;
    overflow: hidden;
    max-width: 550px;
    margin: auto;
}

.ha-timeline .rim-arc {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
    pointer-events: none;
}

.ha-timeline .rim-arc .progress {
    fill: none;
    stroke: #ff2b2b;
    stroke-width: 2px;
    stroke-linecap: butt;
    transition: stroke-dasharray .35s cubic-bezier(.22, 1, .36, 1);
}

.ha-timeline .year {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 8px;
    user-select: none;
    line-height: 1;
}

.ha-timeline .y20 {
    font-weight: 800;
    font-size: 120px;
    color: #111;
}

.ha-timeline .y12 {
    font-weight: 800;
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px #cfd6ea;
}

.ha-timeline .suffix-next {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #d7def0;
    opacity: .65;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, 0) 75%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, 0) 75%);
}


/* RIGHT */

.ha-timeline .panel {
    position: relative;
    padding: 6px 0;
    min-height: 180px;
}

.ha-timeline .when {
    color: #798093;
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 8px;
}

.ha-timeline .title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 800;
}

.ha-timeline .desc {
    margin: 0 0 24px;
    color: #5a5f6c;
    line-height: 1.6;
    max-width: 700px;
}

.ha-timeline .preview {
    opacity: .52
}

.ha-timeline .preview .title {
    font-weight: 800;
    color: #6b707c;
}

.ha-timeline .controls {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ha-timeline .btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e6eaf6;
    background: #fff;
    box-shadow: 0 8px 18px rgba(25, 35, 60, .10);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.ha-timeline .btn svg {
    width: 18px;
    height: 18px;
    stroke: #1f2530;
    stroke-width: 2;
    fill: none;
}


/* Content swipe */

.ha-timeline .block {
    will-change: transform, opacity
}

.ha-timeline .enter-down {
    opacity: 0;
    transform: translateY(-18px)
}

.ha-timeline .enter-down.run {
    transition: .35s cubic-bezier(.22, 1, .36, 1);
    opacity: 1;
    transform: translateY(0)
}

.ha-timeline .enter-up {
    opacity: 0;
    transform: translateY(18px)
}

.ha-timeline .enter-up.run {
    transition: .35s cubic-bezier(.22, 1, .36, 1);
    opacity: 1;
    transform: translateY(0)
}

.ha-timeline .leave-down {
    opacity: 1;
    transform: translateY(0)
}

.ha-timeline .leave-down.run {
    transition: .25s cubic-bezier(.22, 1, .36, 1);
    opacity: 0;
    transform: translateY(18px)
}

.ha-timeline .leave-up {
    opacity: 1;
    transform: translateY(0)
}

.ha-timeline .leave-up.run {
    transition: .25s cubic-bezier(.22, 1, .36, 1);
    opacity: 0;
    transform: translateY(-18px)
}

@media (max-width:1000px) {
    .ha-timeline {
        grid-template-columns: 1fr;
        column-gap: 70px;
        row-gap: 34px;
    }
    .ha-timeline .controls {
        position: static;
        flex-direction: row;
    }
}


/* -------------------- About Us Page End ---------------------- */


/* -------------------- Contact Us Page Start ---------------------- */

.cs-intro-sec .section-title {
    font-family: var(--font-inter);
}

.git-tag {
    width: fit-content;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FF00000A;
    color: #FF0000;
    border: 1px solid #E2E8F0;
    backdrop-filter: blur(1px);
    border-radius: 12px;
    padding: 10px 12px;
}

.cs-tags-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.a-cs-tag {
    background: #1F1B1B0A;
    border: 1px solid #1B1C1F0A;
    backdrop-filter: blur(4px);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.a-cs-tag .cs-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50px;
    margin-right: 8px;
}

.light-green {
    background: #8AFF9F;
}

.light-red {
    background: #FF8181;
}

.light-blue {
    background: #83ACFF;
}

.arc-as-bg {
    position: relative;
    overflow: hidden;
}

.arc-as-bg-img {
    position: absolute;
    top: 22%;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.ha-cs-form-wrapper {
    max-width: 1020px;
    margin: auto;
    background: linear-gradient(140.62deg, rgba(255, 234, 234, 0.4) 1.01%, rgba(255, 0, 0, 0.4) 98.75%);
    backdrop-filter: blur(50px);
    padding: 44px 30px;
    border-radius: 20px;
}

.ha-cs-form-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ha-cs-form-wrapper .row {
    row-gap: 40px;
}

.cs-form-field {
    background: #F9F9F9;
    border: 1px solid #D0D5DD;
    border-radius: 12px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    padding: 14px 15px;
}

.cs-form-field:focus {
    outline: none;
}

.primary-btn.ha-cs-btn span {
    padding: 15px 95px;
}

.ha-cs-d-blocks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 38px;
}

.ha-cs-d-block {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 20px;
    text-align: center;
    padding: 50px 20px;
}

.ha-cs-d-block.red {
    background: #FFF2F2;
    border: 1px solid #FF7D7D;
}

.ha-cs-d-block.blue {
    background: #F2F5FF;
    border: 1px solid #809DFF;
}

.ha-cs-d-block.orange {
    background: #FFF7F2;
    border: 1px solid #FFB07F;
}

.ha-cs-d-block-icon {
    width: fit-content;
    margin: auto;
    padding: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
}

.ha-cs-d-block-title {
    font-family: var(--font-inter);
    font-size: 2rem;
    margin: 20px 0;
}

.ha-cs-d-block-desc {
    font-family: var(--font-inter);
    color: #515151;
    margin-bottom: 20px;
}

.ha-cs-d-block-link {
    font-family: var(--font-inter);
    color: #000000;
}


/* -------------------- Contact Us Page End ---------------------- */


/* -------------------- Offensive AI Page Start ---------------------- */

.intro-section.o-ai {
    background-color: #000000;
    background-image: url(https://hackerassociate.com/wp-content/uploads/assets/img/o-ai/o-ai-bg.webp);
    background-position: right;
    background-size: cover;
}

.o-ai .intro-right.video-wrapper {
    flex: 0 0 40%;
}

.yt-video-wrap {
    display: flex;
    height: 100%;
    padding: 5px;
    border-radius: 15px;
    overflow: hidden;
    background: #FFFFFF1A;
    border: 0.96px solid #FFFFFF4D;
    box-shadow: 0px 0px 0px 8.63px #FFFFFF08 inset;
}

.yt-video-wrap iframe {
    border-radius: 15px;
    height: 100%;
    min-height: 375px;
}

.c-inq-form-wrap.blur-bg {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF4D;
    box-shadow: 0px 0px 0px 9px #FFFFFF08 inset;
    backdrop-filter: blur(15px);
}

.muliple-sec-w-c-bg {
    background-color: #000;
    background-image: url(https://hackerassociate.com/wp-content/uploads/assets/img/o-ai/bg-pattern.png);
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative;
    z-index: 2;
}

.syllabus-sec {
    background: radial-gradient(80% 50% at 50% -20%, rgba(255, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

ul.co-list.white-text-color li::after {
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

.blur-cards .res-acc-card {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF4D;
    box-shadow: 0px 0px 0px 9px #FFFFFF08 inset;
    backdrop-filter: blur(30px);
}

.onepagenav-sec-wrapper {
    position: relative;
    background: #000;
}

.one-page-navigation.blur-bg {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF4D;
    border-radius: 10px;
    backdrop-filter: blur(30px);
}

ul.one-page-nav.white-tc .nav-item {
    color: #ffffff;
}

.bg-as-blur {
    background: #FFFFFF1A!important;
    border: 1px solid #FFFFFF4D!important;
    backdrop-filter: blur(30px)
}

.bg-as-blur .brb-c.bw {
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
}

.blur-bg .ins-name {
    color: #fff;
}

.blur-bg .ins-by {
    color: #fff;
}

.blur-bg .ins-link i {
    color: #fff;
}

.blur-bg .a-module-wrap:hover .a-module-title-wrap {
    color: #000;
}

.blur-bg .a-module-wrap.has-content.active {
    color: #000;
}

.a-module-has-content ol {
    margin-bottom: unset;
    list-style: decimal;
}

.red.blur-bg ul.one-page-nav .nav-item.current {
    background: linear-gradient(180deg, #FF394A 0%, #A1232E 100%);
}

.red.blur-bg .course-price-box {
    background: linear-gradient(180deg, #FF394A 0%, #A1232E 100%);
}

.red.blur-bg .price-brkp {
    color: #C82D3A;
}

.el-req.ai-o {
    background-image: url(https://hackerassociate.com/wp-content/uploads/assets/img/o-ai/a-ai-bg-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.red.blur-bg .a-er-grid .a-er-note {
    background: linear-gradient(180deg, #FF394A 0%, #A1232E 100%);
}

.video-g-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.video-g-grid-item {
    background: #FFFFFF1A;
    box-shadow: 0px 24px 48px 0px #C7D3EA0D inset;
    border: 1px solid #FF00000F;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-g-grid-item .video-title {
    padding: 50px 28px 30px;
    margin: unset;
    font-size: 1.75rem;
    font-weight: 400;
}

.vid-gg-wrap {
    display: flex;
    padding: 10px;
    background: #FFFFFF1A;
    border: 1.05px solid #FFFFFF4D;
    border-radius: 20px;
    box-shadow: 0px 0px 0px 9.49px #FFFFFF08 inset;
}

.vid-gg-wrap iframe {
    border-radius: 15px;
    height: 100%;
    min-height: 425px;
}

.certif-wrap.c-bg-img {
    background-image: url(https://hackerassociate.com/wp-content/uploads/assets/img/o-ai/certi-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section-title.eclipse.red {
    position: relative;
    z-index: 1;
}

.section-title.eclipse.red::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    top: -12px;
    border-radius: 88.8125rem;
    background: #D0413E;
    filter: blur(72px);
    width: 90%;
    height: 35%;
    z-index: -1;
}


/* .ha-exl-bon-wrap {
    max-width: 1150px;
    margin: auto;
    position: relative;
} */

.ha-exl-bon-wrap {
    --cardW: clamp(260px, 28vw, 320px);
    --cardH: 290px;
    --gap: clamp(16px, 3vw, 32px);
    --stagger: clamp(10px, 2vw, 32px);
    max-width: 1150px;
    margin: 150px auto 0;
    position: relative;
    padding: 10px 10px 0;
    min-height: calc(var(--cardH) + 60px);
}

.ha-exl-bon-item {
    max-width: 320px;
    min-height: 290px;
    background: #FFFFFF1A;
    border-top: 1px solid #00000057;
    backdrop-filter: blur(54px);
    border-radius: 10px;
    padding: 30px 20px;
    position: absolute;
}

.ha-exl-bon-item:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 66%;
    height: 10px;
    background: #D0413E;
    border-radius: 13px;
    z-index: -1;
    filter: blur(4px);
}

ul.ha-exl-bon-list {
    margin: unset;
    color: #A6A6A6;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: disc;
}

.ha-exl-bon-main-img {
    width: 100%;
    max-width: 816px;
    margin: 230px auto 0;
    position: relative;
}

.ha-exl-bon-item.left {
    left: 0;
    top: 0;
}

.ha-exl-bon-item.middle {
    left: 50%;
    transform: translateX(-50%);
    top: calc(0px - var(--stagger));
}

.ha-exl-bon-item.right {
    right: 0;
    top: 0;
}

#offensive-ai-page .wpcf7 form.invalid .wpcf7-response-output, #offensive-ai-page .wpcf7 form.unaccepted .wpcf7-response-output, #offensive-ai-page .wpcf7 form.payment-required .wpcf7-response-output {
    color: #fff;
}

#offensive-ai-page .wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #fff;
}

/* -------------------- Offensive AI Page End ---------------------- */