/*Main Css */
:root {
    --white: #fff;
    --black: #252525;
    --green: #71c349;
    --darkBlue: #0a2447;
    --lightBlue: #4777ba;
    --yellow: #ffe819;
    --lightBlue1: #4677bb;
}

body {
    font-family: "Poppins" !important;
    overflow-x: hidden;
    font-size: 14px;
    font-weight: normal;
}

select {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
    font-family: "Poppins" !important;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0px;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none !important;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    line-height: 24px;
    display: block;
}

span {
    display: inline-block;
}

ul {
    list-style: none;
}

/*Scrollbar*/

::-webkit-scrollbar {
    width: 10px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background: var(--lightBlue);
    border-radius: 0px;
    transition: all 0.4s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}

.ovr-hiddn {
    overflow: hidden;
}

body.ovr-hiddn:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000082;
    z-index: 1;
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}

/* Hamburger Menu */

.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: #5a5a5a;
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar.open span {
    background: #fff;
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

.form-signin {
    width: 100%;
    padding: 0;
    margin: auto;
}

.form-signin > form {
    width: 20%;
    margin: 0 auto;
}

.form-signin .checkbox {
    font-weight: 400;
}

.auth-page .hero_section > div {
    display: none;
}

.auth-page .hero_section {
    height: 120px;
}

.icons_box img {
    width: 30px;
}

.hotel-single-page .star-rating {
    font-size: 30px !important;
    color: #f0f000 !important;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1240px;
    }
}

@media (max-width: 991px) {
    .menuWrap {
        position: fixed;
        right: -210%;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #5a5a5a;
        height: 100vh;
        transition: all 0.4s ease;
        z-index: 3;
        width: 37%;
    }

    .menu-Bar {
        display: block;
        top: 0px;
        right: 0px;
    }

    .menuWrap.open {
        right: 0px;
    }
}

/*==================================================*/
/*Header Start*/
/*==================================================*/
.top_head {
    padding: 15px 0px;
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: 1;
}

.main-header ul.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    position: relative;
    padding-left: 30px;
}

ul.header-menu li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    text-transform: capitalize;
    color: var(--white);
    position: relative;
}

ul.header-menu li:not(:last-child) a:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 0px;
    height: 8px;
    background: url(../img/small_arrow.png);
    right: 0;
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.5s all ease;
}

ul.header-menu li.active_nav a:before,
ul.header-menu li a:hover:before {
    width: 9px;
}

ul.header-menu li:last-child a {
    padding: 15px 35px;
    background: var(--green);
    border-radius: 30px;
}

ul.header-menu li:last-child a:hover {
    background: var(--yellow);
    color: var(--black);
}

/*==================================================*/
/*Header End*/
/*==================================================*/

/*==================================================*/
/*Hero Section Start*/
/*==================================================*/

section.hero_section {
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
    border-radius: 0px 0px 60px 60px;
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

section.hero_section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background: var(--darkBlue);
    border-radius: 0px 0px 60px 60px;
}

section.hero_section .text h1 {
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 122.5%;
    color: var(--white);
    padding-right: 60px;
}

.yellow {
    color: var(--yellow);
}

section.hero_section .text p {
    color: var(--white);
    font-style: normal;
    line-height: 27px;
    margin: 0px;
    padding-right: 80px;
}

section.hero_section .img {
    position: relative;
}

section.hero_section .img:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0;
    width: 475px;
    height: 375px;
    background: url(../img/Logo_Icon.png);
    right: 0;
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

section.hero_section .img img {
    position: relative;
    z-index: 1;
}

