/* 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(--white);
}
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: #111111;
    --common-gradient: linear-gradient(112deg, #272C6C 17.66%, #C62034 66.47%, #C62034 116.27%);
    --navigator: "Navigator";
    --navigator-extended: "Navigator-Extended";
    --sequel-sans-book-disp: "Sequel-Sans-Book-Disp";
    --sequel-sans-roman-body: "Sequel-Sans-Roman-Body";
    --sequel-sans-roman-disp: "Sequel-Sans-Roman-Disp";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Navigator";
    src: url("../webfonts/Navigator.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Navigator-Extended";
    src: url("../webfonts/Navigator-Extended.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Sequel-Sans-Book-Disp";
    src: url("../webfonts/Sequel-Sans-Book-Disp.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Sequel-Sans-Roman-Body";
    src: url("../webfonts/Sequel-Sans-Roman-Body.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Sequel-Sans-Roman-Disp";
    src: url("../webfonts/Sequel-Sans-Roman-Disp.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_btn {
    cursor: pointer;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 220px;
    height: 60px;
    overflow: hidden;
    border-radius: 50px;
    color: var(--white);
    border: 0;
    position: relative;
}
.common_btn:hover{
    color: var(--white);
}
.common_btn_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 8px 0px 15px;
    height: 100%;
    transform: translateX(0) rotate(0.001deg);
    gap: 0px;
    border-radius: 50px;
    width: 220px;
}
.common_btn_content.duplicate {
    background-color: var(--white);
}
.common_btn_content.original {
    background: var(--common-gradient);
}
.common_btn_content.duplicate {
    position: absolute;
    top: 0;
    left: 0;
}
.common_btn_content.original {
    transform: translateX(101%) rotate(0.001deg);
}
.common_btn_content span {
    font-size: 18px;
    font-family: var(--navigator);
    color: #111111;
}
.common_btn_content.original span {
    color: var(--white);
}
.common_btn_content i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 47px;
    height: 47px;
    background: var(--common-gradient);
    border-radius: 50px;
}
.common_btn_content.original i{
    background: var(--white);
    color: var(--black);
}
.common_btn.hover .common_btn_content.original{
    transform: translateX(0%) rotate(0.001deg);
    transition: transform 0s;
}
.common_btn.hover .common_btn_content.duplicate{
    transform: translateX(101%) rotate(0.001deg);
    transition: transform 0.5s cubic-bezier(1, 0, .25, 1);
}
.common_btn.transitioning .common_btn_content.original{
    transform: translateX(101%) rotate(0.001deg);
    transition: transform 0.5s cubic-bezier(0.5, 0, .25, 1);
    z-index: 2;
}
.common_btn.transitioning .common_btn_content.duplicate{
    transform: translateX(0%) rotate(0.001deg);
    transition: transform 0s;
}
.common_btn_border{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--white);
    border-radius: 100px;
    transition: .5s ease;
}
.common_btn_1 {
    cursor: pointer;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 220px;
    height: 60px;
    overflow: hidden;
    border-radius: 50px;
    color: transparent;
    border: 0;
    position: relative;
}
.common_btn_1:hover{
    color: var(--white);
}
.common_btn_1_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 8px 0px 15px;
    height: 100%;
    transform: translateX(0) rotate(0.001deg);
    gap: 0px;
    border-radius: 45px;
    width: 220px;
}
.common_btn_1_content.duplicate {
    background-color: var(--black);
}
.common_btn_1_content.original {
    background: var(--common-gradient);
}
.common_btn_1_content.duplicate {
    position: absolute;
    top: 0;
    left: 0;
}
.common_btn_1_content.original {
    transform: translateX(101%) rotate(0.001deg);
}
.common_btn_1_content span {
    font-size: 18px;
    font-family: var(--navigator);
    color: var(--white);
}
.common_btn_1_content.original span {
    color: var(--white);
}
.common_btn_1_content i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 47px;
    height: 47px;
    background: var(--white);
    border-radius: 50px;
    color: var(--black);
}
.common_btn_1_content.original i{
    background: var(--white);
    color: var(--black);
}
.common_btn_1.hover .common_btn_1_content.original{
    transform: translateX(0%) rotate(0.001deg);
    transition: transform 0s;
}
.common_btn_1.hover .common_btn_1_content.duplicate{
    transform: translateX(101%) rotate(0.001deg);
    transition: transform 0.5s cubic-bezier(1, 0, .25, 1);
}
.common_btn_1.transitioning .common_btn_1_content.original{
    transform: translateX(101%) rotate(0.001deg);
    transition: transform 0.5s cubic-bezier(0.5, 0, .25, 1);
    z-index: 2;
}
.common_btn_1.transitioning .common_btn_1_content.duplicate{
    transform: translateX(0%) rotate(0.001deg);
    transition: transform 0s;
}
.common_btn_1_border{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--white);
    border-radius: 100px;
}
.heading{
    font-size: 60px;
    font-family: var(--navigator-extended);
    color: var(--black);
    text-transform: uppercase;
    line-height: 1;
}
.desc{
    font-size: 20px;
    font-family: var(--sequel-sans-roman-body);
    color: #111111;
}
.header_mob_flex{
    display: none;
}
/* COMMON-CSS */

