@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

@font-face {
    font-family: rocgrotesk-regular;
    src: url(../fonts/rocgrotesk-regular.otf);
}

@font-face {
    font-family: rocgrotesk-medium;
    src: url(../fonts/rocgrotesk-medium.otf);
}

@font-face {
    font-family: rocgrotesk-bold;
    src: url(../fonts/rocgrotesk-bold.otf);
}

:root {
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-light-1: #FAF7F6;
    --clr-light-2: #f3f8ff;
    --clr-light-3: #FAFAFA;
    --clr-light-4: #F8F6F1;
    --clr-light-5: #f9f2ed;
    --clr-blue-1: #678af9;
    --clr-blue-2: #ecf1ff;
    --clr-blue-3: #cbd8ff;
    --filter-1: initial;
    --_radius-m: 2.6rem;
    --_radius-l: 5rem;
    --_radius-xl: 8rem
}

html.dark-mode {
    --clr-black: #ffffff;
    --clr-white: #000000;
    --clr-light-1: #1C1A1E;
    --clr-light-2: #262527;
    --clr-light-3: #161419;
    --clr-light-4: #000000;
    --clr-light-5: #000000;
    --clr-blue-1: #678af9;
    --clr-blue-2: #678af9;
    --clr-blue-3: #3952a1;
    --filter-1: invert(1) brightness(1000);
}

body {
    line-height: 1.5;
    font-weight: 400;
    font-size: 18px;
    color: var(--clr-black);
    padding-top: 0px;
    background: var(--clr-white);
    font-family: rocgrotesk-regular;
    font-family: "Kumbh Sans", sans-serif;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

a {
    text-decoration: none;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

h1,
h2,
h3 {
    font-weight: 500;
    font-family: rocgrotesk-medium;
}

h1 {
    font-size: 64px;
    line-height: 1.2;
}

h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 8px;
}

h3 {
    font-size: 22px;
    line-height: 1.2;
}

.no-break {
    white-space: nowrap;
}

p:last-child {
    margin-bottom: 0px;
}

.cookie-popup-container a {
    color: var(--clr-black);
    text-decoration: underline;
}

.bg-white {
    background: var(--clr-white) !important;
}

.bg-black {
    background: var(--clr-black) !important;
}

.bg-light-1 {
    background: var(--clr-light-1);
}

.bg-light-2 {
    background: var(--clr-light-2);
}

.bg-light-3 {
    background: var(--clr-light-3);
}

.bg-light-4 {
    background: var(--clr-light-4);
}

.bg-light-5 {
    background: var(--clr-light-5);
}

.bg-blue-1 {
    background: var(--clr-blue-1);
}

.bg-blue-2 {
    background: var(--clr-blue-2);
}

.bg-blue-3 {
    background: var(--clr-blue-3);
}

.text-white {
    color: var(--clr-white) !important;
}

.text-black {
    color: var(--clr-black) !important;
}

.text-blue-1 {
    color: var(--clr-blue-1);
}

.text-blue-2 {
    color: var(--clr-blue-2);
}

.z-1 {
    position: relative;
    z-index: 1;
}

.tt-style-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--clr-black);
    font-size: 20px;
    color: #fff !important;
    cursor: pointer;
    z-index: 99999;
    border-radius: 6px;
    transition: all 0.2s;
}

.tt-style-switch .bi {
    color: var(--clr-black);
    z-index: 9999;
}

/*html.dark-mode .tt-style-switch{
    font-size:26px;
}*/

.mxd-nav__wrap.scrolled {
    background: var(--clr-white);
    box-shadow: 5px 3px 40px rgba(0, 0, 0, 0.2);
}

html.dark-mode .mxd-nav__wrap.scrolled {
    box-shadow: 5px 3px 40px rgba(255, 255, 255, 0.25);
}

.logo {
    width: 120px;
    position: relative;
    z-index: 1;
}

.mxd-nav__wrap {
    position: fixed;
    top: auto;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 100;
}

.menu-container {
    position: relative;
}

.mxd-nav__contain {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-between;
    -moz-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    min-height: 46px;
    padding: 18px 12px;
    z-index: 2;
    pointer-events: none
}

.mxd-nav__contain>* {
    pointer-events: auto
}

.logo-link {
    transition: .3s;
}

.logo-link.menu-is-visible {
    margin-top: 20px;
    margin-left: 10px;
    transition-delay: .7s;
}

