/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
	box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
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;
    --blue-gradient: linear-gradient(90deg, #0894E0 0%, #0946A8 54.5%, #091D8C 100%);
    --leagueSpartan-bold: "LeagueSpartan-Bold";
    --leagueSpartan-medium: "LeagueSpartan-Medium";
    --leagueSpartan-regular: "LeagueSpartan-Regular";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "LeagueSpartan-Bold";
    src: url("../webfonts/LeagueSpartan-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "LeagueSpartan-Medium";
    src: url("../webfonts/LeagueSpartan-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "LeagueSpartan-Regular";
    src: url("../webfonts/LeagueSpartan-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(--black);
}
/* SCROLL-CSS */

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

/* COMMON-CSS */
.common_dark_btn{
	display: flex;
	align-items: center;
	padding: 0px 0px 0px 20px;
	width: 250px;
	height: 60px;
	background: linear-gradient(90deg, #0894E0 0%, #0946A8 54.5%, #091D8C 100%);
	border-radius: 38px;
	font-size: 14px;
	font-family: var(--leagueSpartan-bold);
	color: var(--white);
	text-transform: uppercase;
	position: relative;
	z-index: 2;
	transition: .4s all;
}
.common_dark_btn:hover{
	color: var(--white);
}
.common_dark_btn::before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	background: linear-gradient(90deg, #8C000B 0%, #EA010D 100%);
	width: 44px;
	height: 44px;
	border-radius: 38px;
	z-index: -1;
	transition: width .4s ease , height .4s ease , top .4s ease, transform .4s ease, right .4s ease;
}
.common_dark_btn:hover::before{
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	transform: translateY(0);
}
.common_dark_btn i{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 25px;
	color: var(--white);
}
.common_light_btn{
	display: flex;
	align-items: center;
	padding: 0px 0px 0px 20px;
	width: 240px;
	height: 60px;
	background: var(--white);
	border-radius: 38px;
	font-size: 14px;
	font-family: var(--leagueSpartan-bold);
	color: var(--black);
	position: relative;
	z-index: 2;
	transition: .4s all;
}
.common_light_btn:hover{
	color: var(--white);
}
.common_light_btn::before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	background: linear-gradient(90deg, #8C000B 0%, #EA010D 100%);
	width: 44px;
	height: 44px;
	border-radius: 38px;
	z-index: -1;
	transition: width .4s ease , height .4s ease , top .4s ease, transform .4s ease, right .4s ease;
}
.common_light_btn:hover::before{
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	transform: translateY(0);
}
.common_light_btn i{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 25px;
	color: var(--white);
}
/* COMMON-CSS */

.sub_heading{
    font-size: 30px;
    font-family: var(--leagueSpartan-medium);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 3.6px;
    line-height: 1;
}
.main_heading{
    font-size: 80px;
    font-family: var(--leagueSpartan-bold);
    background: var(--blue-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 70px;
}
.desc{
    font-size: 24px;
    color: #565656;
    font-family: var(--leagueSpartan-regular);
    line-height: 131%;
}
/* COMMON-CSS */

/* HEADER-CSS */
.header_wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(249, 249, 249, 0.40);
    backdrop-filter: blur(15px);
    padding: 20px 0px;
}
.header_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_inner_flex{
    display: flex;
    align-items: center;
    gap: 60px;
}
.header_nav ul{
    display: flex;
    align-items: center;
    gap: 50px;
}
.header_nav ul li a{
    font-size: 16px;
    font-family: var(--leagueSpartan-medium);
    color: var(--black);
    text-transform: uppercase;
    position: relative;
}
.header_nav ul li a::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8C000B 0%, #EA010D 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s ease;
}
.header_nav ul li a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.header_logo {
    max-width: 200px;
}
.header_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.SMN_effect-31 a {
	position: relative;
	overflow: hidden;
	display: block;
	text-align: center;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	padding: 0;
}
.SMN_effect-31 a span {
	display: block;
	-webkit-transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.SMN_effect-31 a:after {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	content: attr(data-hover);
	display: inline;
	text-align: center;
	-webkit-transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.SMN_effect-31 a:hover span {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
.SMN_effect-31 a:hover:after {
	top: 0;
}
.SMN_effect-31 a:active {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}
/* HEADER-CSS */

/* INDEX-CSS */
.index_banner_wrapper{
    display: flex;
    align-items: center;
    padding: 70px 0px 0px 0px;
    height: 100vh;
    position: relative;
    background-color: var(--white);
    z-index: 3;
    overflow: hidden;
}
.index_banner_wrap_text h4{
    font-size: 40px;
    font-family: var(--leagueSpartan-medium);
    color: var(--black);
    letter-spacing: 4.778px;
    text-transform: uppercase;
    line-height: 55px;
}
.index_banner_wrap_text h1 {
    font-size: 130px;
    font-family: var(--leagueSpartan-bold);
    background: linear-gradient(90deg, #0894E0 0%, #0946A8 54.5%, #091D8C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 0.9;
    width: 950px;
    margin: 0px 0px 15px 0px;
}
.banner_desc_1{
    font-size: 24px;
    font-family: var(--leagueSpartan-medium);
    color: #111111;
    width: 900px;
    line-height: 120%;
    margin: 0px 0px 20px 0px;
}
.banner_desc_2{
    font-size: 24px;
    font-family: var(--leagueSpartan-regular);
    color: #565656;
    width: 900px;
    text-transform: capitalize;
    line-height: 106%;
    margin: 0px 0px 20px 0px;
}
.index_banner_wrap_img{
    position: absolute;
    bottom: -40px;
    right: 150px;
}
.index_banner_vid {
    position: absolute;
    top: -30px;
    right: -900px;
    aspect-ratio: 1768/995;
    width: 1768px;
    height: 995px;
    z-index: -1;
    mix-blend-mode: multiply;
}
.index_banner_vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_banner_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: -2;
    mix-blend-mode: difference;
}
.index_banner_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_banner_scroll{
    width: 160px;
    height: 160px;
    position: absolute;
    top: calc(100vh - 80px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    animation: rotate 10s linear infinite;
}
.index_banner_scroll img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_first_wrapper{
    padding: 150px 0px 100px 0px;
    height: 120vh;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.index_first_bg_wrap {
    position: absolute;
    top: 50px;
    left: 0px;
    z-index: -1;
    animation: scale 10s linear infinite;
    width: 100%;
    height: 100%;
}
.index_first_bg_wrap img {
    width: 100%;
    height: 100%;
}
.index_first_wrap_ttext{
    text-align: center;
}
.index_first_wrap_ttext h5 {
    margin: 0px 0px 5px 0px;
}
.index_first_wrap_ttext h6 {
    margin: 0px auto 10px auto;
    width: 1410px;
}
.index_first_wrap_ttext p {
    max-width: 1290px;
    margin:  0 auto;
}
.index_second_wrapper{
    padding: 100px 0px;
    background: var(--blue-gradient);
    position: relative;
    z-index: 3;
}
.index_second_wrap_bg{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.index_second_wrap_bg img{
    width: 100%;
    height: 100%;
}
.index_second_wrap_text {
    text-align: center;
    margin: 0px 0px 50px 0px;
}
.index_second_wrap_text h5{
    color: var(--white);
}
.index_second_wrap_text h6{
    font-size: 80px;
    color: var(--white);
    font-family: var(--leagueSpartan-bold);
    text-transform: uppercase;
    line-height: 1;
}
.index_second_marquee ul {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: marquee 30s linear infinite;
    overflow: hidden;
    width: 600vw;
}
.index_second_wrap_box{
    border-radius: 30px;
    background: linear-gradient(139deg, #FFF 1.99%, rgba(255, 255, 255, 0.30) 177.26%);
    backdrop-filter: blur(17px);
    padding: 70px 60px;
    transform: translateY(-400px);
}
.index_second_wrap_box_text h6{
    font-size: 70px;
}
.index_second_wrap_box_text p{
    font-size: 20px;
    color: #111111;
    margin: 0px 0px 15px 0px;
}
.index_second_wrap_box_text ul li{
    font-size: 20px;
    color: #111111;
    font-family: var(--leagueSpartan-regular);
    text-transform: capitalize;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0px 0px 25px 0px;
}
.index_second_wrap_box_text ul li img {
    mix-blend-mode: multiply;
}
.index_second_wrap_box_main_img{
    text-align: end;
}
.index_second_wrap_box_img{
    position: relative;
}
.index_second_wrap_box_img1{
    position: absolute;
    top: -35px;
    left: 70px;
    z-index: 99;
    border: 4px solid #FFF;
    border-radius: 16px;
    overflow: hidden;
}
.index_second_wrap_box_img1 img{
    transition: 0.5s ease;
}
.index_second_wrap_box_img2{
    position: absolute;
    bottom: 90px;
    right: 40px;
    z-index: 99;
    border: 4px solid #FFF;
    border-radius: 16px;
    overflow: hidden;
}
.index_second_wrap_box_img2 img{
    transition: 0.5s ease;
}
.index_second_wrap_box_img:hover .index_second_wrap_box_img1 img{
    transform: scale(1.1);
}
.index_second_wrap_box_img:hover .index_second_wrap_box_img2 img{
    transform: scale(1.1);
}
.index_second_bottom_wrap {
    position: absolute;
    width: 100%;
    bottom: 100px;
    left: 0px;
}
.index_fourth_wrapper {
    padding: 100px 0px;
    background: var(--blue-gradient);
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.index_fourth_wrap_ttext_f{
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 0px 0px 50px 0px;
}
.index_fourth_wrap_ttext h4{
    color: var(--white);
}
.index_fourth_wrap_ttext h6{
    font-size: 70px;
    color: var(--white);
    font-family: var(--leagueSpartan-bold);
    text-transform: uppercase;
    line-height: 1;
}
.index_fourth_wrap_ttext1 p{
    color: var(--white);
    margin: 0px 0px 15px 0px;
}
.index_fourth_wrap_ttext1 {
    max-width: 700px;
}
.index_fourth_wrap_ttext {
    width: calc(100% - 700px);
}
.index_fourth_box{
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.index_fourth_box:hover .index_fourth_box_img img{
    transform: scale(1.1);
}
.index_fourth_box_img img{
    transition: 0.5s ease;
}
.index_fourth_box_text{
    width: 95%;
    border-radius: 14px;
    background: linear-gradient(139deg, #FFF 1.99%, rgba(255, 255, 255, 0.00) 177.26%);
    backdrop-filter: blur(11px);
    padding: 20px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 13px;
    bottom: 15px;
    z-index: 99;
    overflow: hidden;
}
.index_fourth_box_text h6{
    font-size: 25px;
    color: #111111;
    font-family: var(--leagueSpartan-bold);
    margin: 0px 0px 10px 0px;
}
.index_fourth_box_text p{
    font-size: 17px;
    color: var(--black);
    font-family: var(--leagueSpartan-regular);
    line-height: 1;
}
.index_fourth_bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
}
.index_fourth_bg video {
    aspect-ratio: 3934/1639;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_third_wrapper{
    padding: 100px 0px;
    position: relative;
    z-index: 3;
}
.index_third_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.46;
    background: linear-gradient(90deg, #FFF 0%, #F0F6F6 100%);
    z-index: -1;
}
.index_third_wrap_text{
    text-align: center;
    margin: 0px 0px 50px 0px;
}
.index_third_wrap_text .sub_heading{
    margin: 0px 0px 5px 0px;
}
.index_third_wrap_text .main_heading{
    width: 1300px;
    margin: 0 auto;
}
.index_third_wrap_box {
    position: relative;
    overflow: hidden;
    padding: 30px 20px 20px 20px;
    transition: .8s ease;
    border-radius: 30px;
    z-index: 3;
}
.index_third_wrap_box:hover::before{
    border-radius: 30px 30px 30px 180px;
}
.index_third_wrap_box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: .8s ease;
    z-index: -1;
    background: linear-gradient(90deg, #8C000B 0%, #EA010D 100%);
    opacity: 1;
}
.index_third_wrap_box::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: .8s ease;
    z-index: -1;
    background: linear-gradient(90deg, #0894E0 0%, #0946A8 54.5%, #091D8C 100%);
    opacity: 0;
}
.index_third_wrap_box:hover::before{
    opacity: 0;
}
.index_third_wrap_box:hover::after{
    opacity: 1;
    border-radius: 30px 30px 30px 180px;
}
.index_third_wrap_box_img {
    overflow: hidden;
    border-radius: 25px 25px 25px 25px;
    transition: .8s ease;
}
.index_third_wrap_box:hover .index_third_wrap_box_img{
    border-radius: 25px 25px 25px 160px;
}
.index_third_wrap_box_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_third_wrap_box_text{
    position: relative;
    margin: 0px 0px 25px 0px;
}
.index_third_wrap_box_text h6{
    font-size: 30px;
    font-family: var(--leagueSpartan-bold);
    color: var(--white);
    line-height: 1;
    transition: .8s ease;
    height: 60px;
    padding: 0px 10px;
}
.index_third_wrap_box_desc p{
    font-size: 26px;
    font-family: var(--leagueSpartan-regular);
    color: var(--white);
    opacity: 1;
    margin: 0px 0px 35px 0px;
    line-height: 1.3;
    transition: .8s ease;
    padding: 0px 10px;
}
.index_third_wrap_box_btn a i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 94px;
    border: 4px solid #063E26;
    background-color: var(--white);
    font-size: 30px;
    transform: rotate(-35deg);
    color: var(--black);
    position: absolute;
    bottom: -70px;
    left: -70px;
    transition: .6s ease;
}
.index_third_wrap_box:hover .index_third_wrap_box_btn a i{
    bottom: 20px;
    left: 20px;
}
.index_fifth_wrapper{
    position: relative;
    background-color: var(--white);
    z-index: 3;
    overflow: hidden;
    padding: 100px 0px;
}
.index_fifth_wrap_text{
    text-align: center;
    margin: 0px 0px 60px 0px;
}
.index_fifth_wrap_text .sub_heading{
    margin: 0px 0px 5px 0px;
}
.index_fifth_wrap_text .main_heading{
    width: 1200px;
    margin: 0 auto 25px auto;
}
.index_fifth_wrap_text ul{
    padding:0px 0px 0px 20px;
    margin:0px 0px 20px 0px;
}
.index_fifth_wrap_text ul li{
    list-style: disc;
}
.index_fifth_wrap_input input{
    width: 100%;
    height: 70px;
    padding: 0px 30px;
    border-radius: 73.573px;
    border: 0.897px solid rgba(0, 0, 0, 0.10);
    background-color: var(--white);
    box-shadow: -0.897px 3.589px 17.765px 0px rgba(0, 0, 0, 0.03);
    font-size: 22px;
    font-family: var(--leagueSpartan-regular);
    color: var(--black);
}
.index_fifth_wrap_input input::placeholder{
    color: #1111114D;
}
.index_fifth_wrap_input textarea{
    width: 100%;
    height: 270px;
    padding: 30px 30px;
    border-radius: 23px;
    border: 0.897px solid rgba(0, 0, 0, 0.10);
    background-color: var(--white);
    resize: none;
    box-shadow: -0.897px 3.589px 17.765px 0px rgba(0, 0, 0, 0.03);
    font-size: 22px;
    font-family: var(--leagueSpartan-regular);
    color: var(--black);
}
.index_fifth_wrap_input textarea::placeholder{
    color: #1111114D;
}
.index_fifth_wrap_btn .common_dark_btn{
    width: 180px;
    margin: 0 auto;
    background: linear-gradient(90deg, #8C000B 0%, #EA010D 100%);
}
.index_fifth_wrap_btn .common_dark_btn::before{
    background: linear-gradient(90deg, #0894E0 0%, #0946A8 54.5%, #091D8C 100%);
}
/* INDEX-CSS */

/* INNER-CSS */
.inner_common_wrapper {
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 120px 0px 0px 0px;
}
.inner_common_wrap_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.inner_common_wrap_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0px -90px;
}
.inner_common_wrap_text{
    text-align: center;
}
/* INNER-CSS */

/* FOOTER-CSS */
.footer_wrapper{
    background: linear-gradient(90deg, #0894E0 0%, #0946A8 54.5%, #091D8C 100%);
    position: relative;
    z-index: 3;
    padding: 100px 0px 0px 0px;
}
.footer_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.footer_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer_social ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0px 0px 0px;
    padding: 0px 50px 0px 0px;
}
.footer_social ul li a{
    font-size: 18px;
    color: var(--white);
    width: 50px;
    height: 50px;
    border: 1px solid var(--white);
    background-color: transparent;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
}
.footer_social ul li a:hover{
    background-color: var(--white);
    color: var(--black);
    transform: rotate(360deg) scale(1.1);
}
.footer_nav h6,
.footer_newsletter h6{
    font-size: 30px;
    color: var(--white);
    font-family: var(--leagueSpartan-bold);
    margin: 0px 0px 50px 0px;
}
.footer_nav ul li{
    display: flex;
    align-items: flex-start;
    color: var(--white);
    gap: 10px;
    line-height: 19px; 
}
.footer_nav ul li a{
    font-size: 18px;
    color: var(--white);
    font-family: var(--leagueSpartan-medium);
    text-transform: uppercase;
    margin: 0px 0px 20px 0px;
    display: block;
}
.footer_newsletter p{
    font-size: 18px;
    font-family: var(--leagueSpartan-regular);
    color: var(--white);
    margin: 0px 0px 35px 0px;
}
.footer_newsletter_input{
    position: relative;
}
.footer_newsletter_input input{
    width: 100%;
    height: 70px;
    padding: 0px 80px 0px 30px;
    border-radius: 65px;
    border: 0;
    background-color: var(--white);
    font-size: 18px;
    font-family: var(--leagueSpartan-regular);
    color: var(--black);
}
.footer_newsletter_input input::placeholder{
    color: #1111114D;
}
.footer_newsletter_input button{
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}
.footer_newsletter_input button i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(90deg, #8C000B 0%, #EA010D 100%);
    border-radius: 80px;
    color: var(--white);
}
.copyright {
    padding: 20px 0px;
    margin: 30px 0px 0px 0px;
    position: relative;
}
.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0.21;
    background-color: var(--white);
    z-index: -1;
}
.copyright_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright_text p {
    font-size: 18px;
    font-family: var(--leagueSpartan-regular);
    color: var(--white);
    text-transform: capitalize;
}
.copyright_text p span {
    font-family: var(--leagueSpartan-bold);
}
.copyright_link ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.copyright_link ul li {
    font-size: 18px;
    font-family: var(--leagueSpartan-regular);
    color: var(--white);
}
.copyright_link a {
    color: var(--white);
}
/* FOOTER-CSS */

.get_ticket_bg{
    background: var(--blue-gradient);
}
.get_ticket_bg .index_fifth_wrap_text h3{
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.get_ticket_bg .index_fifth_wrap_text h6{
    font-size: 80px;
    font-family: var(--leagueSpartan-bold);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    line-height: 70px;
    margin: 0px 0px 10px 0px;
}
.get_ticket_bg .index_fifth_wrap_text p{
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.get_ticket_bg .index_fifth_wrap_text p span{
    font-family: var(--leagueSpartan-bold);
}
.get_ticket_bg .index_fifth_wrap_text ul li{
    color: var(--white);
}
.get_ticket_second_bg {
    background: var(--white);
}
.get_ticket_second_bg .index_fourth_wrap_ttext h4 {
    color: var(--black);
}
.get_ticket_second_bg .index_fourth_wrap_ttext1 p {
    color: var(--black);
}
.about_first_wrapper{
    padding: 100px 0px;
}
.about_first_wrapper .index_first_wrap_ttext h5{
    color: var(--white);
}
.about_first_wrapper .index_first_wrap_ttext h6{
    font-size: 80px;
    font-family: var(--leagueSpartan-bold);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    line-height: 70px;
    margin: 0px auto 10px auto;
}
.departure_list_wrapper .index_fourth_wrap_ttext p{
    color: var(--white);
}
.departure_list_wrapper .index_fourth_wrap_ttext{
    width: 100%;
    text-align: center;
    margin: 0px 0px 60px 0px;
}
.departure_list_wrapper .index_fourth_wrap_ttext p{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto 0 auto;
}
.fails_wrapper .index_fourth_box_text {
    width: 100%;
    height: auto;
    position: unset;
}
.fails_wrapper .index_fourth_box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.fails_wrapper .index_fourth_box_img {
    height: 380px;
    margin: 0px 0px 20px 0px;
    border-radius: 20px;
    overflow: hidden;
}
.index_fourth_tag span {
    font-size: 18px;
    color: var(--black);
    font-family: var(--leagueSpartan-regular);
    background-color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
}
.index_fourth_tag {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
}
.shop_wrapper .index_third_wrap_box:hover::before {
    border-radius: 30px 30px 30px 30px;
}
.shop_wrapper .index_third_wrap_box:hover::after {
    opacity: 1;
    border-radius: 30px 30px 30px 30px;
}
.shop_wrapper .index_third_wrap_box:hover .index_third_wrap_box_img {
     border-radius: 25px 25px 25px 25px; 
}
.index_third_wrap_box_btn1 a i {
    display: block;
    align-items: unset;
    width: auto;
    height: auto;
    border-radius: 0px;
    border: none;
    background-color: transparent;
    font-size: unset;
    bottom: unset;
    left: unset;
    transition: .6s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    color: var(--white);
}
.index_third_wrap_box:hover .index_third_wrap_box_btn1 a i {
    bottom: unset;
    left: unset;
}
.index_third_wrap_box_btn1 .common_light_btn {
    width: 180px;
}
.index_third_wrap_box_btn1 .common_dark_btn {
    width: 180px;
}
.shop_wrapper .index_third_wrap_box_img {
    margin: 0px 0px 20px 0px;
}
.index_third_wrap_box_btn1 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq_wrapper{
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding: 100px 0px;
}
.faq_wrapper .accordion-item {
    border-radius: 20px;
    border: 1px solid rgba(217, 217, 217, 0.60);
    background-color: var(--white);
    box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.02);
    overflow: hidden;
    margin: 0px 0px 20px 0px;
    padding: 20px;
}
.faq_wrapper .accordion-button:not(.collapsed){
    background-color: var(--white);
    border: none;
    box-shadow: none;
}
.faq_wrapper .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
    border: none;
}
.faq_wrapper .accordion-header button{
    font-size: 24px;
    color: #222222;
    font-family: var(--leagueSpartan-medium);
    text-transform: capitalize;
}
.faq_wrapper .accordion-button::after {
    content: '';
    background-image: url(../images/plus.png);
    background-position: center;
    background-size: cover;
    width: 50px;
    height: 50px;
    top: 16px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    opacity: 1;
    transition: 0.2s ease;
}
.faq_wrapper .accordion-button::before {
    content: "";
    background-image: url(../images/minus.png);
    background-position: center;
    background-size: cover;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 16px;
    right: 20px;
    opacity: 0;
    transition: 0.2s ease;
}
.faq_wrapper .accordion-button:not(.collapsed)::after {
    opacity: 0;
    transition: 0.2s ease;
}
.faq_wrapper .accordion-button:not(.collapsed)::before{
    opacity: 1;
}
.faq_wrapper .accordion-body p{
    font-size: 18px;
    font-family: var(--leagueSpartan-medium);
    color: #111111;
    line-height: 120%;
    margin: 0px 0px 20px 0px;
}
.certificate_wrapper {
    padding: 200px 0px 100px;
}
.certificate_wrap_img img {
    width: 90%;
    border-radius: 20px;
}
.certificate_wrap_img {
    width: 100%;
    height: 100%;
    text-align: end;
    padding: 0px 30px 0px 0px;
}
.certificate_wrap_text h6 {
    font-size: 65px;
}
.certificate_wrap_text {
    width: 80%;
    margin: 0px 0px 40px 0px;
}
.certificate_wrap_text p {
    margin: 0px 0px 10px 0px;
}
.certificate_wrap_text p span {
    font-size: 30px;
    color: #EA010D;
    font-family: var(--leagueSpartan-bold);
}
.index_fifth_wrap_input label {
    font-size: 25px;
    color: #111111;
    font-family: var(--leagueSpartan-regular);
    margin: 0px 0px 7px 0px;
}
.index_fifth_wrap_input label span {
    color: red;
} 
.certificate_wrapper .index_fifth_wrap_input {
    margin: 0px 0px 20px 0px;
}
.certificate_wrap_btn a {
    width: 200px;
}
.about_first_wrap_img {
    width: 500px;
    margin: 0 auto;
    position: relative;
}
.about_first_wrap_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_first_wrap_img .index_second_wrap_box_img2 {
    bottom: -50px;
    right: unset;
    left: -150px;
    width: 100%;
    height: 360px;
}
.about_first_wrap_img:hover .index_second_wrap_box_img2 img{
    transform: scale(1.1);
}
.about_second_wrapper{
    padding: 100px 0px;
    background: var(--blue-gradient);
    position: relative;
    z-index: 3;
}
.about_second_wrap_text{
    text-align: center;
    margin: 0px 0px 60px 0px;
}
.about_second_wrap_text h5{
    color: var(--white);
}
.about_second_wrap_text h6 {
    font-size: 80px;
    font-family: var(--leagueSpartan-bold);
    color: var(--white);
    line-height: 70px;
    margin: 0px 0px 10px 0px;
}
.about_second_wrap_text p{
    color: var(--white);
}
.about_second_wrapper .index_second_wrap_bg img {
    object-fit: cover;
    opacity: 0.5;
}
.about_second_wrapper .about_first_wrap_img {
    width: 550px;
    height: 550px;
    overflow: hidden;
    border-radius: 30px;
    border: 4px solid var(--white);
}
.about_second_wrapper .index_second_wrap_box_text ul li {
    color: var(--white);
    gap: 10px;
    align-items: center;
}
.about_second_wrapper .index_second_wrap_box_text ul li img {
    width: 40px;
    mix-blend-mode: normal;
}
.about_second_wrapper .index_second_wrap_box_text h6 {
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.about_fourth_wrapper{
    padding: 100px 0px;
}
.about_fourth_wrap_text{
    text-align: center;
}
/* ANIMATIONS */
@keyframes rotate {
    from{
        transform: translateX(-50%) rotate(0deg);
    }
    to{
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0px)
    }
    50%{
        transform: translateX(-1100px)
    }
    100%{
        transform: translateX(0px)
    }
}


@keyframes scale {
    0% {
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

/* ANIMATIONS */

/*ADDITIONAL CSS*/
    /* CHECHOUT-PAGE-START */
    .checkout-first-wrapper{
        padding: 240px 0px 50px 0px;
        position: relative;
        background: var(--white);
        z-index: 3;
    }
    .checkout-summary-wrapper {
        width: 90%;
        margin: 0px auto;
        border-radius: 30px;
        background: var(--blue-gradient);
        padding: 30px 20px;
        backdrop-filter: blur(17px);
        box-shadow: -0.897px 3.589px 17.765px 0px rgba(0, 0, 0, 0.03);
    }
    .checkout-main-heading h6{
        font-size: 40px;
        font-family: var(--leagueSpartan-bold);
        color: var(--white);
        text-transform: uppercase;
        margin: 0px 0px 40px 0px;
    }
    .checkout-summary-wrap-top_m {
        height: 140px;
        overflow-y: scroll;
    }
    .checkout-summary-wrap-top_m::-webkit-scrollbar {
        width: 5px;
    }
    .checkout-summary-wrap-top_m::-webkit-scrollbar-track {
        background: transparent; 
    }
    .checkout-summary-wrap-top_m::-webkit-scrollbar-thumb {
        background-color: var(--white);
        border-radius: 20px;
    }
    .checkout-summary-wrap-top{
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin: 0px 0px 10px 0px;
    }
    .checkout-summary-box-flex{
        display: flex;
        gap: 20px;
    }
    .checkout-summary-wrap-top-img {
        width: 100px;
        height: 100px;
        border: 1px solid var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 0px 9px 4px #ffffff2e;
    }
    .checkout-summary-wrap-top-img img{ 
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .checkout-summary-box-text h6{
        font-size: 20px;
        font-family: var(--leagueSpartan-regular);
        color: var(--white);
        text-transform: capitalize;
        margin: 0px 0px 5px 0px;
    }
    .checkout-summary-box-text h6 span{
        font-family: var(--kanit-regular);
    }
    .checkout-summary-box-text p{
        font-size: 20px;
        font-family: var(--leagueSpartan-regular);
        color: var(--white);
        text-transform: capitalize;
    }
    .checkout-summary-wrap-dcard {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin: 0 0 20px 0;
    }
    .checkout-summary-wrap-dcard input {
        font-family: var(--leagueSpartan-regular);
        text-transform: capitalize;
        color: var(--black);
        border-radius: 73.573px;
        border: 0.897px solid rgba(0, 0, 0, 0.10);
        background-color: var(--white);
        box-shadow: -0.897px 3.589px 17.765px 0px rgba(0, 0, 0, 0.03);
        font-size: 16px;
        width: 100%;
        height: 60px;
        padding: 0px 20px;
    }
    .checkout-summary-wrap-dcard input::placeholder {
        color: #111111;
    }
    .checkout-summary-wrap-dcard a {
        height: 55px;
    }
    .checkout-summary-wrap-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        margin: 0 0 10px 0;
    }
    .checkout-summary-wrap-flex h6 {
        font-size: 16px;
        font-family: var(--leagueSpartan-regular);
        color: var(--white);
        text-transform: capitalize;
    }
    .checkout-summary-wrap-flex h6 span {
        font-family: var(--kanit-regular);
        padding: 0px 5px 0px 0px;
    }
    .checkout-summary-wrap-flex h5 {
        font-size: 22px;
        font-family: var(--leagueSpartan-bold);
        color: var(--white);
        text-transform: uppercase;
    }
    .checkout-summary-wrap-flex h5 span {
        font-family: var(--kanit-bold);
        padding: 0px 5px 0px 0px;
    }
    .checkout-shipping-wrapper {
        width: 100%;
    }
    .checkout-form-heading h6{
        font-size: 24px;
        font-family: var(--leagueSpartan-medium);
        color: var(--black);
        text-transform: uppercase;
        margin: 0px 0px 10px 0px;
    }
    .checkout-wrap-contact{
        margin: 0px 0px 30px 0px;
    }
    .form-group {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 0px 0px 10px 0px;
    }
    .form-group input{
        font-family: var(--leagueSpartan-regular);
        color: var(--black);
        border-radius: 73.573px;
        border: 0.897px solid rgba(0, 0, 0, 0.10);
        background-color: var(--white);
        box-shadow: -0.897px 3.589px 17.765px 0px rgba(0, 0, 0, 0.03);
        font-size: 16px;
        width: 100%;
        height: 60px;
        padding: 0px 20px;
    }
    .form-group input::placeholder{
        color: #1111114D;
    }
    .checkbox-wrapper-46 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0px 0px 10px 0px;
    }
    .checkbox-wrapper-46 label span{
        font-size: 16px;
        font-family: var(--kanit-regular);
        color: var(--black);
    }
    .form-group-btn button {
        padding: 10px 20px;
        width: 100%;
        text-transform: capitalize;
        border: none;
    }
    .checkout_main_warp {
        width: 85%;
        margin: 0px auto;
    }
    .checkout-summary-box-text {
        width: 190px;
    }
    .custom-checkbox {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        font-size: 16px;
        color: #092692;
        transition: color 0.3s;
    }
    .custom-checkbox input[type="checkbox"] {
        display: none;
    }
    .custom-checkbox .checkmark {
        width: 20px;
        height: 20px;
        border: 2px solid #092692;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
        transform-style: preserve-3d;
    }
    .custom-checkbox .checkmark::before {
        content: "\2713";
        font-size: 16px;
        color: transparent;
        transition: color 0.3s, transform 0.3s;
    }
    .custom-checkbox input[type="checkbox"]:checked + .checkmark {
        background-color: #088cda;
        border-color: #092692;
        transform: scale(1.1) rotateZ(360deg) rotateY(360deg);
    }
    .custom-checkbox input[type="checkbox"]:checked + .checkmark::before {
        color: #fff;
    }
    .custom-checkbox:hover {
        color: #092692;
    }
    .custom-checkbox:hover .checkmark {
        border-color: #092692;
        background-color: #f0f0f0;
        transform: scale(1.05);
    }
    .custom-checkbox input[type="checkbox"]:focus + .checkmark {
        box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
        outline: none;
    }
    
    .custom-checkbox .checkmark,
    .custom-checkbox input[type="checkbox"]:checked + .checkmark {
        transition: background-color 1.3s, border-color 1.3s, color 1.3s, transform 0.3s;
    }
    .check_wrap label {
        font-size: 18px;
        color: var(--black);
        font-family: var(--leagueSpartan-regular);
    }
    /* CHECHOUT-PAGE-END */
    @media only screen and (max-width: 1599px){
        .checkout_main_warp {
            width: 95%;
        }
        .checkout-summary-box-text h6 {
            font-size: 16px;
        }
        .checkout-main-heading h6 {
            font-size: 30px;
            margin: 0px 0px 25px 0px;
        }
        .checkout-summary-wrap-top-img {
            height: 90px;
        }
        .checkout-summary-wrap-dcard input {
            font-size: 14px;
        }
        .check_wrap label {
            font-size: 16px;
        }
    }
    .invoice_wrapper {
        padding: 100px 0px;
    }
    .invoice-container {
        max-width: 1300px;
        width: 100%;
        margin: 20px auto;
        border: 1px solid #ccc;
        padding: 20px;
        background-color: #eeee;
        padding: 30px;
    }
    .invoice_header, .invoice_header {
      text-align: center;
    }
    .invoice_header h1 {
        font-size: 45px;
        font-family: var(--times-new-roman);
        color: var(--black2);
    }
    .invoice_header p {
        font-size: 18px;
        font-family: var(--times-new-roman);
        color: var(--black2);
    }
    .invoice_header img {
      max-width: 150px;
    }
    .invoice-details, .buyer-details, .product-details, .payment-summary {
      margin-bottom: 20px;
    }
    .invoice-details h2, .buyer-details h2, .product-details h2, .payment-summary h2 {
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
        font-size: 25px;
        font-family: var(--leagueSpartan-medium);
        color: var(--black);
    }    
   .invoice_wrapper table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
      }
     .invoice_wrapper table,.invoice_wrapper th,.invoice_wrapper td {
        border: 1px solid #ddd;
      }
      .invoice_wrapper th,.invoice_wrapper td {
        padding: 10px;
        text-align: left;
        font-family: var(--leagueSpartan-medium);
      }
      .total {
        font-weight: bold;
      }
      .invoice_wrapper p {
        font-family: var(--leagueSpartan-medium);
        font-size: 18px;
        color: var(--black);
    }
    .index_fifth_wrap_input{
        position: relative;
    }
    .index_fifth_wrap_input i {
        position: absolute;
        top: calc(50% + 23px);
        transform: translateY(-50%);
        right: 20px;
        color: #000000;
        cursor: pointer;
        font-size: 20px;
    }
    .remove_div {
        color: red !important;
    }
/*ADDITIONAL CSS*/