.shape_mainsec {
    background-image: url(../img/All_SHapes.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

section.flight_form_sec {
    margin-top: -110px;
    position: relative;
    z-index: 2;
}

.flight_bg {
    height: 157px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 0px;
    position: relative;
}

.flight_bg:before {
    content: "";
    position: absolute;
    left: -3%;
    top: 0;
    width: 106%;
    height: 100%;
    z-index: -1;
    background-color: var(--green);
    border-radius: 30px;
    right: 0;
    margin: auto;
}

.flight_bg.blue:before {
    background-color: var(--lightBlue);
}

section.flight_form_sec ul {
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

section.flight_form_sec ul li a {
    border-radius: 300px !important;
    border: 2px solid var(--darkBlue) !important;
    background-color: var(--lightBlue) !important;
    width: 150px;
    text-align: center;
    color: var(--white) !important;
}

section.flight_form_sec ul li:last-child {
    margin-left: 20px;
}

section.flight_form_sec ul li:first-child a {
    background-color: var(--green) !important;
}

.flight_bg form.form1 select,
form.form1 input {
    width: 100%;
    height: 46px;
    border-radius: 40px;
    appearance: none;
    padding: 0px 30px 0px 20px;
    font-size: 14px;
    color: #363636;
    border: none;
    cursor: pointer;
}

.flight_bg form.form1 select {
    background-image: url(../img/arrow_down.png);
    z-index: 11;
    position: relative;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top 50% right 15px;
}

.flight_bg .select_opt {
    display: grid;
    align-items: end;
    gap: 1.5%;
    grid-template-columns: 19% 19% 15% 15% 15% 9%;
}

.hotel_form .select_opt {
    grid-template-columns: 38% 38% 38% 12%;
}

.flight_bg .select_opt label {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    /* 15.4px */
    text-transform: capitalize;
}

.flight_bg .box1 button {
    all: unset;
    width: 100%;
    height: 46px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--yellow);
    cursor: pointer;
    transition: 0.5s all ease;
}

.flight_bg .box1 button:hover {
    background: var(--white);
}

.popular_dest_sec {
    padding: 70px 0px;
}

.head_one h2 {
    margin: 0px;
    display: inline-block;
    position: relative;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 122.5%;
    text-transform: capitalize;
    color: var(--lightBlue);
}

.head_one h2:before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 175px;
    height: 46px;
    background: url(../img/line_arrow.png);
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20px);
    }
}

@keyframes mover {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20px);
    }
}

.popular_box {
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
    margin-top: 40px;
}

.popular_box .img img {
    width: 100%;
    object-fit: cover;
    height: 300px;
    border-radius: 30px 30px 0px 0px;
}

.popular_box .content {
    padding: 30px 15px;
    position: relative;
}

.popular_box .content .detail h2 {
    margin: 0px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--black);
}

.popular_box .content .detail h3 {
    margin: 0px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--green);
}

.detail-rating p {
    color: var(--black);
    font-size: 26.569px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}

.popular_box .content .icons_box h5 {
    margin: 0px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--lightBlue);
}

.popular_box .content ul {
    margin: 0px;
    padding-left: 25px;
}

.popular_box .content ul li {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    list-style: disc;
}

.popular_box .content ul li::marker {
    font-size: 12px;
}

ul.flight_detail {
    padding: 0 !important;
}

ul.flight_detail b {
    color: black;
}

ul.flight_detail li {
    margin-left: 25px;
}

.price p {
    color: var(--green);
    margin: 0px;
    margin-top: 20px;
    font-size: 26.569px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.price p small {
    font-size: 14px;
    color: var(--black);
}

.arowbtn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.popular_dest_main {
    position: relative;
}

.popular_dest_main .load_btn {
    position: absolute;
    right: -60px;
    bottom: 40px;
    transform: rotate(270deg);
}

.popular_dest_main .load_btn a {
    color: var(--lightBlue);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    /* 17.6px */
    text-transform: uppercase;
}

.popular_dest_main .load_btn:before {
    content: "";
    position: absolute;
    bottom: 2px;
    top: 0;
    background: var(--lightBlue);
    width: 113px;
    height: 1px;
    margin: auto;
    left: 110%;
}

.stroke_head h2 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--green);
    color: transparent;
    margin: 0px;
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 122.5%;
    text-transform: capitalize;
}