@media only screen and (min-width: 768px) {
    .logo-link.menu-is-visible {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 768px) {
    .mxd-nav__contain {
        min-height: 56px;
        padding: 18px 0px;
    }
}

.nav_link_wrap {
    position: relative;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.nav_link_svg {
    display: block;
    width: 50px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
}

.mxd-nav__hamburger {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 46px;
    height: 46px;
}

@media only screen and (min-width: 768px) {
    .mxd-nav__hamburger {
        width: 56px;
        height: 56px;
    }
}

.hamburger__base {
    position: absolute;
    inset: 0;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background-color: #e9efff;
    z-index: 1
}

html.dark-mode .hamburger__base {
    background-color: #444444;
}

.nav_hamburger_bg {
    position: absolute;
    inset: 0;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--clr-black);
    z-index: 2
}

.hamburger__line {
    position: relative;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
    height: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: var(--clr-black);
    z-index: 2;
}

/*.mxd-nav__hamburger:hover .hamburger__line{
    background-color: var(--clr-blue-1);
}*/
.mxd-menu__wrapper {
    position: absolute;
    inset: 0 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    height: 100vh;
    z-index: 1;
    padding: 15px;
    display: none;
}

@media only screen and (min-width: 768px) {
    .mxd-menu__wrapper {
        padding: 20px 0px;
    }
}


.mxd-menu__base {
    position: absolute;
    inset: 0;
    width: 5000px;
    left: -2500px;
    height: 100%;
    z-index: 1;
    background: rgba(255, 255, 255, .5);
}

html.dark-mode .mxd-menu__base {
    background: rgba(0, 0, 0, .5);
}

.mxd-menu__contain {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: 100%
}

.mxd-menu__inner {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    justify-content: center;
    align-items: start;
    padding-top: 40px;
}

.mxd-menu__inner::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none !important;
    width: 0 !important;
    height: 0;
}

@media only screen and (min-width: 768px) {
    .mxd-menu__inner::-webkit-scrollbar {
        display: none;
        width: 0 !important;
    }
}

@media only screen and (min-width: 768px) {
    .mxd-menu__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        overflow: hidden;
        justify-content: space-between;
        align-items: center;
    }
}



.mxd-menu__left {
    width: 100%;
    height: auto;
    padding: 0 20px 0px 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: start;
}

@media only screen and (min-width: 768px) {
    .mxd-menu__left {
        width: 50%;
        height: auto;
        padding: 30px;
        overflow-y: scroll;
        overscroll-behavior-y: contain;
        scrollbar-width: none;
    }

    .mxd-menu__left::-webkit-scrollbar {
        display: none;
        -webkit-appearance: none !important;
        width: 0 !important;
        height: 0;
    }
}

@media only screen and (min-width:768px) and (max-width: 992px) {
    .mxd-menu__left {
        width: 55%;
    }
}

.mxd-menu__right {
    position: relative;
    z-index: 2;
    padding: 50px 50px 50px 0px;
    display: none;

}

@media only screen and (min-width: 768px) {
    .mxd-menu__right {
        display: flex;
        width: calc(50% - 80px);
        height: auto;
    }
}

@media only screen and (min-width:768px) and (max-width: 992px) {
    .mxd-menu__right {
        width: 45%;
    }
}


.mxd-menu__link {
    position: relative;
    z-index: 2;
    color: #adff2f;
    text-decoration: none;
    font-size: 40px;
}

.main-menu {
    position: relative;
    width: 100%;
}

.main-menu__accordion {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

@media only screen and (min-width: 768px) {
    .main-menu__accordion {
        gap: 20px;
    }
}

.main-menu__item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    color: var(--clr-black);
    outline: none !important;
}

.main-menu__item:focus-visible {
    outline: none !important;
}

.main-menu__item a {
    display: inline-block
}

