/* ========== header css code start ========== */
/* top header css code start */
.top_header {
    background-color: var(--black-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.top_header .left_box,
.top_header .right_box {
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
}

.top_header .left_box ul li,
.top_header .right_box ul li {
    padding: .3rem .4rem;
}

.top_header .left_box ul li a,
.top_header .right_box ul li a {
    color: var(--white-color);
    font-size: .9rem;
}

.top_header .right_box ul {
    justify-content: right;
}

/* top header css code end */

/* navbar css code start */
.navbar {
    /* background-color: rgba(242, 251, 255, 0.5); */
    background-color: var(--white-color);
    position: fixed;
    top: -100rem;
    left: 0;
    width: 100%;
}

.nav_stickey {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 999;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar .left_box {
    /* flex: 0 0 200px;
    max-width: 200px;
    width: 20%; */
    flex-basis: 260px;
}

.navbar .left_box .logo_box {
    width: 100%;
    padding: .4rem 0;
}

.navbar .left_box .logo_box img {
    width: 100%;
}

.navbar .right_box {
    /* flex: 0 0 80%;
    max-width: 80%;
    width: 80%; */
    flex-basis: 100%;
}

.navbar .right_box .flex_container {
    align-items: center;
    justify-content: right;
    height: 100%;
}

.navbar .right_box .flex_container .navbar_list {
    position: relative;
    height: 100%;
}

.navbar .right_box .flex_container .navbar_list:hover .navbar_list_anker {
    color: var(--dark-blue-color);
}

.navbar .right_box .flex_container .navbar_list .navbar_list_anker {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 .5rem;
    font-size: 1rem;
    color: var(--black-color);
    font-weight: 500;
    transition: all .4s ease-in;
}

.navbar .right_box .flex_container .navbar_list .navbar_list_anker .fa-angle-down {
    padding: 0 .3rem;
    font-size: .8rem;
    transition: all .4s ease-in;
}

.navbar .right_box .flex_container .navbar_list:hover .fa-angle-down {
    transform: rotate(180deg);
}

.navbar .right_box .flex_container .navbar_list .dropdown_list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--white-color);
    transition: all .4s ease-in;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /* padding-top: 1rem; */
    display: none;
    /* background-color: rgba(242, 251, 255, 0.5); */
    background-color: var(--white-color);
}

.navbar .right_box .flex_container .navbar_list:hover .dropdown_list {
    display: block;
    animation-duration: 0.5s;
    animation-name: fadeInUp;
}

.navbar .right_box .flex_container .navbar_list .dropdown_list .navbar_inner_list {
    border-bottom: 1px solid var(--light-gray-color);
    padding: .6rem;
    transition: all .4s ease-in;
}

.navbar .right_box .flex_container .navbar_list .dropdown_list .navbar_inner_list .navbar_inner_list_anker {
    color: var(--black-color);
    font-weight: 500;
    transition: all .4s ease-in;
    font-size: 1rem;
}

.navbar .right_box .flex_container .navbar_list .dropdown_list .navbar_inner_list:hover {
    background-color: var(--dark-blue-color);
}

.navbar .right_box .flex_container .navbar_list .dropdown_list .navbar_inner_list:hover .navbar_inner_list_anker {
    padding-left: .5rem;
}

.humber_menu {
    font-size: 1.5rem;
    color: var(--dark-blue-color);
    display: none;
}

/* navbar css code end */

/* ========== mobile navbar section start ========== */
.mobile_navbar_container{
    width: 100%;
    height: 100vh;
    /* border: 1px solid; */
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 999;
    background-color: rgba(111, 181, 228, 0.5);
    backdrop-filter: blur(15px);
    transition: all .5s ease-in;
}
.mobile_navbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background-color: var(--very-light-blue-color);
}
.mobile_navbar .mobile_logo{
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
}
.mobile_navbar .mobile_logo img{
    width: 150px;
}
.mobile_navbar .mobile_logo i{
    font-size: 1.5rem;
    padding: .1rem;
    border-radius: 50%;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--dark-blue-color);
}
.mobile_navbar .mobile_nav_list_container{
    padding: 1rem .5rem;
    width: 100%;
}
.mobile_nav_list_container .first_ul a{
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black-color);
}
.mobile_nav_list_container .first_ul a i{
    font-size: 1rem;
}
.mobile_nav_list_container .first_li a{
    /* border: 1px solid; */
    padding: .4rem;
}
.mobile_nav_list_container .second_ul{
    display: none;
    /* margin-top: .4rem; */
    background-color: var(--white-color);
}
.mobile_nav_list_container .second_ul .second_li a{
    padding: .4rem;
    /* border: 1px solid red; */
}
/* ========== mobile navbar section start ========== */
/* ========== header css code end ========== */