.icon_img {
    width: 74px;
    height: 74px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon_img.yellow {
    background: var(--yellow);
}

.icon_img:before {
    content: "";
    position: absolute;
    left: -7px;
    top: -7px;
    width: 88px;
    height: 88px;
    background: #71c34999;
    z-index: -1;
    border-radius: 50%;
}

.icon_img.yellow:before {
    background: #ffe8194d;
}

.icon_box_text {
    display: grid;
    grid-template-columns: 25% 63%;
    align-items: center;
    margin-bottom: 60px;
    gap: 5%;
}

/* .why_book_sec_inn .col-md-7 {
  padding-bottom: 50px;
} */

.icon_text h3 {
    color: var(--lightBlue);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 122.5%;
    /* 22.05px */
    text-transform: capitalize;
}

.icon_text p {
    margin: 0px;
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 192.857% */
}

/* .why_book_sec_inn {
  margin-top: -200px;
} */
.why_book_sec_inn .img img {
    margin-top: -200px;
}

section.why_book_sec {
    margin-top: 30px;
}

section.home_about_sec .inner_box {
    border-radius: 60px;
    background: var(--lightBlue);
}

.head_one.white h2 {
    color: var(--white);
}

section.home_about_sec .inner_box .head_one h2:before {
    display: none;
}

.yellow_btn {
    padding: 12px 35px;
    background: var(--yellow);
    border-radius: 30px;
    color: var(--black);
    border: 1px solid var(--yellow);
}

.yellow_btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
}

.head_one.white p {
    color: white;
    margin: 25px 0px;
    line-height: 27px;
}

section.home_about_sec .inner_box .head_one {
    padding-left: 80px;
}

section.home_about_sec .inner_box .img {
    position: relative;
}

section.home_about_sec .inner_box .img img.illus_img {
    position: relative;
    top: 35px;
    height: 522px;
    width: 100%;
    object-fit: contain;
}

section.home_about_sec .inner_box .img a.yellow_btn {
    padding: 9px 30px;
    color: var(--lightBlue);
    position: absolute;
    right: 45px;
    top: 135px;
    z-index: 1;
}

.popup_box_loc {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 8px 16px 0px rgba(96, 97, 112, 0.16),
        0px 2px 4px 0px rgba(40, 41, 61, 0.04);
    width: 210px;
    position: absolute;
    left: 0px;
    bottom: -10px;
}

.popup_box_loc a {
    display: block;
}

.popup_box_loc .img img {
    width: 100%;
    height: 120px;
    border-radius: 15px 15px 0px 0px;
}

.popup_box_loc .content {
    padding: 15px 15px;
}

.popup_box_loc .content h3 {
    font-size: 14px;
    color: var(--black);
}

.popup_box_loc .content p {
    margin: 0px;
    font-size: 10px;
    display: flex;
    align-items: center;
    line-height: 10px;
}

.popup_box_loc .content p svg {
    margin-right: 5px;
}

.popup_box_loc.right {
    width: 125px;
    right: 40px;
    left: unset;
    bottom: 110px;
}

.popup_box_loc.right .img img {
    height: 70px;
}

.popup_box_loc.right .content h3 {
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.popup_box_loc.right .content {
    padding: 10px;
}

.like_togo_sec {
    padding: 70px 0px;
}

.head_one.green h2 {
    color: var(--green);
}

.head_one.green h2:before {
    background: url(../img/line_arrow_blue.png);
}

.like_img_sec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-top: 50px;
}

.like_img_box:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
}

.like_img_box:nth-child(2) {
    grid-area: 1 / 3 / 2 / 4;
}

.like_img_box:nth-child(3) {
    grid-area: 1 / 4 / 2 / 5;
}

.like_img_box:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
}

.like_img_box:nth-child(5) {
    grid-area: 2 / 2 / 3 / 3;
}

.like_img_box:nth-child(6) {
    grid-area: 2 / 3 / 3 / 5;
}

.like_img_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.like_img_box {
    border-radius: 30px;
    height: 300px;
    position: relative;
}

.like_img_box:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 0px 0px 30px 30px;
    background: linear-gradient(180deg, rgba(113, 195, 73, 0) 0%, #71c349 100%);
    width: 100%;
    height: 164px;
    z-index: 0;
    opacity: 0;
    transition: 0.5s ease !important;
}

.like_img_box .content {
    position: relative;
}