.main-menu__item.open .main-menu__toggle svg {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.main-menu__link {
    height: 42px;
    line-height: 42px;
    font-size: 36px;
    color: var(--clr-black);
    outline: none !important;
    font-weight: 500;
    font-family: rocgrotesk-medium;
}

.main-menu__item:hover .main-menu__link {
    color: var(--clr-blue-1);
}

.main-menu__item:hover .main-menu__toggle svg {
    fill: var(--clr-blue-1);
}

.main-menu__item.active .main-menu__link {
    color: var(--clr-blue-1);
}

.main-menu__item.active .main-menu__toggle svg {
    fill: var(--clr-blue-1);
}

.main-menu__link:focus-visible {
    outline: none !important;
}

.main-menu__link .btn-caption {
    height: 42px;
    line-height: 42px;
}

@media only screen and (min-width: 768px) {
    .main-menu__link {
        font-size: 56px;
        height: 65px;
        line-height: 65px;
    }

    .main-menu__link .btn-caption {
        height: 65px;
        line-height: 65px;
    }
}

@media only screen and (min-width:768px) and (max-width: 992px) {
    .main-menu__link {
        font-size: 48px;
        height: 48px;
        line-height: 48px;
    }

    .main-menu__link .btn-caption {
        height: 48px;
        line-height: 48px;
    }
}

.main-menu__toggle {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    outline: none !important;
}

:focus-visible {
    outline: none !important;
}

.mxd-nav__wrap .btn {
    outline: none !important;
    border: none !important;
}

.main-menu__toggle:focus-visible {
    outline: none !important;
}

.main-menu__toggle img,
.main-menu__toggle svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 19px;
    height: 19px;
    margin-top: 10px;
    -webkit-transition: -webkit-transform .3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
    transition: -webkit-transform .3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
    -moz-transition: transform .3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform .3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
    transition: transform .3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
    transition: transform .3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform .3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform .3s cubic-bezier(0.23, 0.65, 0.74, 1.09)
}

.main-menu__toggle svg {
    fill: var(--clr-black);
}

.no-touch .main-menu__toggle:hover svg {
    fill: #ddf160;
}

@media only screen and (min-width: 768px) {

    .main-menu__toggle img,
    .main-menu__toggle svg {
        width: 23px;
        height: 23px
    }
}

.submenu {
    position: relative;
    padding-top: 20px;
    padding-left: 15px;
    display: none
}

@media only screen and (min-width: 768px) {
    .submenu {
        padding-left: 20px;
    }
}


.submenu__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-bottom: 12px
}

.submenu__item:last-of-type {
    margin-bottom: 0
}

.submenu__item a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
    font-size: 20px;
    line-height: 1.2;
    color: var(--clr-black);
    padding-left: 0
}

.no-touch .submenu__item a:hover {
    color: var(--clr-light-2);
    -webkit-transform: translateX(1rem);
    -moz-transform: translateX(1rem);
    -ms-transform: translateX(1rem);
    transform: translateX(1rem)
}

.submenu__item.active a {
    color: var(--clr-blue-1);
}

.submenu__item a:hover {
    color: var(--clr-blue-1);
}

@media only screen and (min-width: 1400px) {
    .submenu__item a {
        font-size: 25px;
    }
}

.menu-promo {
    position: relative;
}

@media only screen and (min-width: 768px) {
    .menu-promo {
        height: 100%;
    }
}



.menu-promo__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 21px;
}

@media only screen and (min-width: 768px) {
    .menu-promo__content {
        gap: 20px;
        width: 100%;
        ;
    }
}

.menu-promo__caption {
    color: var(--clr-black);
    margin-bottom: 0px;
}

@media only screen and (min-width: 768px) {
    .menu-promo__caption {
        max-width: 380px
    }
}



.menu-promo__video {
    position: relative;
    overflow: hidden
}

@media only screen and (min-width: 768px) {
    .menu-promo__video {
        width: 100%;
        height: auto;
        padding: 0px;
        -moz-border-radius: 18px;
        border-radius: 18px;
        background-color: #161616;
    }
}

.menu-video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -moz-border-radius: 18px;
    border-radius: 18px
}

@media only screen and (min-width: 768px) {
    .menu-video {
        -moz-border-radius: 12px;
        border-radius: 12px
    }
}


.c-image-1 {
    width: 100%;
    border-radius: 12px;
}