/* ========== about us css code start ========= */

.about_us_container .left_box {
    /* border: 1px solid; */
    /* flex: 0 0 60%;
    max-width: 60%; */
    flex-basis: 60%;
    width: 100%;
    /* min-height: 600px; */
}

.about_us_container .left_child_box {
    /* border: 1px solid red; */
    /* flex: 0 0 40%;
    max-width: 40%; */
    flex-basis: 40%;
    width: 100%;
    position: relative;
}

.about_us_container .left_child_box .about_img_text_box {
    position: absolute;
    top: 39px;
    left: 32px;
    width: 288px;
    /* width: 100%; */
    padding: .5rem;
    background-color: var(--white-color);
}

.about_us_container .left_child_box .about_img_text_box .about_img_text_child_box {
    background-color: var(--dark-blue-color);
    width: 100%;
    /* height: 100%; */
    padding: 3rem;
}

.about_us_container .left_child_box .about_img_text_box .about_img_text_child_box h3 {
    font-size: 2rem;
    color: var(--white-color);
    line-height: 2.5rem;
}

.about_us_container .left_child_box .left_bottom_img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 320px;
    /* width: 100%; */
    z-index: -1;
}

.about_us_container .right_child_box {
    /* border: 1px solid green; */
    /* flex: 0 0 60%;
    max-width: 60%; */
    flex-basis: 60%;
    /* width: 100%; */
    padding-right: 1rem;
    padding-bottom: 2rem;
}

.about_us_container .right_child_box .about_img {
    width: 100%;
    padding: .5rem;
    background-color: var(--white-color);
}

.about_us_container .right_child_box .about_img img {
    width: 100%;
}

.about_us_container .right_box {
    /* border: 1px solid; */
    /* flex: 0 0 40%;
    max-width: 40%; */
    flex-basis: 40%;
    width: 100%;
    padding: .5rem;
}

.about_us_container .right_box .about_breef_container .flex_container {
    padding-top: 1.5rem;
}

.about_us_container .right_box .about_breef_container .about_breff_left_box {
    /* flex: 0 0 20%;
    max-width: 20%; */
    flex-basis: 70px;
    height: 70px;
    background-color: var(--dark-blue-color);
    padding: .2rem;
}

.about_us_container .right_box .about_breef_container .about_breff_left_box img {
    width: 100%;
}

.about_us_container .right_box .about_breef_container .about_breff_right_box {
    /* flex: 0 0 80%; */
    flex-basis: 80%;
    padding-left: 1rem;
}

/* ========== about us css code end ========= */


/* ========== remember us css code start ========= */
.remember_us_section {
    background-image: url(../img/remember-us-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2.5rem 0;
    margin-top: 2rem;
    position: relative;
    z-index: -1;
}

.remember_us_section .layer_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}

.remember_us_container>.flex_container {
    gap: 1rem;
    /* flex-wrap: wrap; */
}

.remember_us_section .remember_box {
    flex-basis: 270px;
    /* border: 1px solid red; */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: left;
    background-color: #eff4ef;
    transition: all .4s ease-in;
    border-radius: .5rem;
}
.remember_us_section .remember_box img{
    width: 50px;
    display: block;
    margin: 0 auto;
    padding-top: 2rem;
}
.remember_us_section .remember_box:nth-child(1){
    background-color: rgba(239, 244, 239, 0.8);
}
.remember_us_section .remember_box:nth-child(2){
    background-color: rgba(238, 245, 248, 0.8);
}
.remember_us_section .remember_box:nth-child(3){
    background-color: rgba(251, 242, 241, 0.8);
}
.remember_us_section .remember_box:nth-child(4){
    background-color: rgba(251, 242, 241, 0.8);
}

.remember_us_section .remember_box:hover {
    background-color: var(--black-color);
}

.remember_us_section .remember_box>h3 {
    color: var(--gray-colorr);
    font-size: 1.6rem;
    text-align: left;
    padding-top: 2rem;
}