/* HEADER-CSS */
.header_wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0px;
    z-index: 999999;
}
.header_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_inner_flex{
    display: flex;
    align-items: center;
    gap: 70px;
}
.header_nav ul{
    display: flex;
    align-items: center;
    gap: 70px;
}
.header_nav ul li a{
    font-size: 18px;
    font-family: var(--navigator);
    color: var(--white);
    position: relative;
}
.header_nav ul li a::before{
    content: '';
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--common-gradient);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s ease;
}
.header_nav ul li a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
/* HEADER-CSS */

/* INDEX-CSS */
.index_banner_wrapper{
    min-height: 850px;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}
.index_banner_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(96.35% 64.71% at 120.78% 21.99%, #131732 0%, rgba(19, 23, 50, 0.05) 100%);
    transform: rotate(180deg);
    z-index: -2;
}
.index_banner_bg_vid{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.index_banner_bg_vid video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_banner_bg_vid_1 video {
    height: 150%;
}
.index_banner_bg_vid_1 {
    z-index: -3;
    mix-blend-mode: lighten;
    transform: rotate(180deg);
}
.index_banner_bg_vid_2 {
    z-index: -4;
    mix-blend-mode: color-dodge;
    opacity: 0.5;
}
.index_banner_wrap_text h4,
.index_banner_wrap_text h6{
    font-size: 110px;
    font-family: var(--navigator-extended);
    color: var(--white);
    line-height: 99.816px;
}
.index_banner_wrap_text h6{
    background-color: var(--white);
    color: var(--black);
    width: fit-content;
    padding: 0px 10px 0px 0px;
}
.index_banner_flex{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.index_banner_wrap_btn{
    display: flex;
    align-items: center;
    gap: 20px;
}
.index_banner_wrap_btn .common_btn_content {
    padding: 0px 8px 0px 30px;
}
.index_banner_wrap_btn .common_btn_1_content {
    padding: 0px 8px 0px 25px;
}
.index_banner_slider ul{
    display: flex;
    gap: 100px;
    animation: marqueeR 40s linear infinite;
    overflow: hidden;
    width: 600vw;
    padding: 70px 0px 50px 0px;
}
.index_first_wrapper{
    padding: 120px 0px;
    position: relative;
    overflow: hidden;
}
.index_first_text_wrap {
    text-align: center;
    margin: 0px 0px 380px 0px;
    position: relative;
}
.index_first_text_wrap .quote{
    font-size: 45px;
    color: var(--black);
    font-family: var(--navigator);
    letter-spacing: 2px;
    line-height: 77.8px;
    margin: 0px 0px 30px 0px;
    position: relative;
    z-index: 99;
}
.index_first_text_wrap .quote a{
    font-size: 60px;
    font-family: var(--navigator-extended);
    position: relative;
    z-index: 99;
    transition: 0.5s ease;
}
.index_first_text_wrap .quote a:hover{
    color: var(--white);
}
.index_first_marquee ul {
    display: flex;
    gap: 100px;
    animation: marquee 30s linear infinite;
    overflow: hidden;
    width: 600vw;
}
.index_first_marquee ul li{
    font-size: 90px;
    font-family: var(--navigator);
    background: var(--common-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.index_first_marquee1 ul {
    display: flex;
    gap: 100px;
    animation: marqueeR 30s linear infinite;
    overflow: hidden;
    width: 600vw;
}
.index_first_marquee1 ul li{
    font-size: 90px;
    font-family: var(--navigator);
    background: linear-gradient(90deg, #B8B8B8 0%, #B1B1B1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.index_first_bottom_bg {
    position: absolute;
    left: 0px;
    bottom: -140px;
    z-index: 7;
}
.index_first_skin_bg {
    position: absolute;
    left: 0px;
    bottom: 100px;
    z-index: 9;
}
.index_first_girl_bg1 {
    position: absolute;
    left: 0px;
    bottom: 400px;
    z-index: 8;
}
.index_first_girl_bg2 {
    position: absolute;
    right: 0px;
    bottom: 600px;
}
.index_first_cube_img1 {
    position: absolute;
    top: 90px;
    left: 90px;
}
.index_first_cube_img2 {
    position: absolute;
    top: 60px;
    right: 100px;
}
.distort {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    width: 580px;
    top: -210%;
    left: 31%;
}
.distort__video {
	opacity: 0;
    width: 100%;
    height: 100%;
}
.quote__link {
	z-index: 999;
	color: var(--color-content-link);
	position: relative;
	white-space: nowrap;
}
.quote__link:hover {
	color: var(--color-content-link-hover);
}
.quote__link span {
	display: inline-block;
}
.index_first_text_wrap_btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.index_first_text_wrap_btn .common_btn_content {
    padding: 0px 8px 0px 30px;
}
.index_first_text_wrap_btn .common_btn_border{
    border-color: var(--black);
}
.index_first_text_wrap_btn .common_btn:hover .common_btn_border{
    border-color: transparent;
}

.index_second_wrapper{
	padding: 100px 0px 130px 0px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.index_banner_bg_vid.index_second_vid {
    z-index: -1;
}
.index-second-wrap-text h6 {
    font-size: 70px;
    font-family: var(--nunito-regular);
    color: var(--white);
    text-align: center;
    max-width: 1250px;
    margin: 0 auto 50px auto;
    line-height: 1;
}
.index-second-wrap-text h6 span{
	font-family: var(--nunito-semiBold);
	color: var(--main-color);
}
.index-second-wrap-box {
    width: 100%;
    height: 450px;
    position: relative;
}
.index-second-wrap-box-img {
    width: 100%;
    height: 100%;
	overflow: hidden;
}
.index-second-wrap-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}
.index-second-wrap-box:hover img {
    transform: scale(1.2);
}
.index-second-wrap-box-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(7px);
    padding: 20px;
    width: 70%;
    height: 90px;
    transition: width .5s cubic-bezier(.47,1.4,.401,1) , height .5s cubic-bezier(.47,1.4,.401,1);
    overflow: hidden;
}
.index-second-wrap-box:hover .index-second-wrap-box-text {
    width: 95%;
    height: 60%;
}
.index-second-wrap-box:hover h6{
	font-size: 28px;
	max-width: 300px;
}
.index-second-wrap-box:hover ul li a{
	font-size: 14px;
	height: 35px;
}
.index-second-wrap-box-text h6 {
    font-size: 24px;
    font-family: var(--navigator-extended);
    color: var(--black);
    margin: 0px 0px 10px 0px;
    max-width: 260px;
    text-transform: uppercase;
    transition: .3s ease;
}
.index-second-wrap-box-text p{
    font-size: 16px;
    margin: 0px 0px 15px 0px;
    width: 400px;
}
.index-second-wrap-box-text a{
    font-size: 18px;
    color: var(--black);
    font-family: var(--navigator);
    text-decoration-line: underline;
    display: flex;
    align-items: center;
    gap: 20px;
}
.index-second-wrap-box-text img{
    transition: 0.3s ease;
}
.box-transform {
    transform: translate(0px, 130px);
}
.index_second_wrap_text h6 {
    color: var(--white);
    max-width: 900px;
}
.index_second_wrap_text {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 0px 0px 60px 0px;
}
.index_third_wrapper{
    position: relative;
    padding: 460px 0px 0px 0px;
}
.index_third_slider{
    position: absolute;
    z-index: 9999;
}
.index_third_slider_1{
    top: 26vw;
    left: -60px;
    transform: rotate(7.505deg);
}
.index_third_slider_2{
    transform: rotate(-3.542deg);
    top: -50px;
    left: -70px;
}
.index_third_slider ul{
    display: flex;
    align-items: center;
    width: 410vw;
    gap: 5px;
    background: var(--common-gradient);
    filter: drop-shadow(-14px 18px 20px rgba(0, 0, 0, 0.25));
}
.index_third_slider_1 ul{
    animation: marquee 30s linear infinite;
}
.index_third_slider_2 ul{
    animation: marquee 30s linear infinite;
}
.index_third_slider ul li{
    font-size: 50px;
    font-family: var(--navigator-extended);
    color: var(--white);
}
.index_third_wrap_vid {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 1050px;
    height: 585px;
    clip-path: polygon(0 10%, 95% 0, 100% 90%, 5% 100%);
}
.index_third_wrap_vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_third_hand.index_third_hand_1 {
    position: absolute;
    top: 340px;
    left: -600px;
}
.index_third_hand.index_third_hand_2 {
    position: absolute;
    bottom: 540px;
    right: -800px;
}
.index_fourth_wrapper {
    padding: 100px 0px;
    height: 100vh;
    position: relative;
}
.index_fourth_wrap_text{
    text-align: center;
}
.index_fourth_wrap_text .heading{
    max-width: 1100px;
    margin: 0 auto 15px auto;
}
.index_fourth_wrap_text .desc{
    max-width: 1200px;
    margin: 0 auto 25px auto;
}
.main_element{
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    left: 0;
    min-height: 240px;
    overflow: visible;
    padding: 0;
    position: absolute;
    right: 0;
    top: 70%;
    transform: translateY(-10%) perspective(2400px) translateY(300px) scale(0.4) rotateX(-20deg);
    transform-style: preserve-3d;
    z-index: 1;
}
.element_rotator {
    backface-visibility: hidden;
    flex: none;
    height: 240px;
    left: calc(50.00000000000002% - min(1200px,1200px) / 2);
    max-width: 1200px;
    overflow: visible;
    position: absolute;
    top: calc(50.00000000000002% - 240px / 2);
    transform-style: preserve-3d;
    width: 1200px;
    z-index: 1;
    transform: perspective(24000px) rotateX(0deg);
}
.element{
    display: contents;
}
.element_inner{
    flex: none;
    inset: 0;
    position: absolute;
    z-index: 1;
}
.element_1 .element_inner{
    transform: translateZ(-120px) rotateX(-270deg);
    transform-origin: 50% 0% 0px;
}
.element_2 .element_inner {
    transform: translateZ(-120px) rotateX(-180deg);
}
.element_3 .element_inner{
    transform: translateZ(-120px) rotateX(-90deg);
    transform-origin: 0% 100% 0px;
}
.element_4 .element_inner{
    transform: translateZ(120px);
}
.element_inner_flex {
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
    background: var(--common-gradient);
    opacity: 1;
    padding: 40px;
}
.element_text h3 {
    font-size: 45px;
    font-family: var(--navigator-extended);
    color: var(--white);
    text-transform: uppercase;
}
.element_text p {
    font-size: 30px;
    font-family: var(--sequel-sans-roman-disp);
    color: var(--white);
    width: 670px;
}
.element_number h6 {
    font-size: 270px;
    font-family: var(--navigator);
    color: var(--white);
    line-height: 1;
}
.line{
    background: var(--common-gradient);
}
.line_1 {
    flex: none;
    height: 1px;
    left: -48px;
    overflow: hidden;
    position: absolute;
    right: -48px;
    top: 0;
    z-index: 1;
}
.line_2 {
    bottom: 0;
    flex: none;
    height: 1px;
    left: -48px;
    overflow: hidden;
    position: absolute;
    right: -48px;
    z-index: 1;
}
.line_3 {
    bottom: -48px;
    flex: none;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: -48px;
    width: 1px;
    z-index: 1;
}
.line_4 {
    bottom: -48px;
    flex: none;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: -48px;
    width: 1px;
    z-index: 1;
}
.index_fifth_wrapper{
    padding: 40px 0px;
    position: relative;
    z-index: 3;
    height: 100vh;
}
.index_fifth_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.index_fifth_bg_1{
    z-index: -1;
    opacity: 1;
}
.index_fifth_bg_2{
    z-index: -2;
}
.index_fifth_bg_3{
    z-index: -3;
}
.index_fifth_bg_4{
    z-index: -4;
}
.index_fifth_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0px 0px;
}
.index_fifth_wrap_text{
    text-align: center;
    margin: 0px 0px 30px 0px;
}
.index_fifth_wrap_text .sub_heading{
    margin: 0px 0px 15px 0px;
    color: var(--white);
}
.index_fifth_wrap_text .heading{
    max-width: 1000px;
    margin: 0 auto;
    color: var(--white);
}
.index_fifth_wrap_box{
    padding: 40px 50px;
    border-radius: 40px;
    background-color:  var(--white);
}
.index_fifth_wrap_box_acco{
    border-bottom: 1px solid #DCDCDC;
    padding: 0px 0px 25px 0px;
    height: 80px;
    clip-path: inset(0px 0px 0px 0px);
}
.index_fifth_wrap_box_acco_1{
    height: 360px;
}
.index_fifth_wrap_box_acco_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0px;
}
.index_fifth_wrap_box_acco_head h6{
    font-size: 30px;
    font-family: var(--navigator-extended);
    color: var(--black);
}
.index_fifth_wrap_box_acco_head p{
    font-size: 20px;
    font-family: var(--spaceGrotesk-regular);
    color: #A9A9A9;
    letter-spacing: -0.4px;
    text-transform: capitalize;
}
.index_fifth_wrap_box_acco_head p span{
    color: var(--black);
}
.index_fifth_wrap_box_acco_body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    background-color: #EFEFEF;
    padding: 50px;
}
.index_fifth_wrap_box_acco_body_text{
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 70%;
}
.index_fifth_wrap_box_acco_body_text p{
    font-size: 24px;
    font-family: var(--navigator);
    color: var(--black);
    text-transform: capitalize;
}
.index_sixth_wrapper{
    padding: 100px 0px;
}
.index_sixth_wrap_text h6 {
    max-width: 500px;
}
.index_sixth_wrap_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 0px 0px;
}
.index_sixth_wrap_flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.index_sixth_tabs .nav-link{
    font-size: 18px;
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 30px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding: 5px 25px;
    transition: 0.5s ease;
    font-family: var(--sequel-sans-roman-disp);
}
.index_sixth_tabs .nav-link::before{
    content: '';
    width: 100%;
    height: 100%;
    background: var(--common-gradient);
    position: absolute;
    top: 0;
    left: 0px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}