.hero {
    min-height: 100vh;
    background: var(--clr-light-1);
    padding-top: 132px;
    padding-bottom: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero * {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(../images/hero-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    filter: var(--filter-1);
    z-index: 0;
    opacity: .1;
}

html.dark-mode .hero::before {
    opacity: .2;
}

.hero .container {
    /* position: absolute;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    bottom: 20px;*/
}

.hero-content {
    position: relative;
    padding: 0px 0px 0px 28px;
}

.hero-content p {
    margin-bottom: 0px;
}

.hero-content * {
    position: relative;
    z-index: 1;
}

.hero-content:before {
    content: '';
    width: calc(100% - 60px);
    height: 100%;
    z-index: 0;
    position: absolute;
    left: 0px;
    top: -40px;
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-radius: 20px 0px 0px 0px;
}

.hero-content:after {
    content: '';
    width: 17px;
    height: 17px;
    z-index: 0;
    position: absolute;
    right: 60px;
    top: -48.5px;
    border-radius: 100%;
    background: var(--clr-blue-1);
}

.hero .vector {
    position: absolute;
    top: 20%;
    right: 0px;
    transform: translateX(-50%);
    animation: up-down2 2s linear infinite alternate;
}

.hero .vector path {
    fill: var(--clr-blue-1);
}

.hero .vector path:last-child {
    fill: var(--clr-black);
}

.sub-hero a.btn-scroll {
    display: none;
}

.sub-hero .hero-content:before {
    display: none;
}

.sub-hero .hero-content {
    padding: 0px 70px 0px 0px;
}

@keyframes up-down2 {
    0% {
        transform: translateY(35px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(35px);
    }
}

.hero-image {
    position: relative;
}

.hero-image * {
    position: relative;
    z-index: 1;
}

.hero-image-shape {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 330px;
    filter: var(--filter-1);
}

a.btn-scroll {
    padding: 5.3px 15px 4px;
    border-radius: 100px;
    background: var(--clr-light-1);
    border: 1px solid #cccccc;
    transform: rotate(90deg);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
    color: var(--clr-black);
    position: absolute;
    left: -51px;
    bottom: 37px;
    font-weight: 400;
    font-family: rocgrotesk-regular;
    text-decoration: none;
}

.btn-default {
    color: #ffffff;
    background-color: var(--clr-blue-1);
    padding: 16px 27px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    transition: all 0.6s;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    gap: 8px;
    text-decoration: none;
}

.btn-default-1 {
    background-color: var(--clr-black);
}

html.dark-mode .btn-default-1 {
    color: #000000;
}

.btn-default svg {
    fill: none;
    stroke: #ffffff;
    transition: all 0.6s;
}

html.dark-mode .btn-default-1 svg {
    stroke: #000000;
}

.btn-default span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 36px;
    background-color: var(--clr-black);
    transition: all 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
    top: 27px;
    left: 94.8333px;
}

.btn-default-1 span {
    background-color: var(--clr-blue-1);
}

html.dark-mode .btn-default:hover {
    color: #000000;
}

html.dark-mode .btn-default:hover svg {
    stroke: #000000;
}

.btn-default:hover span {
    width: 225%;
    height: 1000.5px;
}

html.dark-mode .btn-default-1:hover {
    color: #ffffff;
}

html.dark-mode .btn-default-1:hover svg {
    stroke: #ffffff;
}

.our-services {
    position: relative;
}

.service-item {
    padding: 200px 16px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    height:100%;
}

.service-icon {
    width: 100px;
    margin-bottom: 20px;
    /*filter: var(--filter-1);*/
}

.our-services .col-md-4 {
    border-left: 1px solid #cccccc;
}

.our-services .col-md-4:last-child {
    border-right: 1px solid #cccccc;
}

.our-services h2 {
    position: absolute;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    top: 80px;
    text-align: center;
}

.our-services .btn-default {
    margin-top: 10px;
}

.image-cover {
    height: 100%;
    position: relative;
    padding: 20px;
    min-height: 320px;
}

.image-cover img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 20px;
    align-items: end;
    position: relative;
}

.image-grid-1 {
    width: calc(50% - 20px);
    border-radius: 10px;
}

.image-grid-2 {
    width: calc(100% - 30%);
    margin-right: 30%;
    height: 200px;
    object-fit: cover;
    margin-left: 10%;
    border-radius: 10px;
}

.grid-box {
    background: var(--clr-blue-1);
    width: 50%;
    height: 150px;
    margin-bottom: -40px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-top: 5px solid var(--clr-black);
    border-radius: 10px;
}

.grid-box img {
    height: 100%;
    filter: invert(1) brightness(100);
    -webkit-animation: wcZoom 2s infinite linear;
    animation: wcZoom1 2s infinite linear;
}

/*Zoom*/
@keyframes wcZoom1 {
    0% {
        scale: 1.1;
    }

    50% {
        scale: 0.8;
    }

    100% {
        scale: 1.1;
    }
}

.image-grid-3 {
    width: 100px;
    position: absolute;
    right: 0px;
    bottom: 30px;
    filter: var(--filter-1);
    -webkit-animation: wcSpinner 10s infinite linear;
    animation: wcSpinner 10s infinite linear;
}

@keyframes wcSpinner {
    from {
        -webkit-transform: rotate(0turn);
        transform: rotate(0turn);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.home-2-p {
    font-size: 22px;
    font-family: rocgrotesk-regular;
    margin-bottom: 24px;
}

.border-div {
    border-left: 5px solid var(--clr-blue-1);
    padding-left: 20px;
}



.cta-inner {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 60px;
    position: relative;
}

.cta-inner * {
    position: relative;
    z-index: 1;
}

.cta-image {
    width: 40%;
    flex: 0 0 40%;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
}

.cta-shape-1 {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 0;
}

.cta-shape-2 {
    position: absolute;
    bottom: -100px;
    z-index: 0;
    right: 200px;
    width: 100px;
    animation: scale-1 2s linear infinite alternate;
    opacity: .5;
}

@keyframes scale-1 {
    0% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(.99);
    }

    100% {
        transform: scale(1.2);
    }
}

.shape-2 {
    position: absolute;
    top: 200px;
    z-index: 1;
    right: 100px;
    -webkit-animation: wcZoom 3s infinite linear;
    animation: wcZoom 3s infinite linear;
    filter: var(--filter-1);
}

/*Zoom*/
@keyframes wcZoom {
    0% {
        scale: 1;
    }

    50% {
        scale: 0.5;
    }

    100% {
        scale: 1;
    }
}

.shape-3 {
    position: absolute;
    top: 0px;
    z-index: 1;
    left: 20px;
    width: 100px;
    filter: var(--filter-1);
    -webkit-animation: up-down2 2s linear infinite alternate;
    animation: up-down2 2s linear infinite alternate;
}

.footer-cover {
    padding-bottom: 20px;
}

footer.main-footer {
    background: var(--clr-light-2);
    color: var(--clr-black);
    font-weight: 400;
    font-size: 16px;
    border-radius: 30px;
    margin: 0px 20px;
}

.footer {
    padding: 100px 12px 80px;
}

.copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--clr-black);
}

