@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

:root {
    --black: #000000;
    --black-1: #212121;
    --white: #ffffff;
    --white-1: #E1E8F0;
    --purple-1: #bb72db;
    --green-1: #1b96ab;
    --filter-1: invert(1) brightness(1000);
}

body {
    color: var(--white);
    background-color: black;
    font-family: "Sora", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-purple-1 {
    color: var(--purple-1) !important;
}

.text-green-1 {
    color: var(--green-1) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-white-1 {
    background-color: var(--white-1) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-black-1 {
    background-color: var(--black-1) !important;
}

.bg-purple-1 {
    background-color: var(--purple-1) !important;
}

.bg-green-1 {
    background-color: var(--green-1) !important;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.image-cover {
    height: 100%;
    position: relative;
    padding: 20px;
    min-height: 300px;
}

.image-cover img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

h1,
h2,
h3 {
    font-family: "Sora", sans-serif;
    font-weight: 500;
}

h1 {
    font-size: 60px;
    font-weight: 600;
    color: #2fcbe6;
}

h1 span {
    font-size: 50px;
    color: #ffffff;
}

h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

h3 {
    font-size: 22px;
}



p:last-child {
    margin-bottom: 0px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background-color: transparent;
    padding: 16px 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: .3s;
}

.header.scrolled {
    background-color: #ffffff;
    background: linear-gradient(34deg, #222222 0%, #bb72db 49.5%, #1b96ab 100%);
}

.logo {
    width: 200px;
    height: auto;
}

.hamburger-btn {
    background-color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1.5px solid #ffffff;
}

.hamburger-btn:hover {
    border: 1.5px solid #2fcbe6;
}

.hamburger-btn svg {
    transition: all 0.5s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.hamburger-btn:hover svg {
    transform: rotate(180deg);
}

.hamburger-btn:hover svg path {
    fill: #2fcbe6;
}

.close-btn {
    background-color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1.5px solid #2fcbe6;
}

.close-btn svg path {
    stroke: #2fcbe6;
}

.close-btn:hover,
.close-btn:focus {
    transform: scale(1);
}

/* Fullscreen Menu Styles */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    color: var(--white);
    z-index: 1020;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow-y: auto;
    z-index: 1031;
}

.fullscreen-menu.active {
    transform: translateY(0);
}

.menu-content .container {
    display: flex;
    align-items:stretch;
    justify-content: space-between;
    height:auto;
    gap: 40px;
}

.menu-content .container .menu-right {
    width: 35%;
}

.menu-content .container .menu-left {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 65%;
    align-items: start;
    gap: 40px;
}

.menu-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

a.menu-link {
    font-size: 20px !important;
    background-color: red;
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(180deg, rgb(45, 45, 45) 0%, rgb(0, 0, 0) 100%);
    gap: 32px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    position: relative;
}

a.menu-link * {
    position: relative;
    z-index: 1;
}

a.menu-link .menu-icon {
    width: 42px;
    height: 42px;
    background: #bb72db;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.55, 0.085, 0, 0.99);
    padding: 6px;
}

a.menu-link .menu-icon img {
    width: 100%;
}

a.menu-link::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #bb72db;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s cubic-bezier(0.55, 0.085, 0, 0.99);
}

a.menu-link:hover::after,
a.menu-link.active::after {
    transform: scaleY(1);
}

a.menu-link:hover .menu-icon,
a.menu-link.active .menu-icon {
    background: #000000;
}

.menu-contact {
    border-radius: 10px;
    padding: 20px 30px 10px;
    background: linear-gradient(180deg, rgb(45, 45, 45) 0%, rgb(0, 0, 0) 100%);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-arrow-cover {
    position: relative;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-left: auto;
    width: fit-content;
    gap: 16px;
}

.contact-arrow {
    transform: rotate(-23deg);
    margin-top: 20px;
}

.contact-icon {
    width: 50px;
    animation: zoom-in-out 1s linear infinite;
}

@keyframes zoom-in-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(.75);
    }

    100% {
        transform: scale(1);
    }
}

.menu-header {
    padding: 1rem 12px;
    color: #000;
    width: 100%;
    position: relative;
    z-index: 1;
}

.menu-header::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0%;
    height: 0px;
    border-bottom: 1px solid #2fcbe6;
    opacity: .5;
}

.menu-header::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 0%;
    height: 0px;
    border-bottom: 1px solid #2fcbe6;
    opacity: .5;
}

.fullscreen-menu.active .menu-header::before {
    width: 50%;
    transition: .3s;
    transition-delay: .4s;
}

.fullscreen-menu.active .menu-header::after {
    width: 50%;
    transition: .3s;
    transition-delay: .4s;
}

.menu-content {
    flex: 1;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
    height: calc(100% - 86.22px);
}

/* Focus management */
.fullscreen-menu:focus {
    outline: none;
}

.btn-default {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    border-radius: 60px;
    padding: 7px 7px 7px 14px;
    color: #ffffff;
    border: 1px solid transparent;
    background-color: #bb72db;
    text-transform: capitalize;
    overflow: hidden;
    z-index: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 300ms ease;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.btn-default:hover {
    border: 1px solid rgba(248, 248, 248, 0.2);
    background: rgba(248, 248, 248, 0.2);
}

.btn-default:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 100%;
    content: "";
    border-radius: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    background-color: #222222;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.btn-default:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.btn-default .btn-title {
    position: relative;
    display: flex;
    align-items: center;
}

.btn-default .dot-box {
    background-color: #222222;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    margin-left: 5px;
    text-align: center;
    position: relative;
    width: 40px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-default:hover .dot-box {
    background: #bb72db;
}

.btn-default .dot-box .dot-item {
    background-color: #fff;
    border-radius: 50%;
    height: 5px;
    width: 5px;
    display: inline-block;
    position: absolute;
    left: calc(50% + 3px);
    top: calc(50% - 2.5px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-default:hover .dot-box .dot-item {
    left: calc(50% - 7px);
    top: calc(50% - 2.5px);
    /*background: #333;*/
}

.btn-default .dot-box .dot-item:before {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: -7px;
    top: -7px;
    height: 5px;
    width: 5px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-default:hover .dot-box .dot-item:before {
    left: 7px;
    top: 7px;
    /*background: #333;*/
}

.btn-default .dot-box .dot-item:after {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: -7px;
    bottom: -7px;
    height: 5px;
    width: 5px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-default:hover .dot-box .dot-item:after {
    left: 7px;
    bottom: 7px;
    /*background: #333;*/
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 63.55px;
    min-height: 60vh;
    text-align: center;
}

.hero h1 {
    color: #ffffff;
    font-size: 60px;
}

.sub-hero h1 {
    font-size: 50px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.main-hero {
    padding-top: 0px;
    padding-bottom: 0px;
    min-height: 100vh;
    background-image: url(../images/hero-1.jpg);
    background-position: center center;
}

.main-hero h1 {
    color: #2fcbe6;
}


.hero-2 {
    background-image: url(../images/hero-2.jpg);
}

.hero-3 {
    background-image: url(../images/hero-3.jpg);
}

.hero-4 {
    background-image: url(../images/hero-4.jpg);
    background-position: top center;
}

.hero-5 {
    background-image: url(../images/hero-5.jpg);
}

.hero-6 {
    background-image: url(../images/hero-6.jpg);
}

.hero-7 {
    background-image: url(../images/hero-7.jpg);
    background-position: top center;
}

.hero-8 {
    background-image: url(../images/hero-8.jpg);
}

.hero-9 {
    background-image: url(../images/hero-9.jpg);
}

.hero-10 {
    background-image: url(../images/hero-10.jpg);
}

.hero::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000000;
    background: linear-gradient(0deg, rgba(10, 22, 94, 0.85) 60%, rgba(43, 77, 255, 0.85) 100%);
    background: linear-gradient(0deg, rgba(10, 22, 94, 0.85) 60%, rgba(187, 114, 219, 0.85) 100%);
    z-index: 0;
    opacity: .75;
}

.about-card {
    background-image: url(../images/about-card.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    height: 100%;
}

.about-card-inner {
    background: black;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.about-card-inner img {
    border-radius: 12px;
}

.about-text {
    background: var(--green-1);
    width: 220px;
    border-radius: 12px;
    padding: 15px;
    position: absolute;
    left: -100px;
    bottom: -50px;
    box-shadow: rgba(255, 255, 255, 0.15) 0px 4px 16px,
        rgba(255, 255, 255, 0.2) 0px 8px 32px;
    animation-name: animation-1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.about-arrow {
    transform: scaleX(-1);
}

.sub-title {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
    width: fit-content;
    white-space: nowrap;
}

.sub-title-center {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.sub-title img {
    width: 20px;
}

.sub-title p {
    margin-bottom: 0px;
}

.sub-title:after {
    content: '';
    max-width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgb(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.4;
    flex: 0 0 auto;
    width: 100%;
}

.sub-title-center::before {
    content: '';
    max-width: 150px;
    height: 2px;
    background: linear-gradient(-90deg, rgb(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.4;
    flex: 0 0 auto;
    width: 100%;
}


@keyframes animation-1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(30px);
    }
}



.our-services .inner-box {
    background-color: transparent;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    height: 100%;
}

.our-services .inner-box:after {
    background: #000000;
    border-radius: 30px;
    content: "";
    position: absolute;
    right: 1px;
    bottom: 1px;
    left: 1px;
    top: 1px;
    z-index: -1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.our-services .inner-box:before {
    background: linear-gradient(289.05deg, var(--purple-1) 16.47%, var(--green-1) 76.33%);
    border-radius: 30px;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.our-services .inner-box .content-box {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.our-services .inner-box .content-box .title-box {
    position: relative;
    margin-bottom: 13px;
}

/*.our-services .inner-box .content-box .title-box .number {
    font-size: 50px;
    font-weight: 600;
    color: rgba(255, 255, 255, .2);
    line-height: 1;
    margin-bottom: 15px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}*/

.our-services .inner-box .content-box .title {
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 22px;
    font-weight: 400;
}

.our-services .inner-box .content-box .title a {
    color: #ffffff;
}

.our-services .inner-box .content-box .title:before {
    color: var(--theme-color1);
    position: absolute;
    content: attr(data-text);
    top: -35px;
    left: 0;
    width: 0;
    overflow: hidden;
    padding-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100% + 34px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    pointer-events: none;
}

.our-services .inner-box .content-box  .icon-box {
   position: absolute;
    right: 20px;
    bottom: 20px;
    line-height: 1;
    width: 75px;
}

.our-services .inner-box .content-box .icon-box .icon {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    filter: var(--filter-1);
}

.our-services .inner-box .content-box .text {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 20px;
}

.our-services .inner-box:hover:after {
    background: var(--green-1);
}

.bg-1 {
    background-image: url(../images/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.c-card {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    background-color: var(--black);
    padding: 15px;
    gap: 12px;
    height: 100%;
}

.card-icon {
    width: 70px;
    padding: 10px;
    flex: 0 0 70px;
}

.home-3 .c-card {
    background-color: transparent;
    background: linear-gradient(180deg, #1b96ab8c 0%, rgb(0 0 0 / 7%) 100%);
    border-radius: 10px;
}

.home-3 .c-card .card-icon {
    margin-left: auto;
    margin-right: auto;
    width: 50px;
    flex: 0 0 50px;
    padding: 0px;
}

.card-icon img {
    width: 100%;
}

.ntfh-3 .c-card {
    background-color: var(--purple-1);
    border-top: 8px solid #ffffff;
    border-radius: 15px;
}

.ntfh-3 .c-card .card-icon {
    margin-left: auto;
    margin-right: auto;
    background-color: black;
    border-radius: 100%;
}

.cta-section {
    background-image: url(../images/cta-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cfs-3 {
    background: linear-gradient(34deg, #000000 10%, #bb72db 49.5%, #1b96ab 100%);
    border-radius: 15px;
}

.cfs-3 .c-card {
    padding: 0px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: transparent;
    align-items:start;
}

.cfs-3 .c-card * {
    position: relative;
    z-index: 1;
    color: black;
}

.cfs-3 .c-card h3 {
    font-size: 20px;
}

.cfs-3 .c-card::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    background: url(../images/featured-bg.png);
    z-index: 0;
    background-position: center;
    background-size: cover;
}

.cfs-3 .c-card .card-icon {
    padding: 0px;
}

.c-card-header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding: 24px 24px 15px 24px;
    padding: 24px 18px 15px 18px;
    width:100%;
}

.cfs-3 .c-card .card-content {
    padding: 0px 24px 24px;
}

.cfs-4 .c-card {
    flex-direction: row;
    padding: 0px;
    gap: 30px;
    height: auto;
    margin-bottom: 50px;
    position: relative;
    align-items: start;
}

.cfs-4 .c-card:last-child {
    margin-bottom: 0px;
}

.cfs-4 .c-card .card-icon {
    background: linear-gradient(34deg, #000000 10%, #bb72db 49.5%, #1b96ab 100%);
    border-radius: 100%;
    width: 50px;
    padding: 7px;
    flex: 0 0 50px;
}

.cfs-4 .c-card::before {
    content: '';
    width: 3px;
    height: 80px;
    background: linear-gradient(-180deg, rgb(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.4;
    flex: 0 0 auto;
    position: absolute;
    top: 60px;
    left: 23px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 16px;
}

.check-list-icon {
    width: 18px;
    flex: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.check-list-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: var(--filter-1);
}

.cdms-card {
    background-color: var(--purple-1);
    border-radius: 12px;
    height: 100%;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.cdms-card * {
    position: relative;
    z-index: 1;
}

.cdms-card::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/card-bg-1.jpg);
    background-size: cover;
    position: absolute;
    inset: 0px;
    z-index: 0;
    opacity: .5;
}

.cdms-card-1 {
    background: var(--green-1);
    border-radius: 2px 10px 10px 10px;
    padding: 30px;
    position: relative;
}

.cdms-card-1::after {
    content: "";
    width: 30px;
    height: 25px;
    background: var(--green-1);
    position: absolute;
    left: -29px;
    top: 0;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.cdms-3 .c-card {
    position: relative;
    background-color: var(--black-1);
    border-top: 12px solid var(--purple-1);
    padding: 30px 50px 30px;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, .3);
}

.cdms-3 .c-card h3 {
    margin-left: 100px;
}

.cdms-3 .c-card p {
    margin-top: 30px;
}

.cdms-3 .c-card * {
    position: relative;
    z-index: 1;
}

.cdms-3 .card-icon {
    width: 100px;
    flex: 0 0 100px;
    position: absolute;
    left: 55px;
    top: -50px;
}

.cdms-3 .card-icon img {
    background: var(--green-1);
    border-radius: 100%;
    border: 5px solid var(--black-1);
    box-shadow: 0 10px 60px rgba(255, 255, 255, 0.2);
    padding: 12px;
}

.cdms-3 .card-icon * {
    position: relative;
    z-index: 1;
}

.cdms-3 .card-icon:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
    background-color: var(--purple-1);
    border-radius: 100px 100px 0 0;
    content: "";
    z-index: 0;
}


.cdms-3 .c-card:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 80px;
    background-color: var(--black);
    border-radius: 0 0 500px 0;
    content: "";
}

.cfs-4.cdms-4 .c-card {
    background: transparent;
}

.cfs-4.cdms-4 .c-card .card-icon {
    background: transparent;
    border: 2px solid var(--green-1);
}

.cfs-4.cdms-4 .c-card::before {
    background: var(--green-1);
    opacity: 1;
    top: 50px;
    height: 100%;
    width: 2px;
}

.cfs-4.cdms-4 .c-card:hover::before {
    background: var(--purple-1);
}

.cfs-4.cdms-4 .c-card:hover .card-icon {
    border: 2px solid var(--purple-1);
}

.cfs-4.cdms-4 .c-card:last-child:before {
    display: none;
}

.long-arrow-1 {
    position: absolute;
    right: -150px;
    top: 18px;
    opacity: .75;
}

.cdms-card.rms-card {
    background: linear-gradient(289.05deg, var(--purple-1) 16.47%, var(--green-1) 76.33%);
    padding: 100px 12px;
    border-radius: 12px 12px 0px 0px;
}

.cdms-card.rms-card::before {
    background-position: bottom center;
}

.rms-6 .cdms-card-1 {
    background: var(--purple-1);
}

.rms-6 .cdms-card-1::after {
    background: var(--purple-1);
}

.rms-3 .c-card {
    flex-direction: row;
    padding: 0px;
    height: auto;
    margin-bottom: 40px;
    gap: 40px;
    background: transparent;
    align-items: start;
}

.rms-3 .c-card:last-child {
    margin-bottom: 0px;
}

.rms-3 .card-icon {
    height: 70px;
    background: #ffffff4f;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px;
}

.rms-3 .card-icon * {
    position: relative;
    z-index: 1;
}

.rms-3 .card-icon img {
    margin-top: 16px;
    margin-left: 18px;
}

.rms-3 .card-icon::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 8px;
    top: 8px;
    background: var(--purple-1);
    border-radius: 5px 30px 5px 5px;
}

.rms-3 .bg-3 {
    position: absolute;
    right: 0px;
    top: 30px;
    width: 100%;
}

.cfs-4 .bg-4 {
    position: absolute;
    right: 0px;
    top: 30px;
    width: 100%;
}

.rms-4 .c-card {
    text-align: center;
    padding: 18px 20px 24px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.rms-4 .c-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 9px;
    color: var(--purple-1);
}

.rms-4 .c-card * {
    position: relative;
    z-index: 1;
}

.rms-4 .c-card .card-icon {
    padding: 0px;
    width: 60px;
    flex: 0 0 60px;
    margin-left: auto;
    margin-right: auto;
}


.rms-4 .c-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--green-1);
    z-index: 0;

    clip-path: polygon(0% 25%, 10% 22%, 22% 24%, 35% 32%, 50% 30%,
        65% 32%, 78% 24%, 90% 22%, 100% 25%,
        100% 0%, 0% 0%);
    top: -20px;
}

.rms-4 .c-card .card-content {
    padding-top: 20px;
}

.fcs-5 {
    background-image: url(../images/bg-7.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fcs-6 {
    background-image: url(../images/bg-5.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fcs-6-card {
    background: var(--purple-1);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
}

.fcs-6-card-2 {
    background: var(--green-1);
}

.fcs-3 .c-card {
    padding: 25px 20px 30px;
    border-radius: 20px;
    background-size: contain;
    background-position: right bottom;
    background-image: linear-gradient(90deg, rgba(20, 20, 20, .75) 0%, rgba(67, 67, 67, .75) 100%), url(../images/bg-shape-1.svg);
    border: 1px solid var(--green-1);
    align-items: start;
}


.fcs-3 .c-card .card-icon {
    padding: 0px;
    width: 50px;
    flex: 0 0 50px;
}

.fcs-3 .c-card h3 {
    font-size: 18px;
    color: var(--green-1);
}

.border-r-1 {
    border-radius: 20px;
}

.fcs-4 {
    background-image: url(../images/bg-9.png);
    background-position: 0px 237%;
    background-size: 300px;
    background-repeat: no-repeat;
}

.fcs-4 .c-card {
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    height: auto;
}

.fcs-4 .c-card .card-icon {
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--purple-1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.fcs-4 .pulse {
    width: 20px;
    height: 20px;
    background: var(--purple-1);
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 100%;
    display: none;
}

.fcs-4 .pulse::before,
.fcs-4 .pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--purple-1);
    z-index: 0;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    -webkit-animation-name: ripple2;
    animation-name: ripple2;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function:
        ease-in-out;
    animation-timing-function:
        ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.fcs-4 .pulse::after {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@keyframes ripple2 {
    0% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 1
    }

    50% {
        opacity: 0.40
    }

    100% {
        -webkit-transform: scale(1.9);
        transform: scale(1.9);
        opacity: 0
    }
}



.process-line {
    max-width: 100%;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    /* left: 0px; */
    position: absolute;
    left: 0px;
    right: 0px;
    display: none;
}

/*.contact-section{
    background: linear-gradient(289.05deg, var(--purple-1) 16.47%, var(--green-1) 76.33%);
}*/

#contactForm {}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    border: 1.5px solid var(--purple-1) !important;
    color: var(--white);
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    padding: 14px 10px 14px;
    background-color: transparent;
}

.recaptch-cover {
    border: 1.5px solid var(--purple-1) !important;
    padding: 0px;
    position: relative;
    background-color: transparent;
    border-radius: 5px;
}

.recaptch-cover .recaptch-cover-header {
    padding: 12px 12px 12px 20px;
    text-align: left;
    display: block;
    border-bottom: 1.5px solid var(--purple-1) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recaptch-cover .recaptch-cover-header button {
    background: transparent;
    color: var(--white);
    border-color: var(--purple-1);
    border-radius: 3px;
}

.recaptch-cover .recaptch-cover-header button:active {
    border-color: var(--green-1);
}

.recaptch-cover .recaptch-cover-header button:hover {
    border-color: var(--green-1);
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border-color: blue;
    color: var(--white);
    border: 1.5px solid var(--green-1) !important;
}

.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(255, 255, 255, .7);
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(255, 255, 255, .7);
}


.math-captcha {
    text-align: center;
}

.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(--purple-1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--white);
}


.answer-option:hover {
    background: var(--purple-1);
    color: var(--white);
}


.answer-option.selected {
    background: var(--green-1);
    color: var(--white);
    ;
    border: 1px solid var(--green-1);
}

.error {
    color: red;
    display: none;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submitBtn.btn-default {}

.jconfirm.jconfirm-modern .jconfirm-box {
    background: var(--white);
}


.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default::before {
    display: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background: var(--purple-1);
    color: #ffffff;
    padding: 15px 40px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #000000;
    color: #ffffff;
}

.legal-pages h2 {
    margin-bottom: 12px;
    font-size: 32px;
}

.legal-pages p+ul {
    margin-top: -8px;
}

.legal-pages ul+p {
    margin-top: -15px;
    margin-bottom: 20px;
}

.legal-pages ul {
    margin-bottom: 26px;
    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;
}


footer.main-footer {
    background: black;
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
    background-image: url(../images/footer-bg.png);
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
}

.footer {
    padding: 80px 12px;
}

.copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, .3);

}

.copyright ul {
    display: flex;
    margin-left: auto;
    width: fit-content;
    gap: 15px;
}

footer p {
    color: #ffffff;
}

a.company-logo {
    width: fit-content;
    margin-bottom: 13px;
    display: block;
}

a.company-logo img {
    width: 200px;
}

.company-details {
    margin-top: 3px;
}

footer h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--purple-1);
}

footer ul {
    margin: 0px;
    padding: 0px;
}

footer ul li {
    list-style-type: none;
}

footer ul li a {
    color: #ffffff;
    padding: 6px 0px;
    display: block;
    transition: .3s;
    text-decoration: none;
    width: fit-content;
    position: relative;
    padding-left: 55px;
}

footer ul li a::before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #ffffff;
    position: absolute;
    left: 0px;
    top: 50%;
    border-radius: 100%;
    opacity: .75;
    transform: translateY(-50%);

}

footer ul li a::after {
    content: '';
    width: 30px;
    height: 0px;
    border-bottom: 1px solid #ffffff;
    position: absolute;
    left: 15px;
    top: 50%;
    border-radius: 100%;
    opacity: .75;
    transform: translateY(-50%);

}

footer ul li a.active {
    pointer-events: none !important;
    cursor: default !important;
    color: var(--purple-1);
}

footer ul li a:hover {
    color: var(--purple-1);
}

footer ul li a.active::before {
    background-color: var(--purple-1);
    opacity: 1;
}

footer ul li a.active::after {
    border-bottom: 1px solid var(--purple-1);
    opacity: 1;
}

footer ul li a:hover::before {
    background-color: var(--purple-1);
    opacity: 1;
}

footer ul li a:hover::after {
    border-bottom: 1px solid var(--purple-1);
    opacity: 1;
}

.copyright-cover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000001;
}

.loader {
    width: 70px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(289.05deg, var(--purple-1) 26.47%, var(--green-1) 86.33%);
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}