/* 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;
    --visbybold: "VisbyBold";
    --spacegrotesk-bold: "SpaceGrotesk-Bold";
    --spacegrotesk-medium: "SpaceGrotesk-Medium";
    --spacegrotesk-regular: "SpaceGrotesk-Regular";
    --kanit-bold: "Kanit-Bold";
    --kanit-medium: "Kanit-Medium";
    --kanit-regular: "Kanit-Regular";
    --kanit-light: "Kanit-Light";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "VisbyBold";
    src: url("../webfonts/VisbyBold.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "SpaceGrotesk-Bold";
    src: url("../webfonts/Universo-Black.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "SpaceGrotesk-Medium";
    src: url("../webfonts/Universo-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "SpaceGrotesk-Regular";
    src: url("../webfonts/SpaceGrotesk-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Kanit-Bold";
    src: url("../webfonts/Kanit-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Kanit-Medium";
    src: url("../webfonts/Universo-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Kanit-Regular";
    src: url("../webfonts/Kanit-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Kanit-Light";
    src: url("../webfonts/Universo-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 */

.heading{
    font-size: 50px;
    color: var(--black);
    font-family: var(--spacegrotesk-bold);
    line-height: 1;
}
.sub_heading{
    font-size: 32px;
    color: var(--black);
    font-family: var(--spacegrotesk-medium);
    line-height: 1;
}
.desc{
    font-size: 18px;
    color: var(--white);
    font-family: var(--kanit-light);
    line-height: 1.7;
}
.desc span{
    font-family: var(--kanit-medium);
}
.common_fill_btn_wrap{
    overflow: hidden;
    padding: 10px 0px;
    position: relative;
    display: inline-flex;
}
.common_fill_btn_wrap button{
    background-color: transparent;
    border: 0;
}
.common_fill_btn span {
    font-size: 16px;
    color: var(--black);
    font-family: var(--kanit-medium);
    letter-spacing: 1.5px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 60px;
    border: 0;
    border-radius: 8px;
    position: relative;
}
.common_fill_btn_wrap .hov_btn2{
    position: absolute;
    top: 120%;
    left: 0px;
    font-size: 16px;
    color: var(--black);
    font-family: var(--kanit-medium);
    letter-spacing: 1.5px;
    background-color: #CBDD5A;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 60px;
    border: 0;
    border-radius: 8px;
    transition: 0.4s cubic-bezier(0.37, 1, 0.21, 1);
}
.common_fill_btn_wrap .hov_btn1{
    transition: 0.4s cubic-bezier(0.37, 1, 0.21, 1);
}
.common_fill_btn_wrap:hover .hov_btn1{
    transform: translateY(120%);
}
.common_fill_btn_wrap:hover .hov_btn2{
    top: 10px;
}
.common_light_btn .hov_btn1 {
    font-size: 16px;
    color: var(--black);
    font-family: var(--kanit-medium);
    letter-spacing: 1.5px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 60px;
    border: 2px solid var(--black);
    border-radius: 8px;
    position: relative;
}
.long_btn span{
    width: 225px !important;
}
/* COMMON-CSS */