.like_img_box .content a {
    color: var(--white);
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 122.5%;
    /* 34.3px */
    text-transform: capitalize;
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: center;
    transition: 0.5s ease !important;
    opacity: 0;
}

.like_img_box:hover .content a {
    bottom: 20px;
    opacity: 1;
}

.like_img_box:hover:before {
    opacity: 1;
    transition: 0.5s ease !important;
}

.stroke_head.blue h2 {
    -webkit-text-stroke-color: var(--lightBlue);
}

.holiday_deal_sec {
    padding: 50px 0px;
}

.holiday_img_box .content {
    position: relative;
}

.holiday_img_box h3 {
    color: var(--white);
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    line-height: 122.5%;
    /* 34.3px */
    text-transform: capitalize;
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: center;
    transition: 0.5s ease !important;
}

.holiday_img_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 60px;
}

.holiday_img_box {
    border-radius: 60px;
    height: 520px;
    position: relative;
}

.holiday_img_box:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 0px 0px 60px 60px;
    background: linear-gradient(180deg, rgba(71, 119, 186, 0) 0%, #4777ba 100%);
    width: 100%;
    height: 164px;
    z-index: 0;
    transition: 0.5s ease !important;
}

.holiday_deal_box:hover .holiday_img_box:before {
    background: linear-gradient(180deg, rgba(113, 195, 73, 0) 0%, #71c349 100%);
    transition: 0.5s ease !important;
}

.slick-slide {
    margin: 0px 15px;
}

.holiday_deal_box a {
    display: block;
    border-radius: 60px;
}

.holiday_deal_slider {
    margin-top: 50px;
}

.holiday_img_box .icon_imgs {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 110px;
    height: 110px;
    background: #ffe8194d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holiday_img_box .icon_imgs .inner {
    width: 88px;
    height: 88px;
    background: var(--yellow);
    z-index: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.holiday_img_box .icon_imgs p {
    margin: 0px;
    color: var(--lightBlue);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
}

ul.slick-dots {
    bottom: -60px;
}

ul.slick-dots li button {
    width: 10px;
    height: 10px;
    background: #f4f4f4 !important;
    border-radius: 50%;
    position: absolute;
}

ul.slick-dots li {
    width: 10px;
    height: 10px;
}

ul.slick-dots li.slick-active {
    width: 45px;
}

ul.slick-dots li.slick-active button {
    width: 45px;
    height: 12px;
    background: var(--yellow) !important;
    border-radius: 60px;
    position: absolute;
    left: -4px;
}

.slick-dots li button:before {
    display: none !important;
}

.faq_sec {
    padding: 70px 0px;
}

#main #faq {
    margin-top: 70px;
}

#main #faq .card {
    margin-bottom: 30px;
    border: 0;

    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
    border-radius: 30px;
}

#main #faq .card .card-header {
    border: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    border-radius: 2px;
    padding: 0;
}

#main #faq .card .card-header .btn-header-link {
    color: var(--white);
    display: block;
    text-align: left;
    color: var(--lightBlue);
    padding: 20px;
    background: var(--white);
}

#main #faq .card .card-header .btn-header-link:after {
    content: "\f062";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: right;
    color: var(--green);
    font-size: 21px;
    transform: rotate(45deg);
    position: relative;
    top: -4px;
}

#main #faq .card .card-header .btn-header-link.collapsed:after {
    content: "\f063";
    transform: rotate(-45deg);
    color: var(--black);
}

#main #faq .card .collapsing {
    background: var(--white);
    line-height: 30px;
}

#main #faq .card .collapse {
    border: 0;
}

#main #faq .card .collapse.show {
    background: var(--white);
    line-height: 30px;
    color: var(--black);
}

#main #faq .card .card-body {
    padding-top: 0px;
}

/*==================================================*/
/*Footer Section Start*/
/*==================================================*/
.copyright {
    background-color: var(--lightBlue);
    padding: 10px 0px;
}

.copyright p {
    margin: 0px;

    color: var(--white);
    font-size: 16px;
}

.copyright p a {
    color: var(--yellow);
}

.copyright p a:hover {
    color: var(--white);
}

.copyright .row {
    align-items: center;
}

.news_sec,
.new_inn {
    position: relative;
    z-index: 1;
}

