:root {
    /* COLORS */
    --main-color: #33b6bb;
    --yellow-color: #d7ce34;
    --white-color: #FFFFFF;
    --black-color: #000;
    --red-color: red;
    --light-green-color: #25d366;
    --orange-color: #f79420;
    --golden-color: #CBAA6B;
    --blue-color: rgb(13 110 253);
    --heading-light-black: #828282;
    --heading-color: #000000;
    --para-graph-light-color: #3c4043;
    --para-color: #6e6e6e;
    --light-sky-blue-bg-color: #27bdbe;
    --bg-red-light-color: #f2dede;
    --bg-gray-color: #dddddd;
    --bg-gray-light-color: #f5f5f5;
    --bg-blue-light-color: #f4fbff;
    --bg-white: #FFFFFF;
    --bg-black: #000000;
    --border-color-light: #ddd;

    /* transition */
    --transition-3: all .3s ease-in-out;
    --transition-4: all .5s ease-in-out;
    --transition-5: all .5s ease-in-out;
    /* cursor */
    --cursor: pointer;
    /* box-shadow */
    --box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --box-shadow-2: rgba(149, 157, 165, .2) 0 8px 24px;

    /* font-family */
    --font-family: "Manrope", serif;
    --font-style: normal;

    /* TYPOGRAPHY font-size */

    /* --x-large-font-size: 40px; */
    --font-size-h1: 40px;
    --font-size-h2: 32px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
    --font-size-p: 16px;
    --paragraph-small: 15px;

    --x-small-font-size: 14px;

    --large-heading: 50px;
    --common-heading: 24px;
    --small-heading: 15px;

    /* font-weight */

    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;

    /* line-height */

    --line-height-1: 1.1;
    --line-height-1-2: 1.2;
    --line-height-1-3: 1.3;
    --line-height-1-4: 1.4;
    --line-height-1-5: 1.5;
    --line-height-1-6: 1.6;
    --line-height-1-7: 1.7;

    /* border-radius */

    --border-radius-10: 10px;
    --border-radius-20: 20px;
    --border-radius-30: 30px;
    --border-radius-40: 40px;
    --border-radius-50: 50px;

    /* border */

    --border-1: 1px solid var(--border-color-light);
    /* --border-2: 1px solid var(--border-color-light); */
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-Regular.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-Medium.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-Light.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-SemiBold.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-Bold.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-ExtraBold.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-ExtraLight.ttf);
    font-style: normal;
    display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-size: var(--font-size-h6);
    line-height: var(--line-height-1-4);
}

html,
body {
    font-family: var(--font-family);
    font-style: var(--font-style);
}

a {
    text-decoration: none;
    color: var(--black-color);
}

li {
    list-style: none;
}

ul,
figure {
    margin: 0;
    padding: 0;
}

/*  inhe apne hisab kar lo */
.container-sm,
.container-lg,
.container-x-lg,
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 860px;
}

.container {
    max-width: 1240px;
}

.container-lg {
    max-width: 1280px;
}

.container-x-lg {
    max-width: 1440px;
    padding: 0 70px;
}

.container-full {
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

p a,
li p a {
    color: var(--main-color) !important;
    font-weight: var(--font-weight-600);

}

div p {
  font-size: 15px;
    color: #3e3b3b;
    line-height: 1.6;
}

.black-btn {
    width: max-content;
    height: 40px;
    font-weight: 100;
    margin-top: 10px;
    padding: 6px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}



/* common--botton css */
.sky-btn {
    width: fit-content;
    margin-top: 28px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5px;
    font-weight: bold;
    color: #ffffff;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1607843137);
    font-weight: var(--font-weight-700);
}

.sky-btn img {
    width: 20px;
    margin-left: 10px;
}

/* common css */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: var(--font-family);
    font-style: normal;

}

h1,
h2 {
    font-weight: var(--font-weight-800);
}

h5,
h6,
.common-heading {
    font-weight: var(--font-weight-500);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-700);
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-500);
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-600);
}

h6 {
    font-size: var(--font-size-h6);

}
p{
  font-size: 15px;
    color: #3e3b3b;
    line-height: 1.6;
}
.para {
    font-size: var(--paragraph-small);
    color: var(--para-color);
    line-height: var(--line-height-1-6);
}

