/* 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-color: #6950ff;
    --agdasima-bold: "Agdasima-Bold";
    --agdasima-regular: "Agdasima-Regular";
    --bwGradualDEMO-light: "BwGradualDEMO-Light";
    --inter-medium: "Inter-Medium";
    --inter-regular: "Inter-Regular";
    --montserrat-regular: "Montserrat-Regular";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Agdasima-Bold";
    src: url("../webfonts/Agdasima-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Agdasima-Regular";
    src: url("../webfonts/Agdasima-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "BwGradualDEMO-Light";
    src: url("../webfonts/BwGradualDEMO-Light.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Inter-Medium";
    src: url("../webfonts/Inter-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Inter-Regular";
    src: url("../webfonts/Inter-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat-Regular";
    src: url("../webfonts/Montserrat-Regular.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(--main-color);
}
/* SCROLL-CSS */

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

/* COMMON-CSS */
.common_light_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 220px;
    height: 60px;
    border-radius: 10px;
    border: 1.5px solid #FFF;
    font-size: 20px;
    font-family: var(--agdasima-bold);
    color: var(--white);
    transition: 0.5s ease;
}
.common_light_btn:hover{
    background-color: var(--main-color);
    border-color: transparent;
}
.common_dark_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(94deg, #FB0 -11.16%, #4C00E4 100.83%);
    border: 0;
    font-size: 20px;
    font-family: var(--agdasima-bold);
    color: var(--white);
    transition: 0.5s ease;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.common_dark_btn::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(94deg, #4C00E4 -11.16%, #FB0 100.83%);
    opacity: 0;
    z-index: -1;
    transition: 0.5s ease;
}
.common_dark_btn:hover::before{
    opacity: 1;
}
.common_light_btn:hover,
.common_dark_btn:hover{
    color: var(--white);
}
.heading{
    font-size: 80px;
    color: var(--white);
    font-family: var(--agdasima-regular);
    line-height: 1;
    text-transform: uppercase;
}
.desc{
    font-size: 20px;
    color: var(--white);
    font-family: var(--montserrat-regular);
    letter-spacing: -0.5px;
}
/* COMMON-CSS */

/* HEADER-CSS */
.header_wrapper{
    padding: 20px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}
.header_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo {
    width: 140px;
}
.header_btn{
    display: flex;
    align-items: center;
    gap: 20px;
}
.sticky_wrap_box {
    border-radius: 20px;
    border: 1px solid rgba(215, 215, 215, 0.25);
    background: rgba(13, 13, 13, 0.28);
    backdrop-filter: blur(39px);
    padding: 20px;
    height: 105px;
}
.sticky_wrap_box_links ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0px 0px 15px 0px;
}
.sticky_wrap_box_links ul li a{
    border-radius: 8.888px;
    border: 0.889px solid rgba(215, 215, 215, 0.06);
    background: rgba(82, 82, 82, 0.28);
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.065px;
    text-transform: uppercase;
    padding: 10px;
}
.sticky_wrap_box_mqr {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 200vw;
    animation: sticky_marquee 50s linear infinite;
    border-top: 1px solid rgba(215, 215, 215, 0.25);
    padding: 5px 0px 0px 0px;
}
.sticky_wrap_box_mqr p{
    font-size: 14px;
    color: #C3C3C3;
    font-family: var(--montserrat-regular);
    text-transform: uppercase;
    letter-spacing: 0.07px;
}
.sticky_wrapper {
    position: fixed;
    bottom: 20px;
    left: 0px;
    width: 100%;
    z-index: 9999999999;
}
.sticky_wrap_box_text h6{
    font-size: 25px;
    color: var(--white);
    font-family: var(--agdasima-bold);
    letter-spacing: 0.15px;
    line-height: 1;
}
.sticky_wrap_box_text p{
    font-size: 22px;
    color: var(--white);
    font-family: var(--agdasima-regular);
    letter-spacing: 0.125px;
}
.sticky_wrap_box_f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
/* HEADER-CSS */

