@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    transition: 0.5s;
}

/* Reveal-on-scroll base state */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Antonio", sans-serif !important;
}


.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

li {
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
}

a,
button {
    -webkit-transition: all 250ms ease 0s;
    -moz-transition: all 250ms ease 0s;
    -ms-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
}

button,
button:focus {
    outline: none;
    border: none;
    cursor: pointer;
}

input,
select,
textarea {
    font-size: 16px;
    line-height: 37px;
}

textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
    box-shadow: none;
}

input:hover,
input:active,
input:focus {
    outline: none;
    box-shadow: none;
}

select:hover,
select:active,
select:focus {
    outline: none;
    box-shadow: none;
}

input[type=number] {
    -moz-appearance: textfield;
    /*For FireFox*/
}

input[type=number]::-webkit-inner-spin-button {
    /*For Webkits like Chrome and Safari*/
    -webkit-appearance: none;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

label {
    margin: 0;
}


/* custom css start */

.custom_container {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0px auto;
}

.custom_row {
    margin-left: -15px;
    margin-right: -15px;
}

.d_block {
    display: block !important;
}

.d_flex {
    display: flex !important;
}

.flex_row {
    flex-direction: row !important;
}

.flex_row_reverse {
    flex-direction: row-reverse !important;
}

.flex_column {
    flex-direction: column !important;
}

.flex_column_reverse {
    flex-direction: column-reverse !important;
}

.cstm_col_3 {
    width: 25%;
}

.cstm_col_4 {
    width: 33.333%;
}

.cstm_col_6 {
    width: 50%;
}

.cmn_btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 60px;
    background: #FF6800;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.24px;
    text-transform: capitalize;
    box-shadow: 3px 6px 0px #051357;
}

.cmn_btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 6px 10px 16px rgba(5, 19, 87, 0.35);
}

.cmn_btn .rightArrow {
    display: inline-block;
    transition: 0.5s;
}
.cmn_btn:hover .rightArrow {
    transform: translate(8px, 0px);
}

.btn_area {
    width: 100%;
    display: inline-block;
    text-align: center;
}


/* ===============
header start
=============== */
header {
    width: 100%;
    display: inline-block;
    background-color: #FFFFFF;
    padding: 12px 0 10px;
}
header .navBrand {
    width: auto;
    display: inline-block;
}
header .email_hdr {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 115%;
    font-weight: 400;
    color: #051357;
}
header .email_hdr:hover {
    color: #FF6800;
}
/* ===============
header end
=============== */

/* ===============
footer start
=============== */
.copyright_section {
    width: 100%;
    display: inline-block;
    padding: 41px 0 61px;
    background-color: #051357;
}
.copyright_section p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.52px;
    letter-spacing: 0.24px;
    display: inline-block;
}

/* ===============
footer end
=============== */