.large-heading {
    font-size: var(--large-heading);
    font-weight: var(--font-weight-800);
}

.small-heading {
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-400);
    font-weight: var(--font-weight-900);
}

.small-text {
    font-size: var(--x-small-font-size);
    font-weight: normal;
}

.common-heading {
    font-size: var(--common-heading);
    line-height: var(--line-height-1-4);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.relative,
.common-banner {
    position: relative;
}

.common-banner {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-layer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
    background-color: rgb(0 0 0 / 75%);
}



.text-center {
    text-align: center;
}

/* flex and grid css */
.grid {
    display: grid;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.no-wrap {
    flex-wrap: nowrap;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.space-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.space-end {
    justify-content: end;
}

.grid-2 {
    grid-template-columns: auto auto;
}

.grid-3 {
    grid-template-columns: auto auto auto;
}

.grid-4 {
    grid-template-columns: auto auto auto auto;
}

.grid-5 {
    grid-template-columns: auto auto auto auto auto;
}

.grid-6 {
    grid-template-columns: auto auto auto auto auto auto;
}

.grid-8 {
    grid-template-columns: auto auto auto auto auto auto auto auto;
}

/* row-gap and column-gap css */

.gap-10 {
    gap: 10px 10px;
}

.gap-20 {
    gap: 20px 20px;
}

.gap-30 {
    gap: 30px 30px;
}

.gap-40 {
    gap: 40px 40px;
}

.gap-50 {
    gap: 50px 50px;
}

/* row-gap css */
.row-gap-10 {
    row-gap: 10px;
}

.row-gap-20 {
    row-gap: 20px;
}

.row-gap-30 {
    row-gap: 20px;
}

.row-gap-40 {
    row-gap: 40px;
}

.row-gap-50 {
    row-gap: 50px;
}

/* column-gap css */
.column-gap-10 {
    column-gap: 10px;
}

.column-gap-20 {
    column-gap: 20px;
}

.column-gap-30 {
    column-gap: 20px;
}

.column-gap-40 {
    column-gap: 40px;
}

.column-gap-50 {
    column-gap: 50px;
}

/* column css */


.col-half,
.col-6 {
    width: 48%;
}

.col-2 {
    width: 20%;
}

.col-3 {
    width: 32%;
}

.col-4 {
    width: 24%;
}

.col-5 {
    width: 30%;
}

.col-7 {
    width: 68%;
}

.col-55 {
    width: 55%;
}

.col-45 {
    width: 43%;
}


/* form css */
/* form css */

label {
    font-size: var(--x-small-font-size);
    margin-bottom: 6px;
    display: block;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    font-size: var(--x-small-font-size);
    padding: 12px 16px;
    color: #757575;
    background-color: var(--bg-white);
    border: var(--border-1);
    border-radius: var(--border-radius-10);
    outline: none;
    cursor: var(--cursor);
    transition: var(--transition-4);
}

input[type="date"] {
    width: 100%;
    display: block;
}

select option {
    width: 100%;
    display: block;
    color: var(--black-color);
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 88%;
}

.w-70 {
    width: 68%;
}

.w-50 {
    width: 48%;
}

.w-32 {
    width: 32%;
}

.w-30 {
    width: 30%;
}

.w-25 {
    width: 24%;
}

.w-20 {
    width: 19%;
}

.w-15 {
    width: 15%;
}

button {
    outline: none;
    border: none;
}

.bulit-list {
    padding-left: 30px;
    margin: 20px 0;
}

.number-list li {
    list-style: unset;
}

.bulit-list li {
    margin-bottom: 8px;
    list-style: disc;
    line-height: 1.6;
}

.bulit-list li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.bulit-list li ol li {
    list-style: unset;
}

.number-list li ul li {
    list-style: disc;
}

/* common margin */
.mtb {
    margin: 100px 0;
}

.my {
    margin: 50px 0;
}

.my-20 {
    margin: 20px 0;
}

.mt-top-10 {
    margin-top: 10px;
}

.mt-top-20 {
    margin-top: 20px;
}

.mt-top-30 {
    margin-top: 30px;
}

.mt-top-40 {
    margin-top: 40px;
}

.mt-top-50 {
    margin-top: 40px;
}

.mb-bottom-10 {
    margin-bottom: 50px;
}

.mb-bottom-20 {
    margin-bottom: 20px;
}

.mb-bottom-30 {
    margin-bottom: 30px;
}

.mb-bottom-40 {
    margin-bottom: 40px;
}

.mb-bottom-50 {
    margin-bottom: 50px;
}

/* common padding css */
.ptb {
    padding: 100px 0;
}

.py {
    padding: 50px 0;
}

.py-20 {
    padding: 20px 0;
}

.px {
    padding: 0 20px;
}

.px-left {
    padding-left: 20px;
}

.px-right {
    padding-right: 20px;
}

.pt-top-10 {
    padding-top: 10px;
}

.pt-top-20 {
    padding-top: 20px;
}

.pt-top-30 {
    padding-top: 30px;
}

.pt-top-40 {
    padding-top: 40px;
}

.pt-top-50 {
    padding-top: 50px;
}

.pb-bottom-10 {
    padding-top: 10px;
}

.pb-bottom-20 {
    padding-top: 20px;
}

.pb-bottom-30 {
    padding-top: 30px;
}

.pb-bottom-40 {
    padding-top: 40px;
}

.pb-bottom-50 {
    padding-top: 50px;
}

/* common weight  css*/
.weight-100 {
    font-weight: var(--font-weight-100);
}

.weight-200 {
    font-weight: var(--font-weight-200);
}

.weight-300 {
    font-weight: var(--font-weight-300);
}

.weight-400 {
    font-weight: var(--font-weight-400);
}

.weight-500 {
    font-weight: var(--font-weight-500);
}

.weight-600 {
    font-weight: var(--font-weight-600);
}

.weight-700 {
    font-weight: var(--font-weight-700);
}

.weight-800 {
    font-weight: var(--font-weight-800);
}

/*  common border-radius  css*/
.round-10 {
    border-radius: var(--border-radius-10);
}

.round-20 {
    border-radius: var(--border-radius-20);
}

.round-30 {
    border-radius: var(--border-radius-30);
}

.round-40 {
    border-radius: var(--border-radius-40);
}

.round-50 {
    border-radius: var(--border-radius-50);
}

/*common table  css*/

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-responsive .common-table {
    width: 100%;
    border-collapse: collapse;
}

.table-responsive .common-table tr th,
.table-responsive .common-table tr td {
    border: 1px solid #dddd;
    padding: 10px;
}

.text-hide {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

/* breadcrumb css */
.breadcrumb {
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb li:not(:nth-last-of-type(1)) {
    margin-right: 6px;
}

.breadcrumb li {
    font-size: 12px;
    transition: all 0.5s ease-in-out;
}

.breadcrumb li a {
    font-size: 12px;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

.breadcrumb li a:hover {
    color: #33b6bb;
}

.breadcrumb li i {
    font-size: 11px;
}

.breadcrumb li:nth-last-of-type(1) a {
    color: #a3a3a3;
}
/* scrollTop  icon css */
.scrollTop {
    position: fixed;
    bottom: 50px;
    left: 2%;
    background: #000;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 11;

}

.scrollTop.show {
    opacity: 1;
    visibility: visible;
}

.scrollTop i {
    color: #fff;
}

/* whatsapp and call button css */
.common--botton {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 52px;
    right: 37px;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    display: none;

}

.common--botton.call_now {
    bottom: 112px;
}

.common--botton a {
    width: 50px;
    height: 50px;
    background-color: rgb(37 211 102);
    border-radius: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.common--botton a:hover {
    transform: scale(1.2);
}

.common--botton.call_now a {
    background-color: rgb(11 132 238) !important;
}

.common--botton a i {
    font-size: 25px;
    color: #fff;
}

.yellow-btn,
.whatsapp-btn,
.enquire-btn {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 6px;
    border: 1px solid #828282;
    font-weight: 500;
    line-height: 22px;
    font-size: 15px;
    background: linear-gradient(180deg, #D7CE34 0%, #FFFFFF 100%);
    color: #000;
    width: max-content;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.yellow-btn i {
    transform: rotate(-45deg);
    margin-right: 10px;
}

.whatsapp-btn {
    color: #fff;
    background: #46c756;
    border: 1px solid #09b31c;
}

.whatsapp-btn:hover {
    color: #000;
    background-color: transparent;
}

.whatsapp-btn i {
    margin-right: 10px;
}

.enquire-btn {
    border: none;
    background: linear-gradient(195deg, #F79420 0%, #F22929 100%);
    color: #fff;
    padding: 5px 15px;
    transition: all 0.5s ease-in-out;
}

.enquire-btn i {
    transform: rotate(-45deg);
    margin-left: 8px;
}

.yellow-btn:hover {
    color: #000;
    background-color: #24B4BD;
    border: 1px solid #24B4BD;
}

.enquire-btn:hover {
    border: none;
    background: linear-gradient(243deg, #8C8F8F 12%, #3DBAC2 100%);
}

.read-more-btn {
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #F79420;
    font-weight: 700;

}

.color-orange {
    color: #F79420;
}

.simple-btn {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #0B57D0;
    font-weight: 700;
}

.mobile-booking-btn {
    display: none;
}

.simple-btn i {
    transform: rotate(-45deg);
    margin-left: 10px;
}

.read-more-btn i {
    transition: all 0.5s ease-in-out;
    margin-left: 6px;
}

.read-more-btn:hover i {
    margin-left: 10px;
}

.common-text-heading {
    margin-bottom: 20px;
}

.common-text-heading h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* style  */
header {
    width: 100%;
    padding: 10px 0 0;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;

}

header.fixed-header {
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 5%);
    transition: all 0.5s ease-in-out;
    position: fixed;
    top: -1px;
    left: 0;
    animation: sticky1 0.35s ease-out;
    background-color: #fff;
    z-index: 5;
}

@keyframes sticky1 {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

header .top-header {
    background-color: #000;
    margin-bottom: 10px;
    display: none;
}

header .top-header p {
    color: red;
    font-weight: 800;
}

header .pay-btn {
    display: none;
    padding: 6px 7px;
    background: red;
    color: #fff;
    border-radius: 8px;
}

.mobile-pay-btn {
    display: none;
}

header .logo {
    margin-right: 50px;
}

header .row ul li:not(:nth-last-of-type(1)) {
    margin-right: 20px;
}

header .col-left ul li a {
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

header .col-left ul li a.active {
    color: #F79420;
    font-weight: 800;
}

header .col-left ul li a::after {
    content: "";
    width: 0;
    height: 2px;
    border-radius: 8px;
    background-color: #F79420;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: all 0.5s ease-in-out;
}

header .col-left ul li a.active::after {
    width: 100%;
}

header .col-left ul li a:hover:after {
    width: 100%;
}

header nav {
    width: 100%;
    /* padding: 12px 0; */
    border-top: 1px solid #00000056;
    margin-top: 15px;
}

header nav ul li a {
    /* color: rgba(3, 2, 26, 0.6); */
    display: flex;
    align-items: end;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

header nav ul li a:hover {
    color: #24B4BD;
}

header nav ul li a i {
    line-height: 0;
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
}

header nav ul {
    position: relative;
}

header nav ul li {
    padding: 12px 0;
    transition: all 0.5s ease-in-out;
}

header nav ul li ul li {
    padding: 0;
}

.full-menu {
    width: 100%;
    margin-top: 0px;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(60px);
    position: absolute;
    top: 43px;
    left: 0;
    z-index: 11;
    transition: all 0.3s ease-in-out;
    /* display: none; */
}

header .common-tab .nav-list {
    margin-bottom: 10px;
}

header .common-tab .tab-list {
    padding: 10px;
    margin-bottom: 10px;
    background: #d7d7d750;
    color: #3fff;
    border-radius: 6px;
}

header .common-tab .nav-link {
    padding: 0;
    background-color: transparent;
    color: #000;
    cursor: pointer;
}

header .common-tab .nav-link.active {
    color: #000;
    font-weight: 800;
}

.full-menu .tab-content {
    display: none;
}

.full-menu .tab-content.active {
    display: block;
}

.full-menu .tab-content h5 {
    margin-bottom: 20px;
}

.full-menu .tab-content h5 a {
    font-size: 15px;
    color: #f2911f;
    position: relative;
    display: inline-block;
}

.full-menu .tab-content h5 a::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -4px;
    left: 0;
    border-bottom: 2px dashed #ddd;
}

.full-menu .tab-content .inner-row .inner-col ul li a {
    padding: 5px 0;
    font-weight: 500;
    font-size: 13px;
}

.full-menu .nav-list {
    margin-bottom: 20px;
}

.full-menu .nav-list li {
    cursor: pointer;
}

.full-menu .nav-list .nav-link.active {
    color: #24B4BD;
    font-weight: 600;
}

.full-menu .nav-list li:not(:nth-last-of-type(1)) {
    margin-right: 20px;
}

.full-menu .inner-row .inner-col:not(:nth-last-of-type(1)) {
    width: 16%;
    border-right: 1px solid #ddd;
}

.full-menu #nav-2 {
    border-top: 1px solid #ddd;
    padding: 10px 0 0 0;
}

.full-menu #nav-2 .inner-row .inner-col {
    width: 28%;
}

header .spacil-tour h5 {
    color: #24B4BD;
}

header .spacil-tour .avilable-tour {
    margin: 10px 0 20px;

}

header .spacil-tour .avilable-tour li {
    margin-bottom: 20px;
    font-size: 13px;
}

header .avilable-tour ul li {
    width: 50%;
    row-gap: 20px;
}

header .spacil-tour .inner-row .inner-col:nth-of-type(1) {
    padding-left: 30px;
}

header .spacil-tour .inner-row .inner-col {
    width: 30% !important;
}

header .spacil-tour ul li a {
    font-weight: 500;
    font-size: 13px;
    flex-wrap: wrap;
}

header .spacil-tour ul li a strong {
    width: 100%;
    display: block;
    margin-bottom: 4px;
}

header .spacil-tour ul li a span {
    font-size: 12px;
    font-weight: 400;
}

header .solo-trip ul li {
    margin-bottom: 10px;
}

header .category-tour h6 {
    color: #24B4BD;
    margin-bottom: 20px;
}

header .category-tour ul li {
    margin-bottom: 20px;
}

header .category-tour .img-text-box {
    display: block;
    width: 33.33%;
    padding: 10px 20px;
}

header .category-tour .img-text-box img {
    border-radius: 6px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

header .category-tour .img-text-box h5 {
    font-size: 15px;
    margin: 6px 0;
    line-height: normal;
    color: #f2911f;
    padding-bottom: 5px;
    border-bottom: 2px dashed #ddd;
    position: relative;
    display: inline-block;

}

header .category-tour .img-text-box p {
    font-size: 14px;
}


header .common-tab .nav-link:hover {
    background-color: transparent;
}

header ul .dropdown-list:hover .dropdown-link i {
    transform: rotate(180deg);
}

header ul .dropdown-list:hover .full-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

header .visa-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

header .visa-row .col {
    width: 33.33%;
    border-right: 1px solid #ddd;
    padding: 0 20px;
    ;
}

header .visa-row .col:nth-last-of-type(1) {
    border-right: none;
}

header .visa-row .col ul {
    margin: 10px 0;
}

header .visa-row .col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

header .visa-row .col figure img {
    margin: 10px 0;
    border-radius: 10px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

header nav ul .dropdown_list {
    position: relative;
}

header .dropdown_list .normal-dropdown ul li a {
    border-bottom: 2px dashed #ddd;
    display: inline-block;
    padding-bottom: 4px;
}


header nav ul .dropdown_list:hover a i {
    transform: rotate(180deg);
}

header .normal-dropdown {
    width: max-content;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 42px;
    left: -8px;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
}

header .visa_dropdown .normal-dropdown {
    right: 0;
    left: auto;
}

header .normal-dropdown li {
    padding: 5px 10px;
}


header nav ul .dropdown_list:hover .normal-dropdown {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

header .custom_packages ul li a {
    font-size: 14px;
    flex-wrap: nowrap;
    align-items: center;
}

header .custom_packages ul li a img {
    width: 40px;
    aspect-ratio: 1 / 1;
    margin-right: 14px;
}

/* toggle-button css */
header .toggle-button {
    width: 30px;
    display: none;
    flex-wrap: wrap;
    cursor: pointer;
    margin-left: 10px;
    position: absolute;
    top: 45px;
    right: 20px;
    z-index: 11;
}

header .toggle-button span {
    width: 26px;
    height: 3px;
    background-color: #000000;
    margin-bottom: 4px;
    transition: all 0.5s ease-in-out;
    z-index: 11;
}

header .toggle-button.active span {
    transform: rotate(45deg);
    margin: 5px 0 0 0;
}

header .toggle-button.active span:nth-of-type(2) {
    display: none;
}

header .toggle-button.active span:nth-last-of-type(1) {
    transform: rotate(-45deg);
    margin: -3px 0 0 0;
}

header .tour-form-delhi ul li a {
    display: inline-block;
}

header .tour-form-delhi ul li a strong {
    padding-bottom: 4px;
    border-bottom: 2px dashed #ddd;
}

.mobile-menu {
    display: none;
    color: #24B4BD;
}

/* special-offer-sec css */
.special-offer-sec {
    padding-top: 20px;
}

.special-offer-sec .row {
    background: linear-gradient(20deg, #D7CE48 20%, #33b6bb 100%);
    padding: 35px 25px;
    border-radius: 20px 20px 0 0;
}

.special-offer-sec .row h6,
.special-offer-sec .row h2 {
    color: #000;
}

.special-offer-sec .row .col-half a {
    margin-left: auto;
    display: block;
    padding: 10px 42px;
    font-size: 20px;
    background: transparent;
    border: 1px solid #dddd;
}

.special-offer-sec .row .col-half a:before {
    background: transparent;
}

/* footer css */

footer {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 50px 0 0;
    background: #000000;
}



/* footer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(To right, #00000052, #fff0);
} */

footer .container {
    position: relative;
    z-index: 1;
}

footer .col-left {
    width: 28%;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: start !important;
}

footer .col-left h6 {
    margin-bottom: 10px;
}


footer .col-left p {
    margin: 20px 0;
}

footer .col-left p,
footer ul li a,
footer h6,
footer h4 {
    color: #fff;
}



footer .col-left ul li img {
    width: 140px;
}

footer .col-right {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

footer .col-right ul li a {
    display: flex;
    align-items: start;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

footer .col-right ul li a:hover {
    color: #24B4BD;
}

footer .col-right ul li a span {
    margin-right: 10px;
}

footer h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul li a {
    display: flex;
}

footer ul li a i {
    margin-right: 10px;
}

footer ul li {
    margin-bottom: 16px;
}

footer ul li img {
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
}

.custom-shape-divider-top-1715059545 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.custom-shape-divider-top-1715059545 svg {
    position: relative;
    display: block;
    width: calc(135% + 1.3px);
    height: 112px;
}

.custom-shape-divider-top-1715059545 .shape-fill {
    fill: #FFFFFF;
}

footer .form-wrapper form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

footer .form-wrapper h6 {
    color: #000;
    text-align: center;
}

footer .form-wrapper {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #ffffff3d;
}

footer .form-wrapper .form-group {
    margin-bottom: 10px;
}

footer .form-wrapper .form-group .form-control {
    font-size: 14px;
    padding: 10px 16px;
}

footer .form-wrapper button {
    cursor: pointer;
}

footer .form-wrapper select {
    color: #828282;
}

footer .form-wrapper textarea {
    height: 120px;
    resize: none;
    min-height: 120px;
}

footer .location-map-footer iframe {
    border-radius: 8px;
}
/*  enquire-form  css*/
.form-wrapper{
	    padding: 20px;
    border-radius: 10px;
}
.form-wrapper h3{
	text-align: center;
    margin-bottom: 20px;
}
.enquire-form {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000ba;
    z-index: 11;
    display: none;

}

.enquire-form.active {
    display: block;
}

.enquire-form .form-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    background-color: #fff;

}

.enquire-form .form-wrapper .enquire-btn {
    margin: 0 auto;
    display: block;
}

.cross-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0897a9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.cross-btn i {
    font-size: 18px;
    color: #ffff;
}

@media only screen and (max-width: 1024px) {
    h1 {
        font-size: 32px;
    }

    header .col-left ul li a {
        font-size: 14px;
    }

    header .row ul li:not(:nth-last-of-type(1)) {
        margin-right: 10px;
    }

}

@media only screen and (max-width: 992px) {
    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 15px;
    }

    p {
        font-size: 14px;
    }

    header .logo {
        margin-right: 16px;
    }

    header .col-left ul li a {
        font-size: 13px;
    }

    header nav ul li a {
        font-size: 13px;
    }

    header nav ul li a i {
        margin-left: 4px;
    }

    .full-menu .inner-row .inner-col:not(:nth-last-of-type(1)) {
        width: 18%;
    }

    .full-menu .tab-content h5 a {
        font-size: 13px;
    }

    header .spacil-tour .inner-row .inner-col:nth-of-type(1) {
        padding: 0 10px 0 0;
    }

    header .spacil-tour .inner-row .inner-col:nth-of-type(2) {
        padding: 0 10px;
    }

    header .spacil-tour .inner-row .inner-col {
        width: 33% !important;
    }

    footer .col-right {
        width: 62%;
    }

    footer .col-right .col-3:nth-of-type(1) {
        width: 24%;
    }

    footer .col-right .col-3:nth-of-type(2) {
        width: 40%;
    }
}

@media only screen and (max-width: 850px) {
    .mobile-pay-btn {
        display: block;
        margin-right: 50px;
    }

    header .top-header {
        display: none;
    }

    header {
        padding: 0 0;
    }

    .common--botton {
        display: block;
    }

    header nav,
    header .col-left ul,
    header .col-right .buttons {
        display: none;
    }

    header .toggle-button {
        display: flex;
        top: 30px;
    }

    .breadcrumb li a {
        font-size: 12px;
    }

    /* mobile menu css */

    header .mobile-menu {
        width: 100%;
        height: 100vh;
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        left: -100%;
        z-index: 1;
        background-color: #fff;
        transition: all 0.4s ease-in-out;
        z-index: 11;

    }

    header .mobile-menu.active {
        left: 0;
    }

    header .mobile-menu .menu-box {
        width: 100%;
        height: 100vh;
        overflow-y: auto;
    }

    header .mobile-menu .menu-box .mobile-logo {
        padding: 10px 15px 10px 20px;
        border-bottom: 1px solid #2fb6bc;
    }

    header .mobile-menu .menu-box .mobile-logo a {
        display: inline-block;
    }

    header .toggle__button.active span {
        transform: rotate(45deg);
        margin: 5px 0 0 0;
    }

    header .toggle__button.active span:nth-of-type(2) {
        display: none;
    }

    header .toggle__button.active span:nth-last-of-type(1) {
        transform: rotate(-45deg);
        margin: -3px 0 0 0;
    }

    .see__more {
        margin-top: 15px;
        display: block;
    }

    .menu-categories__list .mobile-menu_list {
        font-size: 13px;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #2fb6bc;
        transition: all 0.5s ease-in-out;
    }

    .menu-categories__list .mobile-menu_list:hover,
    .subcategories_list:hover,
    .subcategories__link li:hover {
        background-color: #cdcdcd61;
    }

    .menu-categories__list .mobile-menu_list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .subcategories {
        width: 100%;
        height: 100%;
        top: 92px;
        left: -100%;
        position: absolute;
        background-color: #fff;
        transition: all 0.5s ease-in-out;
    }

    .subcategories__link {
        width: 100%;
        height: 100%;
        top: 0;
        left: -100%;
        position: absolute;
        background-color: #fff;
        overflow-y: auto;
        transition: all 0.5s ease-in-out;
    }

    .subcategories.active {
        left: 0;
    }

    .back-menu {
        padding: 10px 20px;
        border-bottom: 1px solid #2fb6bc;
        z-index: 11;
        cursor: pointer;
    }

    .subcategories__link .back-menu {
        padding: 0;
        border-bottom: none;
    }

    .back-menu i {
        margin-right: 4px;
    }

    .subcategories_list,
    .subcategories__link li {
        padding: 10px 20px;
        border-bottom: 1px solid #2fb6bc;
        transition: all 0.5s ease-in-out;
    }

    .subcategories_list.active .subcategories__link {
        left: 0;
    }

    .back-to-menu i {
        margin-right: 10px;
    }


    .subcategories_list a {
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .categories__list_item.active .subcategories {
        left: 0;
    }

    #tidio-chat #tidio-chat-iframe {
        display: none !important;
    }

    .categories__list_item .custom_packages li a span {
        display: flex;
        align-self: center;
    }

    .categories__list_item .custom_packages li a span img {
        width: 35px;
        margin-right: 8px;
    }

    .subcategories__link .area-menu {
        margin: 20px 0;
    }

    .subcategories__link .area-menu li {
        border-bottom: none;
        padding: 0;
    }

    .subcategories__link .area-menu li:nth-last-of-type(1) {
        border-bottom: none;
    }

    .subcategories__link .area-menu .color-orange {
        border-bottom: 2px dashed #ddd;
        display: inline-block;
        padding-bottom: 4px;
    }

    .subcategories__link .area-menu li ul {
        padding: 10px 20px;
    }

    .subcategories__link .area-menu li ul li a {
        padding: 10px 20px;
        border-bottom: 2px dashed #ddd;
    }

    .mobile-booking-btn {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #fff;
        /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
        border-top: 2px dashed #dddd;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px 40px;
        cursor: pointer;
        z-index: 11;
    }

    .mobile-booking-btn .booking-text {
        width: 50%;
        font-size: 11px;
        font-weight: 600;
    }

    .mobile-booking-btn .yellow-btn {
        padding: 5px 20px;
        text-align: center;
        border-radius: 30px;
        background: #d3cc1f;
        color: #000;
        border: none;
        font-weight: 800;
    }

    .special-offer-sec .row h2 {
        font-size: 24px;
    }

    footer .col-right {
        width: 65%;
    }

}

@media only screen and (max-width: 767px) {

    .py {
        padding: 30px 0;
    }

    .py-bottom {
        padding-bottom: 30px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    .common-text-heading h2 {
        font-size: 20px;
    }

    footer .row {
        row-gap: 30px;
    }

    footer .col-left .flogo {
        width: 150px;
    }

    footer .col-left,
    footer .col-right {
        width: 100%;
    }



}

@media only screen and (max-width: 580px) {
    h3 {
        font-size: 17px;
    }

    .col-4 {
        width: 48%;
    }

    .btn-none {
        display: none;
    }

    footer .col-right .col-3:nth-of-type(1) {
        width: 32%;
    }

    footer .col-right .col-3:nth-of-type(2) {
        width: 62%;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    header .top-header ul li a i,
    header .top-header .pay-btn i {
        margin-right: 4px;
    }

    header .top-header ul li a,
    header .top-header .pay-btn {
        font-size: 13px;
    }

    header .toggle-button.active {
        display: flex;
    }

    header .top-header ul li:not(:nth-last-of-type(1)) {
        margin-right: 6px;
    }

    .special-offer-sec .row {
        row-gap: 20px;
    }

    .special-offer-sec .col-half {
        width: 100%;
    }

    .special-offer-sec .row .col-half a {
        margin-left: 0;
    }

    footer .col-right .col-3:nth-last-of-type(1) {
        width: 100%;
    }

    footer .col-right .col-3:nth-last-of-type(1) ul {
        display: flex;
        justify-content: space-between;
    }

    footer .col-right .col-3:nth-last-of-type(1) ul li {
        width: 48%;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 380px) {

    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 22px;
    }

    h1 br {
        display: none;
    }

    h3 {
        font-size: 16px;
    }

    .breadcrumb li {
        line-height: 1.8;
    }

    header .logo img {
        width: 220px;
    }

    header .toggle-button {
        top: 22px;
    }

    header .top-header ul li a,
    header .top-header .pay-btn {
        font-size: 10px;
    }

    footer ul li {
        margin-bottom: 10px;
    }
}