/* INDEX-CSS */
.index_banner_wrapper {
    padding: 200px 0px 100px 0px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.index_banner_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-color: #000;
    z-index: -1;
}
.index_banner_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.index_banner_bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_banner_wrap_text h6{
    font-size: 90px;
    font-family: var(--agdasima-bold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
    line-height: 1;
    text-transform: uppercase;
    width: 870px;
}
.index_banner_wrap_text p{
    font-size: 22px;
    font-family: var(--montserrat-regular);
    color: var(--white);
    margin: 0px 0px 40px 0px;
    line-height: 1;
    width: 540px;
}
.index_banner_wrap_text ul{
    padding: 0px 0px 20px 20px;
}
.index_banner_wrap_text ul li {
    font-size: 18px;
    font-family: var(--montserrat-regular);
    color: var(--white);
    line-height: 1.5;
    list-style: disc;
}
.index_banner_wrap_btn {
    display: flex;
    align-items: center;
    gap: 20px;
}
.index_banner_wrap_form{
    padding: 40px 40px;
    border: 2px solid var(--main-color);
    border-radius: 51px;
    background: rgba(62, 62, 62, 0.33);
    backdrop-filter: blur(19.125530242919922px);
    position: relative;
}
.index_banner_wrap_form_icon{
    position: absolute;
    top: -50px;
    right: -50px;
}
.index_banner_wrap_form_text h6{
    font-size: 60px;
    font-family: var(--agdasima-bold);
    background: linear-gradient(94deg, #FB0 -11.16%, #4C00E4 100.83%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: 0px 0px 20px 0px;
}
.index_banner_wrap_form_text p{
    font-size: 20px;
    font-family: var(--bwGradualDEMO-light);
    color: var(--white);
    line-height: 1;
    margin: 0px 0px 40px 0px;
}
.custom-modal-ct-btns-f {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
    margin: 0px 0px 40px 0px;
}
.custom-modal-ct-btns-f label , .custom-modal-ct-btns-f span{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--montserrat-regular);
    font-size: 14px;
    width: auto;
    height: 40px;
    color: var(--white);
    border: 0;
    transition: 0.2s all;
    cursor: pointer;
    border-radius: 8.272px;
    border: 0.827px solid rgba(215, 215, 215, 0.06);
    background: rgba(82, 82, 82, 0.28);
    backdrop-filter: blur(14.392597198486328px);
    user-select: none;
}
.custom-modal-ct-btns-f span{
    width: 100%;
    padding: 0px 20px;
}
.custom-modal-ct-btns-f input[type="checkbox"] {
    display: none;
}
.custom-modal-ct-btns-f input[type="checkbox"]:checked + span {
    background-color: var(--main-color);
    color: var(--white);
    transition: 0.2s all;
}
.index_banner_wrap_form_input input{
    width: 100%;
    border: 0;
    border-bottom: 1px solid #FFFFFF3B;
    background-color: transparent;
    padding: 15px 0px;
    font-size: 16px;
    font-family: var(--montserrat-regular);
    color: #FFFFFF8F;
    margin: 0px 0px 15px 0px;
}
.index_banner_wrap_form_input select{
    width: 100%;
    border: 0;
    border-bottom: 1px solid #FFFFFF3B;
    background-color: transparent;
    padding: 15px 0px;
    font-size: 16px;
    font-family: var(--montserrat-regular);
    color: #FFFFFF8F;
    margin: 0px 0px 15px 0px;
}
.index_banner_wrap_form_input select option{
    background-color: var(--black);
    color: var(--white);
}
.index_banner_wrap_form_btn {
    margin: 20px 0px 0px 0px;
}
.index_first_wrapper {
    position: relative;
    z-index: 4;
}
.index_first_wrap_bg {
    position: absolute;
    z-index: -1;
    top: -150px;
}
.index_first_wrap_inner{
    background-color: #5F00E4;
    padding: 100px 0px 300px 0px;
    border-radius: 20px;
}
.index_first_wrap_text{
    text-align: center;
}
.index_first_wrap_text .heading{
    max-width: 900px;
    margin: 0 auto 30px auto;
}
.index_first_wrap_text .desc{
    max-width: 1100px;
    margin: 0 auto 30px auto;
}
.index_first_wrap_btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 60px;
    border-radius: 10px;
    background-color: #FB0;
    font-size: 22px;
    font-family: var(--agdasima-bold);
    color: var(--black);
    margin: 0 auto;
}
.index_first_wrap_img_flex{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px 0px 0px 0px;
}
.index_first_wrap_img_box{
    position: relative;
}
.index_first_wrap_img_box:nth-child(1) .index_first_wrap_img_box_img{
    transform: rotate(-10deg) translate(-30px , 70px);
}
.index_first_wrap_img_box:nth-child(2){
    z-index: 2;
}
.index_first_wrap_img_box:nth-child(3){
    z-index: 1;
}
.index_first_wrap_img_box:nth-child(3) .index_first_wrap_img_box_img{
    transform: rotate(10deg) translate(30px , 70px);
}
.index_first_wrap_img_box_text{
    text-align: center;
    position: absolute;
    bottom: -250px;
    width: 100%;
}
.index_first_wrap_img_box_text_middle{
    bottom: -190px;
}
.index_first_wrap_img_box_text_middle h6{
    font-size: 200px !important;
}
.index_first_wrap_img_box_text h6{
    font-size: 120px;
    font-family: var(--agdasima-bold);
    color: var(--white);
    line-height: 1;
    position: relative;
    margin: 0px 0px 10px 0px;
}
.index_first_wrap_img_box_text h6 span {
    position: absolute;
    top: -60px;
    right: 60px;
    font-size: 150px;
}
.index_first_wrap_img_box_text p{
    font-size: 30px;
    font-family: var(--agdasima-regular);
    color: var(--white);
    line-height: 1;
}
.index_second_wrapper{
    padding: 100px 0px;
}
.index_second_wrap_text {
    margin: 0px 0px 60px 0px;
}
.index_second_wrap_text .desc{
    max-width: 1140px;
}
.index_second_wrap_box{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    z-index: 3;
    /* height: 530px; */
}
.index_second_wrap_box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 33.04%, rgba(0, 0, 0, 0.79) 100%);
    z-index: 1;
}
.index_second_wrap_box_img {
    width: 100%;
    height: 100%;
}
.index_second_wrap_box_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}
.index_second_wrap_box:hover .index_second_wrap_box_img img{
    transform: scale(1.2);
}
.index_second_wrap_box_text{
    text-align: center;
    position: absolute;
    bottom: 0;
    z-index: 1;
    transition: .7s ease;
    transform: translateY(130px);
}
.index_second_wrap_box:hover .index_second_wrap_box_text{transform: translateY(-30px);}
.index_second_wrap_box_text h6{
    font-size: 36px;
    font-family: var(--agdasima-regular);
    color: var(--white);
    margin: 0px 0px 15px 0px;
    height: 70px;
    padding: 0px 20px;
    line-height: 1;
}
.index_second_wrap_box_text p{
    font-size: 18px;
    font-family: var(--montserrat-regular);
    color: var(--white);
    margin: 0px auto 15px auto;
    width: 90%;
}
.index_second_wrap_box_text .common_dark_btn{
    margin: 0 auto;
    width: 150px;
}
.first_slider{
    display: flex;
    align-items: center;
    gap: 10vw;
    animation: sticky_marquee 50s linear infinite;
}
.index_third_wrapper{
    padding: 100px 0px;
    position: relative;
    z-index: 3;
}
.index_third_bg{
    position: absolute;
    top: -30px;
    left: 0px;
    z-index: -1;
}
.index_third_main_wrap{
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px 0px 130px 0px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}
.index_third_main_wrap_bg h6{
    font-size: 300px;
    font-family: var(--agdasima-bold);
    color: var(--white);
    -webkit-text-stroke: 2px var(--black);
    text-transform: uppercase;
    background-color: transparent;
    position: absolute;
    bottom: 70px;
    width: 100%;
    text-align: center;
    z-index: -1;
    line-height: 1;
    pointer-events: none;
}
.index_third_main_wrap_bg h6::before {
    position: absolute;
    content: attr(data-text);
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    clip-path: circle(10% at 50% -20%);
    color: var(--black);
    transition: clip-path 1.5s cubic-bezier(.22,.61,.36,1);
}
.index_third_wrap_btn:hover .index_third_main_wrap_bg h6::before {
    clip-path: circle(100% at 50% -20%);
}
.index_third_text_wrap {
    padding: 0px 50px 0px 50px;
    margin: 0px 0px 30px 0px;
}
.index_third_text_wrap h6{
    color: var(--black);
    max-width: 1000px;
    margin: 0px 0px 10px 0px;
}
.index_third_text_wrap p {
    color: var(--black);
    max-width: 830px;
    margin: 0px 0px 20px 0px;
}
.index_third_text_wrap ul li{
    color: var(--black) !important;
    list-style: disc;
}
.index_third_slider1,
.index_third_slider2{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    width: 300vw;
}
.index_third_slider1 {
    animation: third_marquee 50s linear infinite;
}
.index_third_slider2 {
    animation: third_marquee1 50s linear infinite;
}
.index_third_wrap_btn a{
    margin: 0 auto;
}
.index_third_slider_wrap {
    margin: 0px 0px 60px 0px;
}
.index_fourth_wrap_text{
    text-align: center;
    margin: 0px 0px 50px 0px;
}
.index_fourth_wrap_text h6{
    margin: 0px 0px 20px 0px;
}
.index_fourth_wrap_text p {
    max-width: 1230px;
    margin: 0 auto;
}
.index_fourth_cr_box {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.60) 0%, rgba(136, 136, 136, 0.00) 100%);
    backdrop-filter: blur(21px);
    border: 2px solid var(--main-color);
    padding: 40px 40px 80px 40px;
}
.index_fourth_cr_box_text p{
    font-size: 20px;
    color: var(--white);
    font-family: var(--inter-medium);
    text-transform: capitalize;
    margin: 0px 0px 20px 0px;
    letter-spacing: -0.4px;
    line-height: 25.6px;
}
.index_fourth_cr_box_usr_f {
    display: flex;
    align-items: center;
    gap: 20px;
}
.index_fourth_cr_box_usr_text h5{
    font-size: 19px;
    color: var(--white);
    font-family: var(--inter-medium);
    letter-spacing: -0.379px;
}
.index_fourth_cr_box_usr_text p{
    font-size: 19px;
    color: #FB0;
    font-family: var(--inter-medium);
    letter-spacing: -0.378px;
}
.index_fourth_cr_box_text {
    height: 180px;
}
.index_fourth_slider .swiper-wrapper {
    padding: 0px 0px 40px 0px;
}
.index_fourth_slider{
    position: relative;
    z-index: 3;
}
.index_fourth_slider::before{
    content: '';
    width: 100%;
    height: 100px;
    background: linear-gradient(360deg, rgb(0 0 0) 40%, rgb(0 0 0 / 20%) 100%);
    filter: blur(10px);
    position: absolute;
    left: 0px;
    bottom: 20px;
    z-index: 99;
}
.first_slider_wrapper{
    overflow: hidden;
    padding: 0px 0px 150px 0px;
}
/* INDEX-CSS */

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