.banner_section {
    width: 100%;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 0;
    text-align: center;
}
.banner_section .banner_progress {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 420px;
    height: 120px;
    background: rgba(255, 255, 255, 0.50);
    border-radius: 24px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_section .progress_wrap {
    width: 85%;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    gap: 14px;
}
.banner_section .progress_count {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0E1C74;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Antonio';
    font-size: 36px;
    font-weight: 700;
}
.banner_section .progress_track {
    width: 100%;
    height: 12px;
    border-radius: 12px;
    background: #051357;
    overflow: hidden;
}
.banner_section .progress_bar {
    width: 0%;
    height: 100%;
    background: #FF6800;
}
.banner_section .bnrImg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.banner_section .banner_slideCont {
    width: 100%;
    min-height: calc(100vh - 105px);
    position: relative;
    display: flex;
    align-items: center;
    padding: 45px 0;
}
.banner_section .banner_slideCont::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 16, 70, 0.50);
    z-index: -1;
}
.banner_section .bnr_subHd {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 54px rgba(0, 0, 0, 0.55);
    font-family: 'Antonio';
    font-size: 46px;
    font-weight: 700;
    line-height: 69px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    display: block;
}
.banner_section .bnrTitle {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 54px rgba(0, 0, 0, 0.55);
    font-size: 102px;
    font-weight: 700;
    line-height: 156px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.mark_color {
    color: #FF6800;
}
.bnr_btn {
    margin-top: 48px;
}


.bnr_btm_form_section {
    width: 100%;
    display: inline-block;
    padding: 121px 0 32px;
    background-color: #FFFFFF;
}
.bnr_btm_paragraph {
    width: 100%;
    display: inline-block;
}
.bnr_btm_paragraph h2 {
    color: #FF6800;
    font-size: 55px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    margin-bottom: 19px;
}
.bnr_btm_paragraph h2 > span {
    display: block;
    color: #000;
    font-weight: 100;
}
.bnr_btm_paragraph p {
    color: #3D3F46;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.24px;
    text-transform: capitalize;
}

.explore_more_section {
    width: 100%;
    display: inline-block;
    padding: 50px 0 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.explore_more_section::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) -11.17%, #000 93.54%);
    left: 0;
    top: 0;
    z-index: -1;
}
.ex_hd {
    width: 100%;
    display: inline-block;
    text-align: center;
}
.ex_hd h2 {
    color: #FF6800;
    font-size: 89px;
    font-style: normal;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.ex_hd h2 > span {
    display: block;
    color: #FFF;
    font-family: 'Antonio';
    font-size: 55px;
    font-weight: 100;
    line-height: 70px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.ex_subPara {
    color: #D9D9D9;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.24px;
    text-transform: capitalize;
    margin: 10px auto 0;
    max-width: 916px;
}

.explore_slideBx {
    width: 100%;
    position: relative;
    margin-top: 47px;
}
.explore_slid_itm {
    padding: 0 15px;
}
.flight {
    width: 115px;
    height: 115px;
    display: block;
    margin: 0 auto -58px;
    animation: flight-float 2.4s ease-in-out infinite;
    will-change: transform;
    position: relative;
    z-index: 3;
}
.flight {
}
@keyframes flight-float {
    0% { transform: translateY(2px) rotate(0deg); }
    25% { transform: translateY(8px) rotate(-1.5deg); }
    50% { transform: translateY(2px) rotate(0deg); }
    75% { transform: translateY(8px) rotate(1.5deg); }
    100% { transform: translateY(2px) rotate(0deg); }
}
.explore_slidImg {
    width: 100%;
    display: inline-block;
    position: relative;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    padding-bottom: 60%;
    padding-top: 135px;
}
.explore_slidImg::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(207, 205, 205, 0.00) 0%, #000 92.33%);
    z-index: 1;
}
.explore_slidImg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.explore_slider .slick-arrow {
    font-size: 0;
    line-height: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #FF6800;
    background-image: url(../images/slider-right-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
}
.explore_slider .slick-arrow.slick-prev {
    background-image: url(../images/slider-left-arrow.png);
    left: -45px;
}

.explore_slider .slick-arrow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255,104,0,0.5);
    animation: pulse-ring 1.6s ease-out infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255,104,0,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(255,104,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,104,0,0); }
}


