/* 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;
    --black2: #111111;
    --common-gradient: linear-gradient(99deg, #E914BE 8.16%, #5D58CE 64.51%, #06C1EA 115.69%);
    --canelaDeck-regular-trial: "CanelaDeck-Regular-Trial";
    --canelaDeck-light-trial: "CanelaDeck-Light-Trial";
    --readexPro-regular: "ReadexPro-Regular";
    --rEBELTON-regular: "REBELTON-Regular";
    --readexPro-light: "ReadexPro-Light";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "CanelaDeck-Regular-Trial";
    src: url("../webfonts/CanelaDeck-Regular-Trial.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "CanelaDeck-Light-Trial";
    src: url("../webfonts/CanelaDeck-Light-Trial.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "ReadexPro-Regular";
    src: url("../webfonts/ReadexPro-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "ReadexPro-Light";
    src: url("../webfonts/ReadexPro-Light.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "REBELTON-Regular";
    src: url("../webfonts/REBELTON-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_btn_light{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 210px;
    height: 60px;
    background-color: var(--white);
    border-radius: 100px;
    padding: 0px 0px 4px 30px;
    font-size: 13px;
    font-family: var(--rEBELTON-regular);
    color: var(--black);
    line-height: 1;
    position: relative;
    z-index: 3;
    transition: .5s ease;
    border: 0;
}
.common_btn_light:hover{
    color: var(--white);
}
.common_btn_light::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 55.157px;
    background: var(--common-gradient);
    z-index: -1;
    transition: .5s ease;
}
.common_btn_light:hover::before{
    width: 100%;
    height: 100%;
    right: 0;
}
.common_btn_light span{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 16px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.common_btn_light span .btn_ico_1{
    position: absolute;
    left: -25px;
    transition: .7s ease;
}
.common_btn_light span .btn_ico_2{
    transition: .7s ease;
}
.common_btn_light:hover span .btn_ico_1{
    left: 0px;
}
.common_btn_light:hover span .btn_ico_2{
    transform: translateX(25px);
}
.common_btn_dark{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 210px;
    height: 60px;
    background-color: #140C14;
    border-radius: 100px;
    padding: 0px 0px 4px 30px;
    font-size: 14px;
    font-family: var(--rEBELTON-regular);
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 3;
    transition: .5s ease;
    border: 0;
}
.common_btn_dark:hover{
    color: var(--white);
}
.common_btn_dark::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 55.157px;
    background: var(--common-gradient);
    z-index: -1;
    transition: .5s ease;
}
.common_btn_dark:hover::before{
    width: 100%;
    height: 100%;
    right: 0;
}
.common_btn_dark span{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 16px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.common_btn_dark span .btn_ico_1{
    position: absolute;
    left: -25px;
    transition: .7s ease;
}
.common_btn_dark span .btn_ico_2{
    transition: .7s ease;
}
.common_btn_dark:hover span .btn_ico_1{
    left: 0px;
}
.common_btn_dark:hover span .btn_ico_2{
    transform: translateX(25px);
}
.desc{
    font-size: 16px;
    font-family: var(--readexPro-light);
    color: #686868;
}
/* COMMON-CSS */


/* HEADER-CSS */
.header_wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0px;
    z-index: 99999999;
}
.header_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_logo {
    max-width: 250px;
}
.header_logo_cus_height{
    max-width: 160px;
}
/* HEADER-CSS */