/* FOOTER-CSS */
.footer_wrapper {
    padding: 20px 0px 150px 0px;
}
.footer_logo {
    max-width: 150px;
}
.footer_main_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff40;
    padding: 30px 0px 0px 0px;
}
.footer_copyright_f {
    display: flex;
    align-items: center;
    gap: 40px;
}
.footer_copyright_text {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer_copyright_text p{
    font-size: 20px;
    color: var(--white);
    font-family: var(--agdasima-regular);
}
.footer_copyright_text ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer_copyright_text ul li a{
    font-size: 20px;
    color: var(--white);
    font-family: var(--agdasima-regular);
}
.footer_copyright_btn {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* FOOTER-CSS */

/* ANIMATIONS */
/* ANIMATIONS */

/*ADDITIONAL CSS*/
@keyframes third_marquee {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-140vw)
    }

    to {
        transform: translateX(0)
    }
}
@keyframes third_marquee1 {
    0% {
        transform: translateX(-140vw)
    }

    50% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-140vw)
    }
}
@keyframes sticky_marquee {
    0% {
        transform: translateX(0vw)
    }
    100% {
        transform: translateX(-140vw)
    }
}



/*ADDITIONAL CSS*/

.header-mob-flex {
    display: none;
}
.mobile_btn {
    display: none;
}
.close_btn {
    display: none;
}