.copyright ul {
    display: flex;
    margin-left: auto;
    width: fit-content;
    gap: 22px;
}

footer p {
    color: var(--clr-black);
}

a.company-logo {
    width: fit-content;
    margin-bottom: 10px;
    display: block;
}

a.company-logo img {
    width: 120px;
}

.company-details {
    margin-top: 3px;
}

footer h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--clr-blue-1);
}

footer ul {
    margin: 0px;
    padding: 0px;
}

footer ul li {
    list-style-type: none;
}

footer ul li a {
    color: var(--clr-black);
    padding: 6px 0px;
    display: block;
    transition: .3s;
    text-decoration: none;
    width: fit-content;
    font-size: 16px;
}

footer ul li a.active {
    pointer-events: none !important;
    cursor: default !important;
    color: var(--clr-blue-1);
}

footer ul li a:hover {
    color: var(--clr-blue-1);
}

footer ul.legal-links li a {
    font-size: 15px;
    line-height: 1;
    padding-left: 15px;
    position: relative;
}

footer ul.legal-links li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--clr-black);
    position: absolute;
    left: 0px;
    top: 12px;
    border-radius: 100%;
}

footer ul.legal-links li a:hover::before {
    background: var(--clr-blue-1);
}

.copyright p {
    font-size: 15px;
}

.home-1-cover {
    position: relative;
}

.home-1 .arrow-1 {
    position: absolute;
    right: 50px;
    bottom: 0px;
    transform: rotate(10deg);
    filter: var(--filter-1);
}

.home-1:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../images/shape-4.png);
    background-size: 300px;
    background-position: bottom left;
    background-repeat: no-repeat;
}

.point {
    display: flex;
    align-items: start;
    justify-content: start;
    border: 1px solid var(--clr-black);
    padding: 20px 30px;
    border-radius: 20px;
    gap: 10px;
    height: 100%;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.point * {
    position: relative;
    z-index: 1;
}

.point::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    background-image: url(../images/bg-5.png);
    background-size: 100%;
    opacity: .1;
    background-repeat: no-repeat;
    filter: invert(0) brightness(0);
    background-position: 210px -90px;
    z-index: 0;
}

html.dark-mode .point::after {
    filter: initial;
    opacity: .2;
}

.point .point-title {
    font-weight: 500;
    white-space: nowrap;
}

.industry-item-row {
    gap: 40px;
}

.industry-item {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
    padding: 30px;
    background-size: cover;
    background-position: top center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding-top: 100px;
    border: 5px solid var(--clr-blue-1);
    border-radius: 10px;
    transition: .3s;
}

/*.industry-item:hover{
     border: 5px solid var(--clr-blue-1);
}*/
.industry-item * {
    position: relative;
    z-index: 1;
}

.industry-item:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    background: linear-gradient(0deg, #ffffff 8%, rgba(255, 255, 255, .2));
    z-index: 0;
    transition: .3s;
}