/* INDEX-CSS */
.index_banner_wrapper {
    position: relative;
    padding: 100px 0px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index_banner_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(183deg, rgba(0, 0, 0, 0.00) 25.45%, rgba(102, 102, 102, 0.00) 68.37%);
    mix-blend-mode: hard-light;
    z-index: -1;
}
.index_banner_wrap_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.index_banner_wrap_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_banner_wrap_form {
    background-color: #f3f4f6;
    border-radius: 10px;
    padding: 60px 40px;
    width: 40%;
}
.form-fleid {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 5px;
}
.index_banner_form_ttext h6{
    font-size: 40px;
    font-family: var(--canelaDeck-regular-trial);
    color: var(--black);
    margin: 0 0 25px 0;
    text-align: center;
    text-transform: uppercase;
}
.index_banner_wrap_input {
    margin: 0px 0px 20px 0px;
    position: relative;
}
.index_banner_wrap_input label {
    font-size: 20px;
    font-family: var(--readexPro-light);
    color: var(--black2);
    padding: 0 0 0px 5px;
    margin: 0 0 10px 0;
}
.index_banner_wrap_input input {
    font-size: 16px;
    font-family: var(--readexPro-light);
    color: var(--black);
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #8d8d8d;
    background-color: transparent;
    padding: 0px 15px;
}
.index_banner_wrap_input textarea {
    font-size: 16px;
    font-family: var(--readexPro-light);
    color: var(--black);
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 1px solid #8d8d8d;
    background-color: transparent;
    padding: 20px 15px;
    resize: none;
}
.index_banner_wrap_input select {
    font-size: 16px;
    font-family: var(--readexPro-light);
    color: #8e8e8e;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #8d8d8d;
    background-color: transparent;
    padding: 0px 15px;
}
.index_banner_wrap_input select option {
    background: var(--black);
    color: var(--white);
}
.index_banner_wrap_btn {
    margin: 30px 0px 0px 0px;
}
/* INNER-CSS */
.common_banner_wrapper {
    position: relative;
    padding: 170px 0px 50px 0;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.common_banner_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(183deg, rgba(0, 0, 0, 0.00) 25.45%, rgba(102, 102, 102, 0.00) 68.37%);
    mix-blend-mode: hard-light;
    z-index: -1;
}
.common_banner_wrap_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.common_banner_wrap_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.common_banner_wrap_text h6 {
    font-size: 60px;
    font-family: var(--canelaDeck-regular-trial);
    color: var(--black);
    text-transform: uppercase;
}
.service_first_wrapper {
    padding: 200px 0px 100px 0px;
    min-height: 60vh;
    background-image: url('../images/sec_bg.png');
    background-position: top;
    background-size: cover;
}
.service_firsat_wrap_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 50px 0;
}
.service_first_wrap_cr_text {
    padding: 10px 20px 30px 20px;
}
.services_first_wrap_text h6 {
    font-size: 50px;
    font-family: var(--canelaDeck-regular-trial);
    color: var(--black);
    text-transform: uppercase;
}
.services_first_wrap_right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.service_first_wrap_input select {
    font-size: 16px;
    font-family: var(--readexPro-light);
    color: var(--black2);
    width: 275px;
    height: 70px;
    border-radius: 66.746px;
    border: 0.834px solid rgba(0, 0, 0, 0.10);
    background-color: #FFF;
    padding: 10px 20px;
}
.service_first_wrap_input select option {
    background-color: var(--black2);
    color: var(--white);
}
.service_first_wrap_main {
    --cols: 4;
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    gap: 15px;
}
.service_first_wrap_cr {
    position: relative;
    border: 1px solid #E8EDF1;
    border-radius: 10px;
}
.service_first_wrap_cr_img {
    overflow: hidden;
    width: 100%;
    height: 250px;
    margin: 0 0 30px 0;
}
.service_first_wrap_cr_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.service_first_wrap_cr:hover .service_first_wrap_cr_img img {
    transform: scale(1.1);
}
.service_first_wrap_cr_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 15px 0px;
}
.service_first_wrap_cr_heading h6 {
    font-size: 22px;
    font-family: var(--readexPro-light);
    color: var(--black2);
    text-transform: capitalize;
}
.service_first_wrap_cr_heading span h5 {
    font-size: 20px;
    font-family: var(--readexPro-regular);
    color: #1E40AF;
    text-align: end;
}
.service_first_wrap_cd_desc p {
    font-size: 15px;
    font-family: var(--readexPro-light);
    color: #686868;
    margin: 0px 0px 20px 0px;
    height: 65px;
}