.remember_us_section .remember_box>p {
    color: #3d3d3d;
    font-weight: 400;
    /* text-align: center; */
    padding-top: 1rem;
}

/* ========== remember us css code end ========= */


/* ========== popular destinations css code start ========== */
.popular_section {
    background-attachment: fixed;
    background-image: url(../img/map-image.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.popuplar_destination_container>.flex_container {
    gap: 1rem;
}

.popuplar_destination_container .popular_box {
    flex: 1;
    transition: all .5s ease-in;
    overflow: hidden;
    height: 450px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.popuplar_destination_container .popular_box .heading_strip {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease-in;
    flex-direction: column;
}

.popuplar_destination_container .popular_box .heading_strip .popular_hover_show_btn {
    display: none;
    transition: all .6s ease-in-out;
}

.popuplar_destination_container .popular_box:hover {
    flex: 2;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.popuplar_destination_container .popular_box:hover .heading_strip {
    height: 100%;
    bottom: 0;
}

.popuplar_destination_container .popular_box:hover .popular_hover_show_btn {
    display: block;
}

.popuplar_destination_container .dubai {
    background-image: url(../img/destination/dubai.webp);
}

.popuplar_destination_container .japan {
    background-image: url(../img/destination/japan.webp);
}

.popuplar_destination_container .saudi {
    background-image: url(../img/destination/saudi.webp);
}

/* mobile design css code start */
.popular_mobile_design_contener {
    display: none;
}

.popular_mobile_design {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.popular_mobile_design .popular_box {
    flex-basis: 262px;
    position: relative;
}

.popular_mobile_design .popular_box img {
    width: 100%;
    height: 300px;
}

.popular_mobile_design .popular_box .heading_strip {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease-in;
    flex-direction: column;
}

.popular_mobile_design .popular_box .heading_strip .popular_hover_show_btn {
    display: none;
    transition: all .6s ease-in-out;
}

.popular_mobile_design .popular_box:hover .heading_strip {
    height: 100%;
    bottom: 0;
}

.popular_mobile_design .popular_box:hover .popular_hover_show_btn {
    display: block;
}

/* mobile design css code end */
/* ========== popular destinations css code end ========== */


/* ========== why choose css code start ========== */
.why_choose_section {
    position: relative;
    margin-bottom: 5rem;
    padding: 3rem 0;
    margin-top: 2rem;
}

.why_choose_section:before {
    background-color: var(--dark-blue-color);
    content: "";
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.why_choose_section .left_box {
    /* border: 1px solid green; */
    padding: 1rem;
    flex-basis: 40%;
    background-image: url(../img/why-choose.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* height: 540px; */
}

.why_choose_section .right_box {
    /* border: 1px solid yellow; */
    flex-basis: 60%;
}

.why_choose_section .right_box .why_choose_text_box {
    /* border: 1px solid red; */
    padding: 1rem 0;
    margin-left: 2rem;
    position: relative;
}

.why_choose_container .right_box .why_choose_text_box .why_choose_text_child_box {
    width: 66%;
    /* border: 1px solid green; */
    float: right;
    position: relative;
}

.why_choose_text_child_box .h2had,
.why_choose_text_child_box .h5had {
    color: var(--white-color);
}

.why_choose_text_child_box .why_choose_breef_container .flex_container {
    padding-bottom: 1.8rem;
    gap: 1rem;
}

.why_choose_text_child_box .why_choose_breef_container .why_choose_breff_left_box {
    flex-basis: 60px;
    height: 60px;
    /* background-color: var(--black-color); */
    padding: .2rem;
    /* border: 1px solid; */
}

.why_choose_text_child_box .why_choose_breef_container .why_choose_breff_left_box img {
    width: 100%;
}

.why_choose_text_child_box .why_choose_breef_container .why_choose_breff_right_box {
    /* flex: 0 0 80%; */
    flex-basis: 80%;
    padding-left: 1rem;
    
}

.why_choose_text_child_box .why_choose_breef_container .why_choose_breff_right_box .paragraf {
    color: var(--white-color);
    padding-top: .5rem;
    /* font-family: cursive; */
}

.why_choose_text_box .why_choose_text_child_box .call_us_button {
    position: absolute;
    bottom: -6rem;
    left: 0;
    background-color: var(--white-color);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: .5rem;
}

.why_choose_text_box .why_choose_text_child_box .call_us_button i {
    font-size: 3rem;
    color: var(--dark-blue-color);
}

.why_choose_text_box .why_choose_text_child_box .call_us_button a {
    font-size: 2rem;
    font-family: sans-serif;
    color: var(--black-color);
    transition: all .3s ease-in;
}

.why_choose_text_box .why_choose_text_child_box .call_us_button a:hover {
    color: var(--dark-blue-color);
}

/* ========== why choose css code end ========== */


/* ========== testimonial css code start ========== */
.testimonial_section {
    background-image: url(../img/testimonial-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 2.5rem 0 0 0;
    position: relative;
    z-index: -1;
}

.testimonial_section .layer_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.testimonial_container .left_box {
    /* border: 1px solid red; */
    flex-basis: 40%;
    padding: 1rem 1rem 0rem 0;
}

.testimonial_container .left_box>.h3had {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white-color);
}

.testimonial_container .left_box .testimonial_contact_container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial_container .left_box .testimonial_contact_container>i {
    font-size: 2rem;
    color: var(--white-color);
}

.testimonial_container .left_box .testimonial_contact_container .call_now_box>.h6had {
    font-weight: 400;
    color: var(--white-color);
    padding-bottom: .5rem;
}

.testimonial_container .left_box .testimonial_contact_container .call_now_box .call_anker {
    font-weight: 400;
    color: var(--white-color);
    font-size: 1.5rem;
    font-family: sans-serif;
}

.testimonial_container .right_box {
    /* border: 1px solid green; */
    flex-basis: 60%;
    max-width: 60%;
    padding: 1rem 0 0rem 1rem;
    /* height: 600px; */
}

.testimonial_container .right_box .right_child_box {
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    padding: 2rem 2rem 0 2rem;
}

.testimonial_container .right_box .right_child_box>.h5had {
    letter-spacing: .3rem;
}

.testimonial_container .right_box .right_child_box>.h3had {
    font-weight: 600;
    color: var(--dark-blue-color);
}

.testimonial_container .right_box .right_child_box .swiper {
    max-width: 635px;
    width: 100%;
    height: 100%;
}

.testimonial_container .right_box .right_child_box .swiper-slide {
    display: flex;
    flex-direction: column;
}

.testimonial_container .right_box .right_child_box .swiper-slide .paragraf {
    padding-top: 2rem;
}

.testimonial_container .right_box .right_child_box .swiper-slide .testimonial_icons_box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    align-items: center;
}

.testimonial_container .right_box .right_child_box .swiper-slide .testimonial_icons_box .testimonial_icons {
    flex-basis: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-blue-color);
}

.testimonial_container .right_box .right_child_box .swiper-slide .testimonial_icons_box .testimonial_icons>i {
    font-size: 1.8rem;
    color: var(--white-color);
}

.testimonial_container .right_box .right_child_box .swiper-slide .testimonial_icons_box .h6had {
    font-size: 1rem;
}

/* ========== testimonial css code end ========== */


/* ========== blog css code start ========== */
.blog_container .blog_box .blog_img_box {
    width: 100%;
    background-color: var(--dark-blue-color);
}

.blog_container .blog_box .blog_img_box img {
    width: 100%;
    object-fit: cover;
}

.blog_container .blog_box .blog_text_box {
    padding: 1rem;
    background-color: var(--dark-blue-color);
}

.blog_container .blog_box .blog_text_box>.h3had {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-color);
}

.blog_container .blog_box .blog_text_box>.paragraf {
    margin-top: .5rem;
    color: var(--white-color);
}

.blog_container .swiper {
    position: relative;
    width: 100%;

}

.blog_container .swiper .blog_img_box img {
    width: 100%;
}

.blog_container .swiper::before {
    content: "";
    position: absolute;
    top: -74px;
    left: -26%;
    width: 150%;
    height: 88px;
    border-radius: 100%;
    z-index: 100;
    background-color: var(--white-color);
    /* border:1px solid red; */
    overflow: hidden;
}

.blog_container .swiper::after {
    content: "";
    position: absolute;
    bottom: -74px;
    left: -26%;
    width: 150%;
    height: 88px;
    border-radius: 100%;
    z-index: 1000;
    background-color: var(--white-color);
    /* border:1px solid red; */
    overflow: hidden;
}

/* ========== blog css code end ========== */