.industry-item:hover:after {
    background: linear-gradient(0deg, #cbd8ff 8%, rgba(255, 255, 255, .2));
}

html.dark-mode .industry-item:after {
    background: linear-gradient(0deg, #000000 8%, rgba(0, 0, 0, .2));
}

html.dark-mode .industry-item:hover:after {
    background: linear-gradient(0deg, var(--clr-blue-1) 8%, rgba(0, 0, 0, .2));
}

.industry-item-1 {
    background-image: url(../images/industry-item-1.jpg);
}

.industry-item-2 {
    background-image: url(../images/industry-item-2.jpg);
}

.industry-item-3 {
    background-image: url(../images/industry-item-3.jpg);
}

.industry-item-4 {
    background-image: url(../images/industry-item-4.jpg);
}

.step {
    width: 330px;
    background: var(--clr-light-2);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 15px;
    height: 330px;
    outline: 2px dotted var(--clr-blue-1);
    outline-offset: 10px;
    margin: 0 auto;
}

.step img.step-icon {
    width: 70px;
}

.step-arrow-1 {
    position: absolute;
    right: -35px;
    top: 30px;
    z-index: 0;
    width: 80px;
}

.step-arrow-2 {
    position: absolute;
    right: -35px;
    bottom: 30px;
    z-index: 0;
    width: 80px;
}

.it-faq-wrap .accordion-items {
    padding-left: 50px;
}

.it-faq-wrap .accordion-items:not(:last-child) {
    margin-bottom: 50px;
}

.it-faq-wrap {
    margin-left: 26px;
    position: relative;
}

.it-faq-wrap .accordion-header {
    margin-bottom: 0;
}

.it-faq-wrap .accordion-buttons {
    text-align: left;
    outline: none;
    border: none;
    background: transparent;
}

.it-faq-wrap .accordion-buttons i {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.18;
    font-style: normal;
    margin-bottom: 14px;
    display: inline-block;
    color: rgba(0, 0, 0, 0.6);
}

html.dark-mode .it-faq-wrap .accordion-buttons i {
    color: rgba(255, 255, 255, 0.6);
}

.it-faq-wrap .accordion-buttons span {
    font-size: 24px;
    font-weight: 500;
    display: block;
    color: var(--clr-blue-1);
}

.it-faq-wrap .accordion-body {
    padding: 0;
    padding: 16px 0px 0px 10px;
}

.it-faq-wrap::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.1);
}

html.dark-mode .it-faq-wrap::after {
    background-color: rgba(255, 255, 255, 0.1);
}

.it-faq-accordion .faq-active {
    position: relative;
}

.it-faq-accordion .faq-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    transition: 0.5s;
    background: var(--clr-blue-1);
    border-radius: 20px;
}

.ipm-1 {
    overflow: hidden;
}

.ipm-1::before {
    content: '';
    width: 30px;
    height: 30px;
    background: var(--clr-blue-1);
    position: absolute;
    left: 35%;
    bottom: 150px;
    border-radius: 100%;
    animation: up-down2 2s linear infinite alternate;
}

.ipm-1::after {
    content: '';
    width: 400px;
    height: 400px;
    background: var(--clr-blue-1);
    position: absolute;
    left: -14px;
    bottom: -250px;
    border-radius: 100%;
    animation: scale-1 4s linear infinite alternate;
    opacity: .3;
}

.ipm-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ipm-list-item {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 18px;
}

.ipm-list-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 3px dotted var(--clr-black);
    border-radius: 100%;
    margin-top: 5px;
    position: relative;
}

.ipm-list-icon:after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--clr-black);
    border-radius: 100%;
}

.ipm-5 .home-2-p {
    position: relative;
}

.ipm-5 .home-2-p div:first-child:before {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--clr-black);
    position: relative;
    left: 0px;
    top: -5px;
    display: inline-block;
    margin-right: 20px;
}

.ipm-6::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/circle-lines.png);
    background-size: cover;
    background-position: top center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .2;
    filter: var(--filter-1);
}

html.dark-mode .ipm-6::after {
    opacity: .75;
}

.cr-service-item {
    padding: 40px 0;
    padding-left: 30px;
    position: relative;
    border-left: 1px dashed rgba(0, 0, 0, 0.3);
    height: 100%;
}

html.dark-mode .cr-service-item {
    border-left: 1px dashed rgba(255, 255, 255, 0.3);
}

.cr-service-item::before {
    position: absolute;
    top: 45%;
    left: -1.2px;
    content: "";
    width: 2px;
    height: 30px;
    display: inline-block;
    /*background: linear-gradient(172deg, #926AFF 6.29%, #FF77B0 50.56%, #FEB267 92.25%);*/
    background: var(--clr-blue-1);
}