.ex_loc_nm {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 30px 20px;
}
.ex_loc_nm strong {
    display: block;
    color: #FFF;
    font-family: 'Antonio';
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.ex_loc_nm h4 {
    color: #FF6800;
    font-size: 64px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}

.trust_rivw_section {
    width: 100%;
    display: inline-block;
    padding: 40px 0 20px;
}
.trust_secHd {
    width: 100%;
    display: inline-block;    
    text-align: center;
    margin-bottom: 40px;
}
.trust_secHd h2 {
    color: #FF6800;
    font-size: 67px;
    font-weight: 700;
    line-height: 101px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.trust_secHd h3 {
    color: #000;
    font-size: 41px;
    font-weight: 700;
    line-height: 46px; 
    letter-spacing: 0.24px;
    text-transform: uppercase;
    margin-top: 40px;
}


.transfer_section {
    width: 100%;
    display: inline-block;
    padding: 0 0 77px;
    background-color: #FFFFFF;
}
.transfer_hd {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
}
.transfer_hd h2 {
    color: #FF6800;
    text-align: center;
    font-size: 89px;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.transfer_hd h2 > span {
    display: block;
    color: #000;
    font-size: 55px;
    font-weight: 100;
    line-height: 70px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.transfer_sec_para {
    color: #3D3F46;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.24px;
    text-transform: capitalize;
}
.transfer_location_bx {
    margin-top: 81px;
}
.transfer_location_bx > .row {
    row-gap: 40px;
}

.locationBx {
    width: 100%;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 56.25%;
    padding-top: 120px;
}
.locationBx > img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.locationBx .locaton_nm {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.80);
    padding: 29.5px 20px;
    color: #FF6800;
    text-align: center;
    font-family: 'Antonio';
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.locaiton_mrk {
    width: 101px;
    height: 101px;
    display: block;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 100%;
}
.vw_city {
    margin-top: 89px;
}

.why_chose_section {
    width: 100%;
    display: inline-block;
    padding: 80px 0 100px;
    background: linear-gradient(101deg, #051357 -0.36%, #FF517A 313.43%);
}
.why_chose_hd {
    text-align: center;
    margin-bottom: 10px;
}
.why_chose_hd h2 {
    color: #FF6800;
    font-size: 89px;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.why_chose_hd h3 {
    color: #FFFFFF;
    font-size: 55px;
    font-weight: 100;
    line-height: 70px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.why_chos_hd_para {
    color: #D9D9D9;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.24px;
    text-transform: capitalize;
}
.why_chose_cont {
    width: 100%;
    display: inline-block;
    margin-top: 80px;
    padding: 0px 49px !important;
}
.why_chose_cont .row {
    margin: 0px -49px !important;
    row-gap: 100px;
}
.why_chose_cont .chose_col {
    padding: 0px 49px !important;
    display: flex;
}

.why_chose_card {
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 37px 45px 41px;
    border-radius: 10px;
    background: #FFF;    
}
.why_chose_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    transition: transform 300ms ease, box-shadow 300ms ease;
}
.chose_iconBx {
    width: 170px;
    height: 170px;
    border: 1px solid #051357;
    border-radius: 50%;
    margin: 0 auto 33px;
}
.chose_iconBx .chose_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid #FFFFFF;
    background-color: #FF6800;
    width: 100%;
    height: 100%;
    padding: 21px;
    border-radius: 50%;
}
.why_chose_card h4 {
    color: #000;
    font-family: "Poppins", sans-serif !important;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    text-transform: capitalize;
    max-width: 65%;
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
}
.why_chose_card p {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
}
.why_chose_card .bookNow_btn {
    margin-top: 23px;
}

.media_secetion {
    width: 100%;
    padding: 87px 0 84px;
    background: #FFFFFF;
}
.media_hd {
    color: #FF6800;
    text-align: center;
    font-size: 67px;
    font-weight: 700;
    line-height: 101px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    margin-bottom: 57px;
}

.youtube_vdo {
    width: 100%;
    display: inline-block;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}
.youtube_vdo iframe {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: contain;
}

.instagram_area {
    margin-top: 64px;
    width: 100%;
    display: inline-block;
}
.instagram_area iframe {
    width: 100%;
}

.download_bx {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 0;
    border-radius: 50px;
    background: linear-gradient(101deg, #051357 -0.36%, #FF517A 313.43%);
    padding: 45px 96px 85px;
    box-shadow: 6px 7px 13px #051357;

}
.download_bx h2 {
    color: #FF6800;
    text-align: center;
    font-size: 89px;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.download_bx h2 span {
    display: block;
    color: #FFF;
    font-size: 55px;
    font-weight: 100;
    line-height: 70px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.download_bx p {
    color: #D9D9D9;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.24px;
    text-transform: capitalize;
}
.download_place {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 37px;
    margin-top: 53px;
}
.download_place a {
    display: inline-block;
}