.index_sixth_tabs{
    border-bottom: 0 !important;
    gap: 10px;
}
.index_sixth_tabs .nav-link.active::before{
    opacity: 1;
    visibility: visible;
}
.index_sixth_tabs .nav-link.active {
    color: var(--white);
    border: 1px solid var(--white);
    background-color: transparent;
}
.index_sixth_tabs .nav-link:hover {
    color: var(--white);
    border: 1px solid var(--white);
    background-color: transparent;
}
.index_sixth_tabs .nav-link:hover::before{
    opacity: 1;
    visibility: visible;
}
.index_sixth_wrap_main_flex{
    display: flex;
    align-items: center;
    gap: 40px;
}
.index_sixth_cr_box_text {
    background-color: #EFEFEF;
    padding: 20px;
}
.index_sixth_cr_box_text h6 {
    font-size: 30px;
    margin: 0px 0px 15px 0px;
}
.index_sixth_cr_box_text p {
    font-size: 16px;
    line-height: 124%;
    margin: 0px 0px 15px 0px;
    overflow: hidden;
}
.index_sixth_cr_box_text_perf {
    display: flex;
    gap: 60px;
}
.index_sixth_cr_box_text_per h6 {
    font-size: 60px;
    font-family: var(--navigator);
    background: var(--common-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px 0px 5px 0px;
}
.index_sixth_cr_box_img {
    margin: 0px 0px 10px 0px;
    overflow: hidden;
    width: 100%;
    height: 580px;
}
.index_sixth_cr_box_img img{
    transition: 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_sixth_cr_box:hover .index_sixth_cr_box_img img{
    transform: scale(1.1);
}
p.cus_h{
    height: 100px;
}
/* INDEX-CSS */

/* INNER-CSS */
/* INNER-CSS */

/* FOOTER-CSS */
.footer_wrapper{
    position: relative;
    padding: 100px 0px 0px 0px;
    background-color: var(--black);
    z-index: 3;
}
.footer_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(144deg, rgba(0, 0, 0, 0.60) 69.85%, rgba(0, 0, 0, 0.00) 130.75%);
    mix-blend-mode: multiply;
    z-index: -1;
}
.footer_bg_vid {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    transform: rotateX(180deg);
    width: 100%;
    height: 100%;
}
.footer_bg_vid video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer_top{
    margin: 0px 0px 120px 0px;
}
.footer_top_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 70px 0px;
}
.footer_top_text .heading{
    color: var(--white);
    width: 650px;
    font-size: 50px;
}
.footer_top_text .desc{
    color: var(--white);
    width: 810px;
    text-transform: capitalize;
    font-size: 18px;
    margin: 0px 0px 30px 0px;
}
.footer_top_text ul{
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer_top_text ul li a i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--white);
    background-color: transparent;
    color: var(--white);
    border-radius: 50px;
    font-size: 22px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    transition: .5s ease;
}
.footer_top_text ul li a i:hover{
    transform: rotate(360deg) scale(1.1);
    border-color: transparent;
}
.footer_top_text ul li a i::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--common-gradient);
    z-index: -1;
    opacity: 0;
    transition: .5s ease;
}
.footer_top_text ul li a i:hover::after{
    opacity: 1;
}
.footer_form{
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer_form_input{
    width: calc(30% - 20px);
}
.footer_form_input input{
    width: 100%;
    height: 60px;
    border-radius: 100px;
    border: 2px solid #FFF;
    background-color: #171717;
    padding: 0px 30px;
    font-size: 18px;
    font-family: var(--sequel-sans-book-disp);
    color: var(--white);
}
.footer_form_input input::placeholder{
    color: var(--white);
}
.footer_form_btn .common_btn_content{
    padding: 0px 8px 0px 30px;
}
.footer_text h6{
    font-size: 28px;
    font-family: var(--navigator-extended);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.footer_text p{
    font-size: 16px;
    font-family: var(--sequel-sans-roman-disp);
    color: var(--white);
    padding: 0px 10px 0px 0px;
}
.footer_nav h6{
    font-size: 28px;
    font-family: var(--navigator-extended);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.footer_nav ul li{
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--white);
}
.footer_nav ul li a{
    font-size: 18px;
    font-family: var(--sequel-sans-roman-disp);
    color: var(--white);
    display: flex;
    line-height: 1;
    margin: 0px 0px 15px 0px;
}
.cus_column{
    column-count: 2;
}
.copyright{
    text-align: center;
    margin: 100px 0px 0px 0px;
    padding: 30px 0px;
}
.copyright p{
    font-size: 16px;
    font-family: var(--sequel-sans-book-disp);
    color: var(--white);
}
/* FOOTER-CSS */

/* ANIMATIONS */

@keyframes marquee {
    0% {
        transform: translateX(0px)
    }
    50%{
        transform: translateX(-5400px)
    }
    100%{
        transform: translateX(0px)
    }
}

@keyframes marqueeR {
    0% {
        transform: translateX(-5400px)
    }
    50% {
        transform: translateX(0px)
    }
    100% {
        transform: translateX(-5400px)
    }
}

/* ANIMATIONS */

/*ADDITIONAL CSS*/
.fifth_mob_slider{
    display: none;
}
.fifth_mob_slider{
    display: none;
}
/*ADDITIONAL CSS*/