.cr-service-item-icon {
    margin-bottom: 30px;
}

.cr-service-item-icon span {
    width: 56px;
    height: 56px;
    display: grid;
    border-radius: 12px;
    place-content: center;
    text-align: center;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

html.dark-mode .cr-service-item-icon span {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cr-service-item-icon span img {
    width: 40px;
}

.cr-service-item h3 {
    /*color: var(--clr-blue-1);*/
}

.im-card-item {
    display: flex;
    align-items: stretch;
    justify-content: start;
    gap: 24px;
}

.im-card-icon {
    width: 20%;
    flex: 0 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--clr-blue-3);
    /*border:2px solid var(--clr-black);*/
}

.im-card-icon img {
    width: 80px;
    flex: 0 0 80px;
    filter: var(--filter-1);
}

.im-card-text {
    width: 80%;
    flex: 0 0 80%;
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 24px;
    flex-direction: column;
    background: var(--clr-blue-3);
    /*border:2px solid var(--clr-black);*/
}

.sub-title {
    color: var(--clr-blue-1);
    position: relative;
    padding-left: 42px;
    margin-bottom: 15px;
}

.sub-title::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--clr-black);
    position: absolute;
    left: 0px;
    top: 12px;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-light-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000001;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    --_c: no-repeat radial-gradient(farthest-side, var(--clr-blue-1) 92%, #0000);
    background:
        var(--_c) top,
        var(--_c) left,
        var(--_c) right,
        var(--_c) bottom;
    background-size: 12px 12px;
    animation: l7 1s infinite;
}

@keyframes l7 {
    to {
        transform: rotate(.5turn)
    }
}

.cm-card {
    background: var(--clr-light-4);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    position: relative;
}

.shape-6 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 80px;
    filter: invert(1);
    opacity: .2;
    /*transform: rotate(180deg);*/
}

html.dark-mode .shape-6 {
    filter: initial;
}

.cm-card-1 {
    border: 1px solid var(--clr-black);
    padding: 20px;
    position: relative;
}

.cm-card-1.cm-card-01 {
    border-left: 0px;
    border-bottom: 0px;
    border-radius: 0px 10px 10px 0px;
    padding-left: 0px;
}

.cm-card-1.cm-card-01::before {
    content: '';
    width: calc(100% - 20px);
    height: 50px;
    border-bottom: 1px solid var(--clr-black);
    position: absolute;
    bottom: -.8px;
    right: 0px;
    border-radius: 0px 0px 11px 0px;
}

.cm-card-1.cm-card-02 {
    border-right: 0px;
    border-bottom: 0px;
    border-radius: 10px 0px 0px 0px;
    border: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
}

.cm-card-1.cm-card-02::before {
    content: '';
    width: 20px;
    height: 100%;
    border-left: 1px solid var(--clr-black);
    position: absolute;
    top: .4px;
    left: 0px;
    border-radius: 9px 0px 0px 0px;
    border-top: 1px solid var(--clr-black);
}

.service-block .inner-box {
    position: relative;
    padding: 30px 30px 30px;
    background: #a9bdff;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    height: 100%;
}

html.dark-mode .service-block .inner-box {
    background: #182552;
}

.service-block .inner-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 0;
    background-color: var(--clr-blue-1);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box:after {
    content: "";
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: 40px;
    background: -webkit-gradient(linear, left top, right top, from(#f4f4f4), to(transparent));
    background: linear-gradient(to right, #f4f4f4, transparent);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

html.dark-mode .service-block .inner-box:after {
    background: linear-gradient(to right, #000000, transparent);
}

.service-block .inner-box .count {
    position: absolute;
    top: 42px;
    right: 60px;
    color: #6e709f;
    font-size: 36px;
}

html.dark-mode .service-block .inner-box .count {
    color: #8290bf;
}

.service-block .inner-box .icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    background: var(--clr-blue-3);
    border-radius: 50%;
    margin-bottom: 26px;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 13px;
    /*border:1px solid var(--clr-black);*/
}

.service-block .inner-box .icon img {
    width: 100%;
    filter: var(--filter-1);
}

.cm-box {
    padding: 30px;
    background: var(--clr-blue-3);
    height: 100%;
    border-radius: 20px;
}

.cm-box h2 {
    font-size: 36px;
}

#carousel2 {
    height: auto;
}

#carousel2 .carousel-inner {
    height: 100%;
    background-color: var(--clr-blue-3);
    padding: 50px;
}

#carousel2 .carousel-indicators {
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0px;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    justify-content: space-between;
}

#carousel2 .carousel-item {
    height: 100%;
}

