/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea,
label {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

button,
input,
textarea,
select {
    outline: none !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
}

/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black: #000000;
    --main-gradient: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(69, 41, 108, 1) 76%);
    --figtree-bold: "Figtree-Bold";
    --figtree-medium: "Figtree-Medium";
    --figtree-regular: "Figtree-regular";
    --poppins-regular: "Poppins-Regular";
    --griffiths: "Griffiths";
    --optima_bold: "OPTIMA_BOLD";
}

/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Figtree-Bold";
    src: url("../webfonts/Figtree-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Figtree-Medium";
    src: url("../webfonts/Figtree-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Figtree-Regular";
    src: url("../webfonts/Figtree-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Poppins-Regular";
    src: url("../webfonts/Poppins-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Griffiths";
    src: url("../webfonts/Griffiths.otf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "OPTIMA_BOLD";
    src: url("../webfonts/OPTIMA_BOLD.TTF");
    font-weight: regular;
    font-style: normal;
}

/* FONT_CSS_END_HERE */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background: var(--white);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--black);
}

/* SCROLL-CSS */

/* LOADER-CSS */
/* LOADER-CSS */

/* COMMON-CSS */

.common_outline_btn {
    font-size: 22px;
    color: var(--white);
    font-family: var(--griffiths);
    background-color: #1d132ac7;
    padding: 5px 25px 5px 20px;
    border-radius: 20px;
    box-shadow: inset 0px 0px 10px 2px #5a3883;
    backdrop-filter: blur(10px);
}

.common_outline_btn span {
    font-family: var(--figtree-medium);
}

.common_outline_btn:hover {
    color: var(--white);
}

/* COMMON-CSS */

/* HEADER-CSS */

.header_wrapper {
    position: sticky;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 999999;
    padding: 25px 0px;
    background-color: #000000a3;
    backdrop-filter: blur(10px);
}

.header_wrap_logo img {
    width: 100%;
    height: 100%;
}

.header_wrap_f {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_wrap_links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header_wrap_links ul {
    display: flex;
    align-items: center;
    gap: 70px;
}

.header_wrap_links ul li a {
    font-size: 22px;
    color: var(--white);
    font-family: var(--optima_bold);
}

/* HEADER-CSS */

/* INDEX-CSS */

.banner_wrapper {
    padding: 200px 0px 100px 0px;
    position: relative;
    z-index: 99;
}

.banner_text_wrap {
    text-align: center;
    position: relative;
    z-index: 4;
}

.banner_text_wrap h6 {
    font-size: 80px;
    color: var(--white);
    font-family: var(--figtree-bold);
    line-height: 1;
}

.banner_text_wrap h6 span {
    font-family: var(--griffiths);
    background: var(--main-gradient);
    background-clip: text;
    color: transparent;
    font-size: 100px;
    padding: 0px 20px 0px 0px;
}

.banner_text_wrap_btn a {
    padding: 10px 45px 10px 40px;
    font-size: 35px;
    border-radius: 25px;
}

.banner_bg {
    position: absolute;
    left: 0px;
    top: -110px;
    z-index: -1;
    width: 100%;
}

.banner_bg img {
    width: 100%;
}

.index_first_wrapper {
    padding: 150px 0px 100px 0px;
    position: relative;
    z-index: 999;
}

.index_first_cr_box {
    text-align: center;
    position: relative;
}

.index_first_cr_box h6 {
    font-size: 135px;
    color: var(--white);
    font-family: var(--figtree-bold);
    line-height: 1;
}

.index_first_cr_box h5 {
    font-size: 70px;
    color: var(--white);
    font-family: var(--griffiths);
}

.first_cr_margin {
    margin: 0px 0px 150px 0px;
}

.index_second_wrapper {
    padding: 100px 0px;
    position: relative;
    z-index: 3;
}

.index_second_text_wrap {
    text-align: center;
}

.index_second_text_wrap h6 {
    font-size: 100px;
    color: #cba7f7;
    font-family: var(--figtree-medium);
    line-height: 1;
    transform: translate(0px, 50px);
}

.index_second_text_wrap h6 span {
    font-family: var(--griffiths);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, #cba7f7 76%);
    background-clip: text;
    color: transparent;
    font-size: 180px;
    transform: translate(0px, 50px);
    padding: 0px 20px 0px 0px;
}

.index_second_text_wrap h5 {
    font-size: 100px;
    font-family: var(--figtree-medium);
    line-height: 1;
    background: linear-gradient(177deg, #ccb6eb 0%, #6c3eb3 76%);
    background-clip: text;
    color: transparent;
    margin: 0px 0px 20px 0px;
}

.index_second_text_wrap h5 span {
    font-size: 210px;
    font-family: var(--griffiths);
}

.index_second_text_wrap p {
    font-size: 60px;
    color: var(--white);
    font-family: var(--figtree-regular);
    line-height: 70px;
}

.index_second_cr_box {
    padding: 45px 40px 60px 40px;
    border-radius: 60px;
    background-color: #1d132a8a;
    box-shadow: inset 0px 0px 10px 2px #ffffff2b;
}

.index_second_cr_box h6 {
    font-size: 55px;
    color: var(--white);
    font-family: var(--figtree-medium);
    line-height: 1;
    margin: 0px 0px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index_second_cr_box h6 span {
    font-family: var(--figtree-regular);
    font-size: 18px;
    color: var(--black);
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
}

.index_second_cr_box h5 {
    font-size: 80px;
    color: var(--white);
    font-family: var(--griffiths);
    line-height: 1;
    margin: 0px 0px 15px 0px;
}

.index_second_cr_box h5 span {
    font-size: 20px;
    font-family: var(--figtree-medium);
}

.index_second_cr_box ul {
    padding: 0px 0px 0px 10px;
    margin: 0px 0px 50px 0px;
    height: 190px;
    overflow-y: scroll;
}

.index_second_cr_box ul::-webkit-scrollbar {
    width: 3px;
}

.index_second_cr_box ul::-webkit-scrollbar-track {
    background: transparent;
}

.index_second_cr_box ul::-webkit-scrollbar-thumb {
    background-color: var(--white);
}

.index_second_cr_box ul li {
    font-size: 20px;
    color: var(--white);
    font-family: var(--figtree-regular);
}

.index_second_cr_box ul li i {
    margin: 0px 10px 0px 0px;
}

.index_second_cr_box p {
    font-size: 20px;
    color: var(--white);
    font-family: var(--figtree-regular);
    margin: 0px 0px 25px 0px;
}

.index_second_text_wrap {
    margin: 0px 0px 60px 0px;
    position: relative;
    z-index: 3;
}

.index_third_wrapper {
    padding: 50px 0px;
    position: relative;
    z-index: 3;
}

.index_third_text_wrap {
    text-align: center;
    position: relative;
    z-index: 3;
    margin: 0px 0px 190px 0px;
}

.index_third_text_wrap h6 {
    font-size: 100px;
    color: var(--white);
    font-family: var(--figtree-medium);
}

.index_third_text_wrap h6 span {
    font-family: var(--griffiths);
    font-size: 170px;
    padding: 0px 100px 0px 0px;
}

.index_third_text_wrap h5 {
    font-size: 500px;
    font-family: var(--griffiths);
    background: var(--main-gradient);
    background-clip: text;
    color: transparent;
    line-height: 1;
    position: absolute;
    left: -110px;
    bottom: -280px;
    right: 0px;
    z-index: -1;
}

.index_third_img {
    text-align: center;
}

.index_third_img_wrap {
    position: relative;
    z-index: 999;
    margin: 0px 0px 60px 0px;
}

.index_third_float_text ul li {
    font-size: 50px;
    color: var(--white);
    font-family: var(--figtree-bold);
    list-style: disc;
    line-height: 1;
    text-align: start;
}

.index_third_float_text.float_1 {
    position: absolute;
    top: 150px;
    left: 0px;
    z-index: 999;
}

.index_third_float_text.float_2 {
    position: absolute;
    top: 370px;
    right: 0px;
    z-index: 999;
}

.index_third_float_text.float_3 {
    position: absolute;
    bottom: 50px;
    left: 30px;
    z-index: 999;
}

.index_fourth_wrapper {
    padding: 100px 0px;
    position: relative;
    z-index: 3;
}

.index_fourth_wrap_text {
    text-align: center;
    position: relative;
    z-index: 3;
}

.index_fourth_wrap_text h6 {
    font-size: 320px;
    font-family: var(--poppins-regular);
    background: var(--main-gradient);
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.index_fourth_wrap_text h5 {
    font-size: 100px;
    color: var(--white);
    font-family: var(--figtree-medium);
    line-height: 1;
    position: absolute;
}

.index_fourth_wrap_text h5 span {
    font-size: 240px;
    font-family: var(--griffiths);
}

h5.f_1 {
    top: 230px;
    left: -300px;
    right: 0px;
    z-index: 3;
}

h5.f_2 {
    top: 330px;
    left: 720px;
    right: 0px;
    z-index: 3;
}

h6.f_3 {
    transform: translateY(150px);
}

.index_fourth_img_wrap {
    position: relative;
}

.index_fourth_img {
    text-align: center;
    position: relative;
    z-index: 99999;
}

.index_fourth_float_text {
    position: absolute;
    z-index: 99;
}

.index_fourth_float_text h6 {
    font-size: 50px;
    color: var(--white);
    font-family: var(--poppins-regular);
    line-height: 1;
}

.index_fourth_float_text.float_1 {
    top: 230px;
    left: 300px;
}

.index_fourth_float_text.float_2 {
    top: 310px;
    right: 270px;
}

.index_fourth_float_text.float_3 {
    bottom: 260px;
    left: 210px;
}

.index_fifth_wrapper {
    padding: 100px 0px;
    position: relative;
    z-index: 3;
}

.index_fifth_wrap_text {
    text-align: center;
}

.index_fifth_wrap_text h6 {
    font-size: 150px;
    color: var(--white);
    font-family: var(--poppins-regular);
    line-height: 1;
    transform: translateX(-100px);
}

.index_fifth_wrap_text h5 {
    font-size: 480px;
    font-family: var(--griffiths);
    background: var(--main-gradient);
    background-clip: text;
    color: transparent;
    line-height: 1;
    transform: translateY(-35px);
}

h6.f_6 {
    transform: translate(300px, -500px);
}

.index_sixth_wrapper {
    padding: 100px 0px;
    position: relative;
    z-index: 3;
}

.index_sixth_wrap_text h6 {
    font-size: 110px;
    color: var(--white);
    font-family: var(--poppins-regular);
    line-height: 1;
    position: absolute;
    left: -390px;
    right: 0px;
    top: -10px;
    z-index: 99;
}

.index_sixth_wrap_text h5 {
    font-size: 300px;
    font-family: var(--griffiths);
    background: var(--main-gradient);
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.index_sixth_wrap_text {
    text-align: center;
    position: relative;
    z-index: 3;
    margin: 0px 0px 40px 0px;
}

.index_sixth_wrap_faq {
    text-align: center;
    margin: 0px 0px 60px 0px;
}

.index_sixth_wrap_faq h6 {
    font-size: 90px;
    color: var(--white);
    font-family: var(--poppins-regular);
    background: linear-gradient(300deg, rgb(0 0 0 / 0%) 32%, rgb(255 255 255 / 2%) 87%);
    box-shadow: inset 8px 0px 20px 0px #ffffff2b;
    border-radius: 40px;
    display: inline-flex;
    padding: 20px 80px;
}

.index_sixth_faq_text {
    border-radius: 50px;
    padding: 50px 30px;
    height: 400px;
    background: linear-gradient(300deg, rgb(0 0 0 / 0%) 32%, rgb(255 255 255 / 2%) 87%);
    box-shadow: inset 8px 0px 20px 0px #ffffff2b;
}

.index_sixth_faq_text h6 {
    font-size: 45px;
    color: var(--white);
    font-family: var(--figtree-medium);
    line-height: 1;
    margin: 0px 0px 20px 0px;
}

.index_sixth_faq_text h6 span {
    font-family: var(--griffiths);
}

.index_sixth_faq_text p {
    font-size: 20px;
    color: var(--white);
    font-family: var(--figtree-regular);
}

.index_seventh_wrapper {
    padding: 100px 0px;
    position: relative;
    z-index: 3;
}

.index_seventh_text_wrap {
    text-align: center;
}

.index_seventh_text_wrap h6 {
    font-size: 110px;
    font-family: var(--poppins-regular);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, #cba7f7 76%);
    background-clip: text;
    color: transparent;
    line-height: 1;
    padding: 0px 0px 15px 0px;
}

.index_seventh_text_wrap h6 span {
    padding: 0px 50px 0px 0px;
}

.index_seventh_text_wrap h5 {
    font-size: 410px;
    font-family: var(--griffiths);
    color: var(--white);
    line-height: 1;
    transform: translate(-20px, -100px);
}

.index_seventh_cr_box {
    padding: 15px;
    border-radius: 20px;
    background: linear-gradient(300deg, rgb(0 0 0 / 0%) 32%, rgb(255 255 255 / 2%) 87%);
    box-shadow: inset 8px 0px 20px 0px #5a3883;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.index_seventh_cr_box h6 {
    font-size: 16px;
    color: var(--white);
    font-family: var(--figtree-regular);
    line-height: 1.2;
    margin-bottom: 5px;
}

.index_seventh_cr_box h5 {
    font-size: 32px;
    color: var(--white);
    font-family: var(--griffiths);
    transform: none;
    margin-bottom: 2px;
}

.index_seventh_cr_box h6.f_7 {
    font-size: 12px;
    position: static;
    display: block;
    color: #ccc;
    margin-top: 0;
}

.seventh_mb {
    margin: 0px 0px 100px 0px;
}

.index_seventh_input label {
    font-size: 20px;
    color: var(--white);
    font-family: var(--poppins-regular);
    margin: 0px 0px 15px 0px;
}

.index_seventh_input input {
    font-size: 18px;
    color: var(--white);
    font-family: var(--poppins-regular);
    background: linear-gradient(300deg, rgb(0 0 0 / 0%) 32%, rgb(255 255 255 / 2%) 87%);
    box-shadow: inset 8px 0px 20px 0px #5a3883;
    padding: 20px 20px;
    border-radius: 50px;
    border: none;
    width: 100%;
}

.index_eight_wrapper {
    padding: 100px 0px;
    position: relative;
    z-index: 3;
}

.index_eight_text_wrap {
    text-align: center;
    margin: 0px 0px 60px 0px;
}

.index_eight_text_wrap h6 {
    font-size: 100px;
    color: var(--white);
    font-family: var(--figtree-medium);
    line-height: 1;
    transform: translate(-130px, 25px);
}

.index_eight_text_wrap h5 {
    font-size: 300px;
    font-family: var(--griffiths);
    background: var(--main-gradient);
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.index_eight_slider .index_second_cr_box {
    height: 450px;
}

.full_banner {
    position: absolute;
    top: -860px;
    left: 0px;
    width: 100%;
    z-index: -1;
}

.full_banner img {
    width: 100%;
    height: 1393vh;
}

.index_second_cr_box_btn a {
    padding: 20px 40px;
}

.index_eight_cr_box {
    border-radius: 60px;
    overflow: hidden;
    background-color: #1d132a8a;
    box-shadow: inset 0px 0px 10px 2px #ffffff2b;
}

.index_eight_cr_box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_eight_cr_box_img {
    width: 100%;
    height: 300px;
}

.index_eight_cr_box_text {
    padding: 30px 30px 40px 30px;
}

.index_eight_cr_box_text h6 {
    font-size: 27px;
    color: var(--white);
    font-family: var(--figtree-medium);
    margin: 0px 0px 20px 0px;
}

.index_eight_cr_box_text p {
    font-size: 17px;
    color: var(--white);
    font-family: var(--figtree-regular);
}

.eight_slider .swiper-wrapper {
    padding: 0px 30px;
}

.box_fix .swiper-wrapper {
    padding: 0px 30px;
}

.box_fix .index_second_cr_box h6 {
    font-size: 25px;
    display: block;
}

.box_fix .index_second_cr_box h6 span {
    font-family: var(--griffiths);
    font-size: 40px;
    color: var(--white);
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin: 0px 10px 0px 0px;
}

.box_fix .index_second_cr_box {
    padding: 50px 30px 50px 30px;
    text-align: center;
}

/* INDEX-CSS */

/* INNER-CSS */
/* INNER-CSS */

/* FOOTER-CSS */

.footer_wrapper {
    padding: 100px 0px 20px 0px;
    position: relative;
    z-index: 3;
}

.footer_text_wrap {
    text-align: center;
}

.footer_logo {
    margin: 0px 0px 50px 0px;
}

.footer_text {
    margin: 0px 0px 90px 0px;
}

.footer_text p {
    font-size: 30px;
    color: var(--white);
    font-family: var(--poppins-regular);
    line-height: 30px;
}

.copyright_text p {
    font-size: 18px;
    color: var(--white);
    font-family: var(--poppins-regular);
}

.footer_links {
    text-align: start;
}

.footer_text p span {
    font-family: var(--figtree-bold);
}

.footer_links ul li {
    line-height: 40px;
}

.footer_links ul li a {
    font-size: 20px;
    color: var(--white);
    font-family: var(--figtree-regular);
}

.footer_links h4 {
    font-size: 25px;
    color: var(--white);
    font-family: var(--figtree-bold);
    margin: 0px 0px 20px 0px;
}

.footer_links_wrap {
    margin: 0px 0px 150px 0px;
}

.copyright_text {
    border-top: 1px solid #eeeeee2e;
    padding: 30px 0px 10px 0px;
    text-align: center;
}

/* FOOTER-CSS */

/* ANIMATIONS */
.animate {
    filter: blur(10px);
    transform: scale(1.5);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate.show {
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
}

.index_second_text_wrap h6.animate {
    transform: translate(0px, 50px) scale(1.5);
}

.index_second_text_wrap h6.animate.show {
    transform: translate(0px, 50px) scale(1);
}

h6.f_3.animate {
    transform: translateY(150px) scale(1.5);
}

h6.f_3.animate.show {
    transform: translateY(150px) scale(1);
}

h6.f_6.animate {
    transform: translate(300px, -500px) scale(1.5);
}

h6.f_6.animate.show {
    transform: translate(300px, -500px) scale(1);
}

.index_fifth_wrap_text h5.animate {
    transform: translateY(-35px) scale(1.5);
}

.index_fifth_wrap_text h5.animate.show {
    transform: translateY(-35px) scale(1);
}

.index_seventh_text_wrap h5.animate {
    transform: translate(-20px, -100px) scale(1.5);
}

.index_seventh_text_wrap h5.animate.show {
    transform: translate(-20px, -100px) scale(1);
}

.index_eight_text_wrap h6.animate {
    transform: translate(-130px, 25px) scale(1.5);
}

.index_eight_text_wrap h6.animate.show {
    transform: translate(-130px, 25px) scale(1);
}

.index_fifth_wrap_text h6.animate {
    transform: translateX(-100px) scale(1.5);
}

.index_fifth_wrap_text h6.animate.show {
    transform: translateX(-100px) scale(1);
}

h6.f_6.animate {
    transform: translate(300px, -500px) scale(1.5);
}

h6.f_6.animate.show {
    transform: translate(300px, -500px) scale(1);
}

/* ANIMATIONS */

/*ADDITIONAL CSS*/
.mob_header {
    display: none;
}

/*ADDITIONAL CSS*/