/* HEADER-CSS */
.header_wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 10px 0px;
    background-color: var(--white);
    border-bottom: 1px solid #ffffff21;
    z-index: 99999;
}
.header_wrap_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_wrap_links_f {
    display: flex;
    align-items: center;
    gap: 67px;
}
.header_wrap_links ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header_wrap_links ul li a{
    font-size: 14px;
    color: var(--black);
    font-family: var(--kanit-medium);
}
.custom_dropdown {
    position: absolute;
    top: 30px;
    left: 0;
    background-color: var(--white);
    width: 300px;
    padding: 20px;
    transform: translateY(20px);
    border-radius: 10px;
    opacity: 0;
    transition: .5s ease;
    z-index: 999999999;
    visibility: hidden;
    box-shadow: 10px 10px 10px 0px #0000003b;
}
.custom_dropdown_active{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.custom_dropdown ul{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px !important;
}
.header_mob_flex{
    display: none;
}
.header_wrapper .hov_btn1 {
    background-color: var(--black);
    color: var(--white);
}
/* HEADER-CSS */

/* INDEX-CSS */

.index_banner_wrapper{
    position: relative;
    height: 100vh;
    padding: 140px 0px 0px 0px;
    overflow: hidden;
    z-index: 4;
    display: flex;
    align-items: center;
}
.index_banner_wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.55;
    background: #000;
    position: absolute;
    top: 0px;
    left: 0px;
    user-select: none;
    z-index: -1;
}
.index_banner_bg{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -2;
    width: 100%;
    height: 100%;
}
.index_banner_bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_banner_text h6{
    font-size: 60px;
    color: var(--white);
    line-height: 101.5%;
    margin: 0px 0px 30px 0px;
    max-width: 900px;
}
.index_banner_text p{
    font-size: 20px;
    line-height: 130.5%;
    margin: 0px 0px 30px 0px;
    max-width: 800px;
}
.index_banner_big_text h1{
    font-size: 453px;
    color: var(--white);
    font-family: var(--kanit-bold);
    text-shadow: 0px 110.098px 16.852px rgba(0, 0, 0, 0.25);
    line-height: 1;
    text-transform: uppercase;
    mix-blend-mode: soft-light;
    text-align: center;
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 100%;
}
.index_about_wrapper{
    padding: 150px 0px;
}
.index_about_wrap_text .heading {
    margin: 0px 0px 20px 0px;
}
.index_about_wrap_text .desc {
    color: var(--black);
}
.index_about_wrap_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_first_wrapper{
    padding: 100px 0px 100px 0px;
    position: relative;
    z-index: 3;
}
.index_first_wrap_mrq{
    border-bottom: 1px solid #8d8d8d33;
    padding: 10px 0px;
    margin: 0px 0px 80px 0px;
}
.index_first_wrap_mrq_f{
    display: flex;
    align-items: center;
    gap: 10%;
    width: 100vw;
    animation: first_marquee 50s linear infinite;
}
.index_first_big_text h1{
    font-size: 395px;
    color: var(--white);
    font-family: var(--kanit-bold);
    text-shadow: 0px 38px 61px rgba(0, 0, 0, 0.25);
    line-height: 1;
    text-transform: uppercase;
    mix-blend-mode: soft-light;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 100%;
    user-select: none;
    opacity: 0.2;
}
.index_first_line_bg{
    position: absolute;
    top: -44%;
    left: -90px;
    z-index: -1;
    user-select: none;
}
.index_first_wrap_text p{
    color: #242424;
    line-height: 168%;
    width: 95%;
    margin: 0px 0px 50px 0px;
}
.index_first_wrap_text h6 {
    margin: 0px 0px 35px 0px;
}
.index_first_wrap_ico_box img{
    margin: 0px 0px 20px 0px;
}
.index_first_wrap_ico_box h2{
    font-size: 30px;
    color: var(--black);
    line-height: 101.5%; 
}
.index_second_wrapper{
    padding: 100px 0px;
    background-color: #F6FBFF;
}
.index_second_wrap_text{
    max-width: 1100px;
    margin: 0px 0px 60px 0px;
}
.index-second_tabs_content {
    background-color: #EDF4F9;
    border-radius: 5px;
    padding: 65px;
    width: 100%;
    height: 760px;
    overflow: hidden;
}
.second_tabs_nav .nav-pills .nav-link.active,
.second_tabs_nav .nav-pills .show>.nav-link {
    color: var(--black);
    background-color: #CBDD5A;
}
.second_tabs_nav .nav-link {
    font-size: 30px;
    font-family: var(--kanit-medium);
    background-color: #EDF4F9;
    color: var(--black);
    height: 95px;
    text-align: start;
    border-radius: 5px;
    text-transform: capitalize;
    margin: 0px 0px 2px 0px;
    padding: 0px 30px;
}
.second_tabs_nav ul{
    padding: 0px 0px 0px 50px;
}
.second_tabs_nav ul li{
    list-style: disc;
    color: #9DAF2A;
}
.second_tabs_nav a{
    font-size: 30px;
    font-family: var(--kanit-medium);
    color: #9DAF2A;
    display: flex;
    align-items: center;
    height: 80px;
    text-align: start;
    border-radius: 5px;
    text-decoration: underline;
    text-transform: capitalize;
    margin: 0px 0px 2px 0px;
    position: relative;
    z-index: 999;
}
.second_tabs_nav .nav-link span{
    margin: 0px 10px 0px 0px;
}
.index_second_tab_text_box h6{
    font-size: 40px;
    margin: 0px 0px 20px 0px;
}
.index_second_tab_text_box p{
    color: #222222;
    margin: 0px 0px 15px 0px;
    line-height: 168%;
}
.index_second_tab_list_f{
    display: flex;
    justify-content: space-between;
}
.index_second_tab_list_f ul{
    width: 100%;
    padding: 0px 0px 0px 25px;
}
.index_second_tab_list_f ul li{
    font-size: 20px;
    color: var(--black);
    font-family: var(--kanit-medium);
    list-style: disc;
    line-height: 331.5%;
    text-transform: capitalize;
}
.index_third_wrapper{
    padding: 140px 0px;
    position: relative;
    z-index: 3;
    background: linear-gradient(68deg, rgba(0,0,0,1) 43%, rgba(58,68,88,1) 103%);
}
.index_third_wrapper_2{
    background: linear-gradient(259deg, rgba(0,0,0,1) 43%, rgba(58,68,88,1) 103%);
}
.index_third_wrap_text h6{
    color: var(--white);
    width: 890px;
    margin: 0px 0px 20px 0px;
    text-transform: capitalize;
}
.index_third_wrap_text p {
    max-width: 780px;
    margin: 0px 0px 30px 0px;
}
.index_third_wrap_btnf{
    display: flex;
    align-items: center;
    gap: 20px;
}
.index_third_wrap_btnf .common_fill_btn span{
    width: 275px;
}
.index_third_wrap_btnf .common_light_btn .hov_btn1{
    border-color: var(--white);
    color: var(--white);
}
.index_third_wrapper .index_first_big_text h1{
    font-size: 380px;
    top: 17%;
    left: 50%;
}
.index_third_book_bg {
    position: absolute;
    bottom: 0px;
    right: 120px;
    z-index: -1;
    user-select: none;
    height: 100%;
    overflow: hidden;
}
.index_third_girl_bg {
    position: absolute;
    bottom: 0px;
    right: 20px;
    z-index: -1;
    user-select: none;
    max-width: 800px;
}
.index_fourth_wrapper{
    padding: 100px 0px;
    position: relative;
}
.index_fourth_wrap_bg_text h6 {
    font-size: 300px;
    font-family: var(--kanit-bold);
    color: var(--white);
    text-shadow: 0px 38px 61px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    text-wrap-mode: nowrap;
    line-height: 1;
    z-index: -1;
}
.index_fourth_wrap_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 50px 0px;
}
.index_fourth_wrap_text h6 {
    width: 800px;
}
.fourth_slider .swiper-slide{
    width: 300px;
    transform-origin: left;
    transition: .5s ease;
    border-radius: 10px;
    overflow: hidden;
}
.fourth_slider .swiper-slide.active_slide{
    width: 660px;
}
.index_fourth_wrap_box{
    position: relative;
    width: 100%;
    height: 470px;
    z-index: 3;
}
.index_fourth_wrap_box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #011626 0%, rgba(1, 22, 38, 0.00) 50.63%);
    z-index: -1;
}
.index_fourth_wrap_box_vid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.index_fourth_wrap_box_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: .5s ease;
    z-index: -2;
}
.index_fourth_wrap_box:hover .index_fourth_wrap_box_img {
    opacity: 0;
}
.fourth_slider .swiper-slide.active_slide .index_fourth_wrap_box_img{
    opacity: 0;
}
.index_fourth_wrap_box_vid video,
.index_fourth_wrap_box_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_fourth_wrap_box_text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border-radius: 8px;
    width: 95%;
    padding: 15px;
}
.index_fourth_wrap_box_text h6{
    font-size: 20px;
    font-family: var(--kanit-medium);
    color: var(--black);
    margin: 0px 0px 10px 0px;
    width: 80%;
}
.index_fourth_wrap_box_text a{
    font-size: 16px;
    font-family: var(--kanit-medium);
    color: var(--black);
}
.index_fourth_wrap_box_text a i{
    font-size: 12px;
}
.index_fifth_wrapper{
    padding: 100px 0px;
    background-color: #F6FBFF;
}
.index_fifth_wrap_text {
    margin: 0px 0px 50px 0px;
}
.index_fifth_wrap_text h6 {
    max-width: 1100px;
    margin: 0px 0px 30px 0px;
}
.index_fifth_wrap_text h5{
    font-size: 35px;
    margin: 0px 0px 20px 0px;
}
.index_fifth_wrap_text p{
    font-size: 30px;
    color: #010101;
    max-width: 1400px;
}
.index_fifth_wrap_box_f {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    padding: 30px 20px;
    margin: 0px 0px 20px 0px;
}
.index_fifth_wrap_box_f::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.1;
    background-color: #ACBECC;
    z-index: -1;
    transition: .5s ease;
}
.index_fifth_wrap_box_f:hover::before{
    background-color: #CBDD5A;
    opacity: 1;
}
.index_fifth_wrap_box_text {
    display: flex;
    justify-content: space-around;
    width: calc(100% - 500px);
}
.index_fifth_wrap_box_text h6{
    font-size: 34px;
    font-family: var(--spacegrotesk-bold);
    color: var(--black);
    width: 30%;
}
.index_fifth_wrap_box_text p{
    font-size: 23px;
    font-family: var(--spacegrotesk-regular);
    color: #010101;
    width: 34.9%;
    text-transform: capitalize;
}
.index_fifth_wrap_box_btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: #CBDD5A;
    transition: .5s ease;
}
.index_fifth_wrap_box_f:hover .index_fifth_wrap_box_btn a{
    background-color: var(--white);
}
.index_sixth_wrapper {
    padding: 100px 0px 100px 0px;
}
.index_sixth_wrap_box{
    position: relative;
    background-color: #0057FF;
    padding: 70px 80px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 3;
}
.index_sixth_wrap_box_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    mix-blend-mode: lighten;
}
.index_sixth_wrap_box_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_sixth_wrap_text h6{
    color: var(--white);
    margin: 0px 0px 30px 0px;
}
.index_sixth_wrap_text p{
    width: 81%;
    text-transform: capitalize;
    margin: 0px 0px 30px 0px;
}
.index_sixth_wrap_text h4{
    font-size: 35px;
    font-family: var(--spacegrotesk-bold);
    color: var(--white);
    text-transform: capitalize;
    margin: 0px 0px 20px 0px;
}
.index_sixth_wrap_text ul{
    padding: 0px 0px 0px 20px;
    margin: 0px 0px 20px 0px;
}
.index_sixth_wrap_text ul li{
    font-size: 22px;
    font-family: var(--spacegrotesk-medium);
    color: var(--white);
    list-style: disc;
    line-height: 2;
}
.index_sixth_wrap_btn .common_fill_btn span {
    background-color: var(--black);
    color: var(--white);
    width: 260px;
}
.index_sixth_wrap_form_box{
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px 50px 50px 50px;
}
.index_sixth_wrap_form_box_text h6{
    font-size: 40px;
    margin: 0px 0px 20px 0px;
}
.index_sixth_wrap_form_box_input input{
    width: 100%;
    height: 65px;
    border-radius: 10px;
    border: 1px solid #D7D7D7;
    background-color: transparent;
    padding: 0px 20px;
    font-size: 20px;
    font-family: var(--kanit-light);
    color: #000000;
    margin: 0px 0px 15px 0px;
}
.index_sixth_wrap_form_box_input input::placeholder{
    color: #BEBEBE;
}
.index_seventh_wrapper {
    padding: 100px 0px;
    background-color: #F6FBFF;
    overflow: hidden;
}
.index_seventh_wrap_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 40px 0px;
}
.index_seventh_wrap_btn {
    display: flex;
    align-items: center;
    gap: 20px;
}
.index_seventh_wrap_text{
    margin: 0px 0px 70px 0px;
    text-align: center;
}
.index_seventh_wrap_text h6{
    margin: 0px 0px 20px 0px;
}
.index_seventh_wrap_text p{
    color: var(--black);
    width: 1300px;
    margin: 0 auto;
}
.seventh_slider {
    overflow: visible;
}
.seventh_slider .swiper-wrapper {
    padding: 0px 0px 40px 0px;
}
.seventh_slider .swiper-pagination-bullet{
    border-radius: 21px;
    opacity: 0.7;
    background: #183266;
    transition: .5s ease;
}
.seventh_slider .swiper-pagination-bullet-active{
    width: 17px;
    background-color: #0057FF;
}
.index_seventh_box {
    border-radius: 36px;
    background-color: var(--white);
    box-shadow: 0px 123px 100px 0px rgba(3, 24, 40, 0.05);
    padding: 100px 30px 40px 30px;
}
.index_seventh_box_author {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 69px;
}
.index_seventh_box_author img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_seventh_box_author span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #d1f9ea;
    font-size: 20px;
    font-family: var(--kanit-bold);
    color: var(--black);
}
.index_seventh_box_img ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0px 0px 30px 0px;
}
.index_seventh_box_img ul li{
    font-size: 20px;
    font-family: var(--visbybold);
    color: #E94E3C;
    line-height: 1;
}
.index_seventh_box_img img, .index_seventh_box_img svg {
    max-width: 120px;
    margin: 0px 0px 15px 0px;
}
.index_seventh_box_img ul li span {
    color: var(--black);
}
.index_seventh_box_flex{
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    justify-content: end;
    gap: 10px;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}