#carousel2 .carousel-item img {
    width: 80px;
    display: block;
    margin-bottom: 15px;
    filter: var(--filter-1);
}

#carousel2 .carousel-control-next,
#carousel2 .carousel-control-prev {
    background-color: var(--clr-white);
    right: 0px;
    width: 40px;
    height: 40px;
    left: auto;
    top: 70px;
    border-radius: 100%;
    opacity: 1;
    border: 1px solid var(--clr-black);
    padding: 7px;
}

#carousel2 .carousel-control-next:hover,
#carousel2 .carousel-control-prev:hover {
    background-color: var(--clr-blue-3);
}

#carousel2 .carousel-control-next {
    right: 12px;
}

#carousel2 .carousel-control-prev {
    right: 72px;
}

#carousel2 .carousel-control-next img,
#carousel2 .carousel-control-prev img {
    width: 100%;
    filter: var(--filter-1);
}

#carousel2 .carousel-indicators [data-bs-target] {
    width: auto;
    height: 60px;
    border: 1px solid var(--clr-black);
    opacity: 1;
    color: var(--clr-black);
    background-color: transparent;
    box-sizing: border-box;
    text-indent: 0px;
    font-family: rocgrotesk-regular;
    line-height: 2.5;
}

#carousel2 .carousel-indicators [data-bs-target].active {
    background-color: var(--clr-blue-3);
}

.legal-pages h2 {
    margin-bottom: 6px;
    font-size: 32px;
}

.legal-pages p+ul {
    margin-top: -8px;
}

.legal-pages ul+p {
    margin-top: -15px;
}

.legal-pages ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-pages ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-pages stronge {
    font-weight: 500;
}

.legal-pages a {
    color: var(--red-1);
    text-decoration: none;
}


.legal-pages ul li::marker {
    left: 0px;
    position: absolute;
}

#contactForm {}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    border: 1.5px solid var(--clr-black) !important;
    color: var(--clr-black);
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    padding: 14px 10px 14px;
    background-color: var(--clr-white);
}

.recaptch-cover {
    border: 1.5px solid var(--clr-black) !important;
    padding: 0px;
    position: relative;
    background-color: var(--clr-white);
    border-radius: 5px;
}

.recaptch-cover .recaptch-cover-header {
    padding: 12px 12px 12px 20px;
    text-align: left;
    display: block;
    border-bottom: 1.5px solid var(--clr-black) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recaptch-cover .recaptch-cover-header button {
    background: transparent;
    color: var(--clr-black);
    border-color: var(--clr-blue-1);
    border-radius: 3px;
}

.recaptch-cover .recaptch-cover-header button:active {
    background: var(--clr-blue-3);
    color: var(--clr-black);
}

.recaptch-cover .recaptch-cover-header button:hover {
    background: var(--clr-blue-3);
    color: var(--clr-black);
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: var(--clr-white);
    border-color: blue;
    color: var(--clr-black);
}

.loading-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ffffff;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

#refreshCaptcha {
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, .5);
    opacity: 1;
    /* Firefox */
    font-family: rocgrotesk-regular;
}

.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(0, 0, 0, .5);
    font-family: rocgrotesk-regular;
}

html.dark-mode .form-control::placeholder {
    color: rgba(255, 255, 255, .5);
    opacity: 1;
    /* Firefox */
    font-family: rocgrotesk-regular;
}

html.dark-mode .form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(255, 255, 255, .5);
    font-family: rocgrotesk-regular;
}

.math-captcha {
    text-align: center;
}

.math-expression {
    font-family: "Kumbh Sans", sans-serif;
}

.answer-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.answer-option {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid var(--clr-blue-1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--clr-black);
}


.answer-option:hover {
    background: var(--clr-blue-3);
    color: var(--clr-black);
}


.answer-option.selected {
    background: var(--clr-blue-3);
    color: var(--clr-black);
    ;
    border: 1px solid var(--clr-blue-3);
}

.error {
    color: red;
    display: none;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submitBtn.btn-default {
    border: 0px;
}

.jconfirm.jconfirm-modern .jconfirm-box {
    background: var(--clr-white);
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
    color: var(--clr-black);
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default::before {
    display: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background: var(--clr-blue-1);
    color: #ffffff;
    padding: 15px 40px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #000000;
    color: #ffffff;
}

html.dark-mode .jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #ffffff;
    color: #ffffff;
}
.custom-hyphen{
        font-family: "Kumbh Sans", sans-serif;
}