.news_sec .head_one h2:before {
    display: none;
}

.new_inn {
    padding: 30px 0px;
}

.news_sec .new_inn:before {
    content: "";
    position: absolute;
    left: -2%;
    top: 0;
    width: 104%;
    height: 100%;
    z-index: -1;
    background-color: var(--green);
    border-radius: 30px;
    right: 0;
    margin: auto;
}

.new_inn .row {
    align-items: center;
}

.news_form p {
    margin: 0;
    color: var(--white);
}

.news_form form button {
    all: unset;
    height: 46px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--yellow);
    transition: 0.5s all ease;
    width: 167px;
}

.news_form form button:hover {
    background: var(--white);
}

.news_form form input {
    width: 100%;
    height: 46px;
    border-radius: 50px;
    border: none;
    color: var(--black);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    padding: 0px 20px;
}

.news_form form input::placeholder {
    color: var(--black);
}

.news_form form {
    display: flex;
    gap: 3%;
    margin-top: 15px;
}

.foot_sec {
    border-radius: 60px 60px 0px 0px;
    background: var(--darkBlue);
    padding-top: 150px;
    padding-bottom: 100px;
}

footer {
    margin-top: -70px;
}

h2.foothead {
    color: var(--yellow);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 25px;
}

.foot_nav ul,
.foot_cont ul,
.foot_cont ul li label,
.foot_social ul {
    margin: 0px;
}

.foot_nav ul li a,
.foot_cont ul li,
.foot_cont ul li a {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.foot_nav ul li a:hover {
    color: var(--yellow);
}

.foot_nav ul li:not(:last-child),
.foot_cont ul li:not(:last-child) {
    margin-bottom: 20px;
}

.foot_nav_menu ul {
    column-count: 2;
}

.foot_cont ul li,
.foot_cont ul li a:hover {
    color: var(--green);
}

.foot_social ul li a svg {
    fill: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    transition: all 0.4s ease-In-out;
}

.foot_social ul li a:hover svg {
    fill: var(--yellow);
}

.foot_social ul {
    display: flex;
    gap: 8%;
    margin-top: 20px;
}

.holiday_deal_sec_inner .holiday_deal_box {
    margin-top: 50px;
}

section.hero_section.inner-banner {
    height: 600px;
}

section.hero_section.inner-banner .text p {
    padding-right: 0px;
}

.load-item-1,
.load-item-2 {
    display: none;
}

.meet-btn.disabled {
    display: none !important;
}

.inner_about_sec {
    margin: 100px 0px;
}

section.home_about_sec.inner_about_sec .inner_box {
    background-color: transparent;
}

section.home_about_sec.inner_about_sec .inner_box .head_one {
    padding-left: 0px;
}

section.home_about_sec.inner_about_sec .inner_box .head_one h2 {
    white-space: nowrap;
    margin-bottom: 50px;
}

section.home_about_sec.inner_about_sec .inner_box .head_one h2:before {
    display: block;
}

.about_img_sec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}

.img:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
}

.img:nth-child(2) {
    grid-area: 1 / 3 / 2 / 4;
}

.img:nth-child(3) {
    grid-area: 1 / 4 / 2 / 5;
}

.about_img_sec .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
}

.inner_why_book_sec {
    margin: 30px 0px;
}

.contact-form-sec {
    padding: 70px 0px;
}

.contact_info {
    border-radius: 30px;
    background: var(--lightBlue);
    padding: 57px 30px;
}

.contact_info h3 {
    font-size: 28px;
    color: var(--white);
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0px;
}

.contact_info h3 {
    margin-bottom: 40px;
}

.contact_info .cont_box {
    display: flex;
    align-items: center;
    gap: 3%;
}