.index_sixth_wrapper {
    padding: 80px 0px 0px 0px;
    background-color: var(--white);
    position: relative;
    background-image: url(../images/sixth_bg.png);
    background-position: bottom;
    background-size: cover;
    height: 90vh;
    z-index: 5;
    overflow: hidden;
}
.index_sixth_wrap_bg_vid {
    position: absolute;
    bottom: -445px;
    left: 0;
    width: 1035px;
    height: 1900px;
    opacity: 0.4;
    mix-blend-mode: screen;
    transform: rotate(90deg);
    z-index: -2;
}
.index_sixth_wrap_bg_vid video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_sixth_wrapper::before {
    content:'';
    position: absolute;
    width: 100%;
    height: 99px;
    top: -99px;
    left: 0;
    background-image: url(../images/index_fifith_wrap_bg.png);
    background-position: center;
    background-size: cover;
}
.index_sixth_wrapper::after{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.00) 19.96%, #070707 87.21%);
    z-index: -1;
}
.index_sixth_wrap_text{
    text-align: center;
    margin: 0px 0px 50px 0px;
}
.index_sixth_wrap_text h6 {
    font-size: 23px;
    font-family: var(--canelaDeck-regular-trial);
    color: var(--black);
    text-transform: uppercase;
}


/* INDEX-CSS */


/* INNER-CSS */
.listing_detail_wrapper{
    padding: 100px 0px;
}
.listing_detail_wrap_img_wrap_text h4{
    font-size: 24px;
    font-family: var(--canelaDeck-light-trial);
    color: var(--black2);
}
.listing_table_wrap {
    width: 100%;
    margin: 10px 0px 20px 0px;
}
.listing_table_wrap tr td {
    border: 1px solid var(--black);
    font-size: 16px;
    font-family: var(--readexPro-light);
    padding: 10px;
}
.listing_detail_wrap_info_table{
    width: 100%;
}
.listing_detail_wrap_info_table tr th{
    font-size: 16px;
    font-family: var(--canelaDeck-light-trial);
    color: var(--black);
    padding: 5px;
}
.listing_detail_wrap_info_table tr td{
    font-size: 16px;
    font-family: var(--readexPro-light);
    color: var(--black);
    padding: 5px;
}
.listing_detail_wrap_info_table tr td div{
    display: flex;
    align-items: center;
    gap: 5px;
}
.listing_detail_wrap_info_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px 50px 0px;
}
.listing_detail_wrap_info_btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 50px;
    background-color: var(--black);
    font-size: 16px;
    font-family: var(--readexPro-regular);
    border-radius: 100px;
    border: 0;
    color: var(--white);
}
.listing_detail_wrap_info_btn button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 50px;
    background-color: var(--black);
    font-size: 16px;
    font-family: var(--readexPro-regular);
    border-radius: 100px;
    border: 0;
    color: var(--white);
}
.listing_detail_wrap_info_text{
    margin: 0px 0px 20px 0px;
}
.listing_detail_wrap_info_text h6{
    font-size: 20px;
    font-family: var(--canelaDeck-light-trial);
    color: var(--black);
    margin: 0px 0px 5px 0px;
}
.listing_detail_wrap_info_text p{
    font-size: 16px;
    font-family: var(--readexPro-regular);
    color: #686868;
    width: 70%;
}
.hide{
    display: none;
}


.review_first_wrapper {
    padding: 100px 0px;
}
.review_first_wrap_top {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    border-radius: 15px;
    box-shadow: #0000004d 0px 0px 9px;
    padding: 30px 50px;
    margin: 0px 0px 30px 0px;
}
.review_first_wrap_top_box {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    gap: 40px;
    height: 110px;
}
.review_first_wrap_top_box_heading h6 {
    font-size: 16px;
    font-family: var(--rEBELTON-regular);
    color: #111111a1;
    text-transform: uppercase;
}
.review_first_wrap_top_box_text p {
    font-size: 18px;
    font-family: var(--readexPro-regular);
    color: var(--black);
    text-transform: capitalize;
}
.review_first_wrap_top_box_text p span {
    color: red;
    font-family: var(--readexPro-light);
}