.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translateY(560px) !important;
}
.modal.show .modal-dialog {
    transform: translateY(0px) !important;
    transition: all .6s cubic-bezier(.47,1.64,.41,.8);
}
.modal-content {
    border-radius: 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(180deg, #1A1A1A 0%, #111 100%);
    position: relative;
    overflow: hidden;
}
.modal-body {
    padding: 0!important;
}
.modal-body-flex {
    display: flex;
    align-items: center;
}
.custom-modal-img {
    width: 35%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.custom-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.custom-modal-form {
    padding: 50px;
    margin: 0 0 0 35%;
    position: relative;
    z-index: 3;
}
.form-input input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #dedede8a;
    width: 100%;
    height: 50px;
    font-family: var(--agdasima-regular);
    font-size: 18px;
    color: var(--white);
    padding: 10px;
    transition: .5s ease
}
.form-input input::placeholder {
    color: var(--white)
}
.form-input input:focus-visible {
    border-bottom: 1px solid var(--white)
}
.form-textarea textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #dedede8a;
    width: 100%;
    height: 120px;
    font-family: var(--agdasima-regular);
    font-size: 18px;
    color: var(--white);
    padding: 10px;
    transition: .5s ease;
    resize: none;
}
.form-textarea textarea::placeholder {
    color: var(--white)
}
.form-textarea textarea:focus-visible {
    border-bottom: 1px solid var(--white)
}

.form-input select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #dedede8a;
    width: 100%;
    height: 50px;
    font-family: var(--agdasima-regular);
    font-size: 18px;
    color: var(--white);
    padding: 10px;
    transition: .5s ease
}
.form-input select option {
    color: var(--white);
    background: var(--black);
}
.form-input select:focus-visible {
    border-bottom: 1px solid var(--white)
}
.modal-backdrop {
    z-index: 99999;
}
.modal {
    z-index: 999999;
}
.custom-modal-form .index_second_wrap_right_bg {
    bottom: -230px;
    right: -65%;
}
.modal_close_btn i {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--white);
    font-size: 18px;
    color: var(--black);
    border-radius: 50px;
    cursor: pointer;
    z-index: 9999999;
}
.index_third_text_wrap ul {
    padding: 0px 0px 0px 20px;
}