.index_seventh_box_text h6{
    font-size: 18px;
    font-family: var(--spacegrotesk-medium);
    color: var(--black);
}
.index_seventh_box_text h4{
    font-size: 20px;
    font-family: var(--spacegrotesk-regular);
    color: var(--black);
}
.index_seventh_box_review p{
    font-size: 14px;
    font-family: var(--spacegrotesk-medium);
    color: #222222;
    text-align: center;
    height: 150px;
}
.common_fill_btn_wrap_dark svg,
.common_fill_btn_wrap_dark img{
    max-width: 120px;
}
.common_fill_btn_wrap_dark img {
    filter: brightness(0) invert(1);
}
.index_eighth_wrapper{
    padding: 100px 0px;
    position: relative;
    z-index: 3;
}
.index_eighth_wrap_top_left_bg,
.index_eighth_wrap_bottom_right_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.index_eighth_wrap_text{
    margin: 0px 0px 50px 0px;
}
.index_eighth_wrap_text h6{
    text-transform: capitalize;
    margin: 0px 0px 25px 0px;
}
.index_eighth_wrap_text p{
    width: 60%;
    line-height: 1;
    color: var(--black);
}
.index_eighth_wrap_input input {
    width: 100%;
    padding: 20px 0px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--black);
    font-size: 18px;
    font-family: var(--kanit-light);
    color: var(--black);
    opacity: 0.5;
    transition: .5s ease;
    margin: 0px 0px 30px 0px;
}
.index_eighth_wrap_input input::placeholder{
    color: var(--black);
}
.index_eighth_wrap_input input:focus{
    border-color: #CBDD5A;
    opacity: 1;
}
.index_eighth_wrap_text2 h6{
    color: var(--white);
    margin: 0px 0px 25px 0px;
}
.index_eighth_wrap_text2 ul {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0px 0px 40px 0px;
}
.index_eighth_wrap_text2 ul li:first-child{
    width: 300px;
}
.index_eighth_wrap_text2 ul li{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-family: var(--kanit-light);
    color: var(--black);
}
.index_eighth_wrap_text2 ul li a{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-family: var(--kanit-light);
    color: var(--black);
}
.index_eighth_wrap_img_wrap{
    position: relative;
}
.index_eighth_wrap_img_inner{
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    right: 20%;
}
.index_eighth_wrap_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo_slider{
    padding: 20px 0px;
}
.logo_slider ul {
    display: flex;
    align-items: center;
    gap: 3vw;
    width: 250vw;
    animation: first_marquee 50s linear infinite;
}
/* INDEX-CSS */