.review_first_wrap_bottom {
    border-radius: 15px;
    box-shadow: #0000004d 0px 0px 9px;
    padding: 30px 50px;
    margin: 0px 0px 30px 0px;
}
.review_first_wrap_bottom_box_text {
    padding: 20px;
    margin: 0px 0px 20px 0px;
}
.review_first_wrap_bottom_box_text h6 {
    font-size: 20px;
    font-family: var(--rEBELTON-regular);
    color: var(--black);
    text-transform: capitalize;
    margin: 0px 0px 15px 0px;
}
.review_first_wrap_bottom_box_text p {
    font-size: 18px;
    font-family: var(--canelaDeck-light-trial);
    color: var(--black);
    text-transform: capitalize;
}
.review_first_wrap_btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
.review_first_wrap_btn a, button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 50px;
    background-color: var(--black);
    font-size: 16px;
    font-family: var(--readexPro-regular);
    border-radius: 100px;
    border: 0;
    color: var(--white);
    transition: 0.5s all;
}
.review_first_wrap_btn a:hover {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black2);
}
.review_first_wrap_btn button:hover {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black2);
}
.review_first_wrap_top_box_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review_first_wrap_top_box_img {
    height: 60px;
}
.index_banner_form_ttext{
    text-align: center;
}
.index_banner_form_ttext i {
    color: blue;
    font-size: 40px;
    text-align: center;
    margin: 0 0 20px 0;
}
.terms_first_wrapper{
    padding: 100px 0px;
}
.terms_first_wrap_text h3{
    font-size: 40px;
    font-family: var(--canelaDeck-regular-trial);
    color: var(--black2);
    margin: 20px 0px 10px 0px;
}
.terms_first_wrap_text p{
    padding: 0px 0px 10px 0px;
}
.terms_first_wrap_text ul{
    padding: 0px 0px 0px 20px;
}
.terms_first_wrap_text ul li{
    font-size: 16px;
    font-family: var(--readexPro-light);
    color: #686868;
    margin: 0px 0px 5px 0px;
}
.terms_list_2 li{
    list-style: disc;
}
/* INNER-CSS */


/* FOOTER-CSS */
.footer_wrapper{
    padding: 100px  0px 37px 0px;
}
.footer_wrap_text h6 {
    font-size: 23px;
    font-family: var(--canelaDeck-regular-trial);
    color: var(--black);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 80px 0;
}
.footer_wrap_text h6 a {
    color: #b90000;
}
.footer_wrap_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_wrap_bottom_nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.footer_wrap_bottom_nav ul li a{
    font-size: 20px;
    font-family: var(--canelaDeck-regular-trial);
    color: var(--black);
    text-transform: capitalize;
    margin: 0px 0px 15px 0px;
}
.footer_wrap_bottom_logo {
    width: 210px;
}
/* FOOTER-CSS */

/*ADDITIONAL CSS*/
.pdf_modal .modal-dialog{
    max-width: 1100px;
}
.passenger_info_wrapper{
    padding: 100px 0px;
}
.listing_detail_wrap_info_text h4{
    font-size: 20px;
    font-family: var(--readexPro-regular);
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 20px 0px;
    border-bottom: 1px solid #111827;
}
.passenger_info_form_wrap {
    padding: 20px 0px 40px 0px;
    border-bottom: 1px solid #1118271a;
    margin: 0px 0px 40px 0px;
}
.combo-box {
    position: relative;
}
#countryList {
    display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    z-index: 100;
    padding: 0;
    margin: 0;
    list-style: none;
}
#countryList li {
    padding: 8px 12px;
    cursor: pointer;
}
#countryList li:hover {
    background-color: #f0f0f0;
}
#countryList2 {
    display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    z-index: 100;
    padding: 0;
    margin: 0;
    list-style: none;
}
#countryList2 li {
    padding: 8px 12px;
    cursor: pointer;
}
#countryList2 li:hover {
    background-color: #f0f0f0;
}
/*ADDITIONAL CSS*/