.contact_info .cont_box .icontext h4 {
    margin: 0px;
    color: var(--yellow);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.contact_info .cont_box .icontext a {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.contact_info .cont_box .icontext a:hover {
    color: var(--yellow);
}

.contact_info .cont_box:not(:last-child) {
    margin-bottom: 20px;
}

.contact_info .foot_social {
    margin-top: 50px;
}

.contact_info .foot_social ul {
    margin-top: 30px;
}

.contact_info .foot_social h3 {
    margin-bottom: 0px;
}

.contact_info .foot_social ul li a svg {
    font-size: 18px;
}

.contactform .box {
    display: flex;
    align-items: center;
    gap: 5%;
}

.contactform .box .input-field {
    width: 100%;
}

.contactform .box {
    margin-bottom: 25px;
}

.contactform .box input,
.contactform textarea {
    width: 100%;
    height: 46px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
    border: none;
    color: var(--lightBlue);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 178.571% */
    padding: 15px;
}

.contactform .box input::placeholder,
.contactform textarea::placeholder {
    color: var(--lightBlue);
}

.contactform textarea {
    resize: none;
    height: 160px;
    margin-bottom: 30px;
}

.contactform {
    margin-top: 50px;
}

.contactform form button {
    all: unset;
    height: 46px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--yellow);
    transition: 0.5s all ease;
    width: 138px;
}

.contactform form button:hover {
    background: var(--white);
}

section.map {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

section.map iframe {
    border-radius: 30px;
}

section.offer_detail_sec {
    padding: 80px 0px;
}

.sort-data {
    text-align: right;
}

.sort-data label {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 178.571% */
    margin: 0px !important;
    margin-right: 20px !important;
}

.sort-data select {
    width: 350px;
    appearance: none;
    height: 46px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
    border: none;
    color: var(--lightBlue);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 178.571% */
    padding-left: 15px;
}

section.offer_detail_sec .inner-det {
    margin-top: 50px;
}

.price_person {
    border-radius: 20px;
    background: var(--green);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
    text-align: center;
    padding: 33px 0px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3%;
}

.price_person p {
    margin: 0px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.En_btn .toggle {
    --width: 60px;
    --height: calc(var(--width) / 2);
    position: relative;
    display: inline-block;
    width: var(--width);
    height: var(--height);
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 0px !important;
}

.En_btn .toggle input {
    display: none;
}

.En_btn .toggle .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    background: var(--yellow);
}

.En_btn .toggle .slider::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease-in-out;
}

.En_btn .toggle input:checked + .slider {
    background: var(--yellow);
}

.En_btn .toggle input:checked + .slider::before {
    background-color: var(--white);
    transform: translateX(calc(var(--width) - var(--height)));
}

.En_btn .toggle .labels {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-family: sans-serif;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
}

.En_btn .toggle input:checked ~ .labels::after {
    opacity: 0;
}

.En_btn .toggle input:checked ~ .labels::before {
    opacity: 1;
    color: #000;
}

.En_btn {
    height: 30px;
}

.radio-button-container {
    color: black;
    display: block;
    position: relative;
    padding-left: 45px;
    line-height: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hide the browser's default radio button */
.radio-button-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f4f4f4;
    border-radius: 50%;
    transition: all 0.3s;
}

/* On mouse-over, add a grey background color */
.radio-button-container:hover input ~ .checkmark {
    border-color: rgba(0, 0, 0, 0.5);
}

/* When the radio button is checked */
.radio-button-container input:checked ~ .checkmark {
    background-color: rgba(0, 0, 0, 0);
    border-color: var(--yellow);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-button-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-button-container .checkmark:after {
    top: 0px;
    left: 0px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--yellow);
}

section.offer_detail_sec .inner-det {
    margin-top: 50px;
}

section.offer_detail_sec .inner-det .card_box {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    border: 0;
    padding: 30px 25px;
}

section.offer_detail_sec .inner-det .card_box h3 {
    display: block;
    text-align: left;
    color: var(--lightBlue);
    background: var(--white);
    font-weight: 600;
    font-size: 18px;
    position: relative;
    margin: 0px;
    cursor: pointer;
}

section.offer_detail_sec .inner-det .card_box .checker_Detal {
    margin-top: 20px;
}

section.offer_detail_sec .inner-det .card_box h3:after {
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: right;
    color: var(--black);
    font-size: 21px;
    transform: rotate(180deg);
    position: relative;
    top: -4px;
    transition: 0.5s all ease;
}

section.offer_detail_sec .inner-det .card_box h3.active:after {
    transform: rotate(0deg);
}

section.offer_detail_sec .inner-det .accordion .card .collapsing {
    background: var(--white);
    line-height: 30px;
}

section.offer_detail_sec .inner-det .accordion .card .collapse {
    border: 0;
}

section.offer_detail_sec .inner-det .accordion .card .collapse.show {
    background: var(--white);
    line-height: 30px;
    color: var(--black);
}

section.offer_detail_sec .inner-det .accordion .card .card-body {
    padding-top: 0px;
}

.offer_detail_sec .inner-data {
    margin: 50px 0px;
    border-radius: 60px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
}

.detail_box_img {
    position: relative;
}

.detail_box_img .imgs {
    position: relative;
}

.detail_box_img .imgs img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: 60px;
}