/* INNER-CSS */
.inner_common_banner {
    background-color: var(--black);
    padding: 130px 0px 0px 0px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 500px;
}
.inner_common_banner::before {
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.55;
    background: #000;
    position: absolute;
    top: 0px;
    left: 0px;
    user-select: none;
    z-index: -1;
}
.inner_banner_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.inner_banner_bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner_common_wrap_text h6{
    color: var(--white);
    margin: 0px 0px 15px 0px;
    text-transform: capitalize;
}
.inner_common_wrap_text p{
    margin: 0px 0px 20px 0px;
}
.inner_btn_flex{
    display: flex;
    align-items: center;
    gap: 10px;
}
.inner_common_banner_btn .common_fill_btn span {
    width: 300px;
}
.inner_banner_form_box_btn .hov_btn1 {
    background-color: #CBDD5A;
}
.inner_banner_form_box_btn .hov_btn2 {
    background-color: var(--black);
    color: var(--white);
}
.inner_banner_form_box {
    background-color: #ffffffd1;
    padding: 50px 40px;
    border-radius: 15px;
    width: 70%;
    margin: 0 auto;
    backdrop-filter: blur(6px);
}
.inner_banner_form_box_text{
    margin: 0px 0px 20px 0px;
}
.inner_banner_form_box_text h3{
    font-size: 26px;
    font-family: var(--spacegrotesk-medium);
    color: var(--black);
    text-transform: capitalize;
}
.inner_banner_form_box_text h6{
    font-size: 40px;
    font-family: var(--spacegrotesk-bold);
    color: var(--black);
}
.inner_banner_form_box_input input{
    width: 100%;
    height: 50px;
    padding: 0px 20px;
    background-color: transparent;
    border: 1px solid #bcb9b9;
    font-size: 16px;
    font-family: var(--kanit-light);
    color: var(--black);
    transition: .5s ease;
    margin: 0px 0px 20px 0px;
    border-radius: 8px;
}
.inner_banner_form_box_input textarea{
    width: 100%;
    height: 150px;
    padding: 20px 20px;
    background-color: transparent;
    border: 1px solid #bcb9b9;
    resize: none;
    font-size: 16px;
    font-family: var(--kanit-light);
    color: var(--black);
    transition: .5s ease;
    margin: 0px 0px 20px 0px;
    border-radius: 8px;
}
.about_first_wrapper{
    padding: 100px 0px;
}
.about_first_wrap_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_first_wrap_text{
    margin: 0px 0px 15px 0px;
}
.about_first_wrap_text h3{
    font-size: 35px;
    font-family: var(--spacegrotesk-medium);
    color: var(--black);
}
.about_first_wrap_text h6{
    margin: 0px 0px 15px 0px;
}
.about_first_wrap_text p{
    color: var(--black);
}
.about_second_wrapper{
    background-color: #F6FBFF;
    padding: 100px 0px;
    z-index: 4;
    position: relative;
}
.about_second_wrap_text{
    margin: 0px 0px 50px 0px;
}
.about_second_wrap_text h3 {
    font-size: 30px;
    font-family: var(--spacegrotesk-medium);
}
.about_second_wrap_box{
    background-color: #EDF4F9;
    padding: 50px 40px;
    border-radius: 10px;
    transition: .5s ease;
    border: 2px solid transparent;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about_second_wrap_box:hover{
    background-color: transparent;
    border-color: #000;
}
.about_second_wrap_box_text h6{
    font-size: 30px;
    font-family: var(--spacegrotesk-bold);
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.about_second_wrap_box_text p{
    font-size: 18px;
    font-family: var(--spacegrotesk-regular);
    color: var(--black);
    margin: 0px 0px 15px 0px;
}
.about_second_wrap_box_btn .hov_btn1,
.about_second_wrap_box_btn .hov_btn2 {
    font-size: 16px;
    width: auto;
    padding: 0px 20px;
}
.about_fourth_wrapper{
    padding: 100px 0px 0px 0px;
}
.inner_slider{
    padding: 0px 20px 60px 20px;
}
.about_fourth_wrap_box {
    height: 470px;
}
.about_fourth_wrap_box_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_fourth_wrap_box_text h6{
    font-size: 24px;
    font-family: var(--spacegrotesk-bold);
    color: var(--black);
}
.about_fourth_wrap_box_text p{
    font-size: 18px;
    font-family: var(--kanit-light);
    color: var(--black);
}
.about_fourth_wrap_box_img{
    margin: 0px 0px 15px 0px;
}
.inner_slider .swiper-pagination .swiper-pagination-bullet-active-next,
.inner_slider .swiper-pagination .swiper-pagination-bullet-active-next-next,
.inner_slider .swiper-pagination .swiper-pagination-bullet-active-prev,
.inner_slider .swiper-pagination .swiper-pagination-bullet-active-prev-prev{
    background: #22205b;
    opacity: 1;
}
.inner_slider .swiper-pagination .swiper-pagination-bullet-active{
    background: #ccea55;
    opacity: 1;
}
.testimonial_banner{
    height: 600px;
}
.about_new_wrapper{
    padding: 20px 0px;
    background-color: #F6FBFF;
}
.about_new_wrap_box_img{
    overflow: hidden;
    border-radius: 10px;
    margin: 0px 0px 10px 0px;
}
.about_new_wrap_box_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_new_wrap_text{
    text-align: center;
    margin: 0px 0px 50px 0px;
}
.about_new_wrap_box_text h6{
    font-size: 50px;
    font-family: var(--spacegrotesk-bold);
    color: var(--black);
    text-align: center;
}
.casestudies_first_wrapper{
    padding: 100px 0px;
}
.casestudies_first_wrap_text .heading{
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    text-transform: capitalize;
}
.casestudies_first_wrap_text .desc{
    color: var(--black);
}
.casestudies_first_wrap_text ul{
    padding: 0px 0px 0px 20px;
}
.casestudies_first_wrap_text ul li{
    font-size: 20px;
    font-family: var(--kanit-light);
    color: var(--black);
}
/* INNER-CSS */

/* FOOTER-CSS */
.footer_wrapper {
    background-color: #000F2C;
    padding: 100px 0px 0px 0px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.footer_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000B20;
    z-index: -1;
    opacity: 0.4;
}
.footer_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.footer_bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer_text_bg h6{
    font-size: 405px;
    font-family: var(--kanit-bold);
    color: var(--white);
    line-height: 1;
    text-shadow: 0px 98px 15px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    opacity: 0.3;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}
.footer_logo{
    margin: 0px 0px 25px 0px;
}
.footer_text h6{
    font-size: 50px;
    font-family: var(--kanit-light);
    color: var(--white);
    line-height: 1;
    margin: 0px 0px 20px 0px;
}
.footer_social ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer_social ul li a i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: var(--white);
    color: var(--black);
    font-size: 18px;
    transition: .5s ease;
}
.footer_social ul li a i:hover{
    transform: rotate(360deg) scale(1.1);
    background-color: #CBDD5A;
}
.footer_links h6{
    font-size: 25px;
    font-family: var(--spacegrotesk-regular);
    color: var(--white);
    margin: 0px 0px 30px 0px;
}
.footer_links ul li a{
    font-size: 16px;
    font-family: var(--kanit-light);
    color: var(--white);
    line-height: 2;
}
.active_nav{
    color: #CBDD5A !important;
    font-family: var(--kanit-medium) !important;
}
.footer_info h6{
    font-size: 20px;
    font-family: var(--spacegrotesk-regular);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.footer_info a{
    display: block;
    font-size: 18px;
    font-family: var(--kanit-light);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.footer_info_img_1{
    margin: 0px 0px 15px 0px;
}
.footer_info_img_2{
    margin: 0px 0px 15px 0px;
}
.footer_info ul li{
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 18px;
    font-family: var(--kanit-light);
    color: var(--white);
    margin: 0px 0px 15px 0px;
    line-height: 1.7;
}
.footer_info ul li i{
    color: #CBDD5A;
}
.copyright {
    position: relative;
    padding: 20px 0px;
    margin: 100px 0px 0px 0px;
}
.copyright::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0.3;
    background-color: var(--white);
}
.copyright_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright_text p{
    font-size: 16px;
    font-family: var(--kanit-light);
    color: var(--white);
}
.copyright_nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.copyright_nav ul li a{
    font-size: 16px;
    font-family: var(--kanit-light);
    color: var(--white);
}
/* FOOTER-CSS */

/* ANIMATIONS */

@keyframes first_marquee {
    0% {
        transform: translateX(0)
    }

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

    to {
        transform: translateX(0)
    }
}

/* ANIMATIONS */

/*ADDITIONAL CSS*/
.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(--kanit-light);
    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;
    resize: none;
    font-family: var(--kanit-light);
    font-size: 18px;
    color: var(--white);
    padding: 10px;
    transition: .5s ease
}
.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(--kanit-light);
    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%;
}
.form_modal_text h5{
    color: var(--white);
}
.common_fill_btn_wrap_dark span {
    background: var(--black);
    color: var(--white);
    width: 180px !important;
}
.about_new_work_f {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about_new_wrapper .index_first_wrap_mrq_f img {
    width: 160px;
}
.about_new_wrapper .index_first_wrap_mrq_f {
    gap: 7%;
}
.about_new_wrapper .index_first_wrap_mrq {
    margin: 0px 0px 30px 0px;
}
.thank_first_wrapper {
    background: #000F2C;
    padding: 150px 0px 100px 0px;
    height: 100vh;
    display: flex;
    align-items: center;
}
.btn_set{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.thank_first_wrapper .heading{
    color: var(--white);
    margin: 0px 0px 15px 0px;
    text-align: center;
}
.thank_first_wrapper .desc{
    margin: 0px 0px 30px 0px;
    text-align: center;
}
.index_third_girl_bg_2 {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 800px;
}
/*ADDITIONAL CSS*/