.detail_box_img .content {
    position: absolute;
    bottom: 50px;
    left: 60px;
}

.detail_box_img .imgs:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 232px;
    border-radius: 0px 0px 60px 60px;
    background: linear-gradient(180deg, rgba(113, 195, 73, 0) 0%, #71c349 100%);
}

.detail_box_img .content h2 {
    color: var(--white);
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0px;
}

.detail_box_img .content h3 {
    color: var(--white);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0px;
}

.detail_box_img .content .rating {
    margin: 25px 0px;
    display: flex;
    align-items: center;
    gap: 2%;
}

.detail_box_img .content .rating span {
    color: var(--white);
    font-size: 26.569px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.white_btn {
    padding: 12px 35px;
    background: var(--white);
    border-radius: 30px;
    color: var(--lightBlue);
    border: 1px solid var(--white);
}

.white_btn:hover {
    background: var(--lightBlue);
    border: 1px solid var(--lightBlue);
    color: var(--white);
}

.detail_box-main-cont {
    padding: 0px 50px 50px 50px;
}

.detail_box-main-cont .left .icons_box {
    margin-right: 50px;
}

.detail_box-main-cont .left .icons_box h5 {
    margin: 0px;
    color: var(--lightBlue);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.detail_box-main-cont .left .icons_box img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.detail_box-main-cont .right .price p {
    margin: 0px;
    font-size: 40px;
    line-height: 40px;
}

.detail_box-main-cont .right .price small {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.detail_box-main-cont .right .price {
    margin-left: 50px;
}

.post-content h3 {
    color: var(--green);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.post-content p {
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 171.429% */
}

.inner-listing-data {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
}

section.offer_detail_sec .inner-listing-data:not(:last-child) {
    margin-bottom: 50px;
}

.inner-listing-data .cards {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
    display: inline-block;
    padding: 30px 40px;
    flex: 0 0 32%;
    max-width: 32%;
    margin-bottom: 20px;
}

.inner-listing-data > h2 {
    width: 100%;
    color: var(--green);
    font-size: 26px;
    font-weight: 600;
}

.inner-listing-data .cards h3 {
    color: var(--lightBlue);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    text-wrap: nowrap;
    white-space: break-spaces;
}

.inner-listing-data .cards ul {
    margin: 0px;
    padding-left: 20px;
}

.inner-listing-data .cards ul li {
    list-style: disc;
    flex-basis: 48%;
    text-wrap: nowrap;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 200% */
}

.inner-listing-data .cards.twice ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.inner-listing-data .cards.twice {
    width: 620px;
}

.timings_data .box {
    display: inline-block;
    margin-right: 70px;
}

.timings_data .box h3 {
    margin: 0px;
    color: var(--green);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    /* 138.889% */
    margin-bottom: 20px;
}

.timings_data .box ul {
    margin: 0px;
}

.timings_data .box ul li {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 200% */
}

@media(max-width:1024px){
    section.hero_section .text h1 {
        font-size: 35px;
        padding-right: 0;
    }
    section.hero_section .pt-5 {
        padding-top: 0rem !important;
    }
    section.hero_section .img:before {
        width: 100%;
    }
    .popular_dest_main .col-md-4 {
        max-width: 50% !important;
        flex: 0 0 50%;
    }
    .why_book_sec_inn .col-md-7, .why_book_sec_inn .col-md-5 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .why_book_sec_inn .img{
        text-align: center;
    }
    .why_book_sec_inn .img img {
        margin-top: 0px;
        margin-bottom: 40px;
    }
    .stroke_head h2{
        font-size: 70px !important;
    }
    section.home_about_sec .inner_box .head_one {
        padding-left: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .inner-det .col-md-4 {
        flex: 0 0 60%;
        max-width: 60%;
    }
    .offer_detail_sec .head_one h2:before{
        right: 40px !important;
    }
    .offer_detail_sec .sort-data select {
        width: 190px;
    }
    .contact-form-sec .col-md-8, .contact-form-sec .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 50px;
    }
}
@media(max-width:991px){
    .menuWrap.open {
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        width: 100% !important;
    }
    .main-header ul.header-menu{
        flex-direction: column;
        row-gap: 30px;
    }
    section.flight_form_sec, section.hero_section .img img{
        z-index: 0 !important;
    }
    ul.header-menu li a{
        font-size: 22px !important;
    }
    ul.header-menu li.active_nav a:before, ul.header-menu li a:hover:before{
        width: 0 !important;
    }
    .menu-Bar span {
        background: #4777ba;
    }
}
@media(max-width:767px){
    section.hero_section{
        height: 100% !important;
        padding: 85px 0 0;
    }
    section.hero_section h1{
        font-size: 28px !important;
    }
    section.hero_section .text p{
        padding: 0 0 20px !important;
    }
    .menu-Bar {
        color: green !important;
        margin-top: -40px;
        margin-right: 18px;
    }
    section.hero_section .img:before{
        width: 100% !important;
    }
    .flight_form_sec form .select_opt {
        display: flex !important;
        flex-wrap: wrap;
        column-gap: 12px !important;
        row-gap: 15px !important;
        margin-top: 40px;
    }
    .flight_form_sec form .select_opt .box1 {
        width: 48%;
    }
    .flight_form_sec .flight_bg {
        height: 100% !important;
        padding-bottom: 20px;
    }
    .why_book_sec_inn .img img{
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .stroke_head h2 {
        font-size: 50px !important;
    }
    section.home_about_sec .inner_box .head_one{
        padding: 20px !important;
    }
    .home_about_sec .head_one h2 {
        font-size: 35px;
    }
    .home_about_sec .head_one p {
        margin-top: 10px !important;
    }
    .why_book_sec_inn .row .col-md-5 {
        padding-bottom: 55px;
    }
    section.home_about_sec .inner_box .img a.yellow_btn {
        top: 20px;
        right: 85px;
    }
    .popup_box_loc.right {
        right: 5px;
        bottom: 130px;
    }
    .head_one h2:before {
        right: 0px;
    }
    .like_img_sec {
        display: flex;
        flex-direction: column;
    }
    .new_inn {
        padding: 30px 10px;
    }
    .new_inn h2 {
        font-size: 30px;
        line-height: 35px;
        padding-bottom: 15px;
    }
    section.hero_section .pt-5 {
        padding-top: 3rem !important;
    }
    .holiday_img_box{
        height: 350px;
    }
    .holiday_img_box h3{
        font-size: 35px;
    }
    .faq_sec .head_one h2 {
        margin: 0px;
        display: inline-block;
        position: relative;
        font-size: 30px;
    }
    .contactform {
        margin-bottom: 50px;
    }
    .contact-form-sec .head_one h2{
        font-size: 30px;
    }
    .popular_dest_main .col-md-4 {
        max-width: 100% !important;
        flex: 0 0 100%;
    }
    .inner-det .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .offer_detail_sec .sort-data select {
        width: 100%;
    }
    .about_img_sec{
        display: block;
    }
    .about_img_sec .img {
        margin-bottom: 20px;
    }
    section.home_about_sec.inner_about_sec .inner_box .head_one h2 {
        white-space: wrap;
    }
    .popular_dest_main .load_btn {
        right: 0px;
        left: 0;
        bottom: -60px;
        transform: rotate(0deg);
        text-align: center;
    }
    .popular_dest_main .load_btn:before{
        display: none !important;
    }
}