@font-face {
    font-family: "Manrope";
    src: url("../font/Manrope-VariableFont_wght.ttf") format("truetype");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors */
    --primary: #33b6bb;
    --yellow: #d7ce34;
    --white: #fff;
    --black: #000;
    --gray: #6e6e6e;
    --border-light: #ddd;

    /* Backgrounds */
    --bg-white: #fff;
    --bg-black: #000;
    --bg-gray-light: #f5f5f5;
    --bg-blue-light: #f4fbff;

    /* Font */
    --font-family: "Manrope", sans-serif;

    /* Font sizes */
    --h1: 40px;
    --h2: 32px;
    --h3: 24px;
    --h4: 20px;
    --h5: 18px;
    --h6: 16px;
    --p: 16px;
    --small: 14px;

    /* Font weights */
    --w-400: 400;
    --w-500: 500;
    --w-600: 600;
    --w-700: 700;
    --w-800: 800;

    /* Line height */
    --lh-normal: 120%;

    /* Radius */
    --radius-10: 10px;
    --radius-20: 20px;
    --radius-30: 30px;
    --radius-40: 40px;
    --radius-50: 50px;

    /* Transition */
    --transition: all 0.3s ease;

    /* Shadow */
    --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--h6);
    line-height: var(--lh-normal);
    color: var(--black);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
li {
    list-style: none;
}

ul,
figure {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 860px;
}

.container-lg {
    max-width: 1380px;
}

.container-full {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: var(--lh-normal);
}

h1 {
    font-size: var(--h1);
    font-weight: var(--w-800);
}

h2 {
    font-size: var(--h2);
    font-weight: var(--w-800);
}

h3 {
    font-size: var(--h3);
    font-weight: var(--w-700);
}

h4 {
    font-size: var(--h4);
    font-weight: var(--w-500);
}

h5 {
    font-size: var(--h5);
    font-weight: var(--w-600);
}

h6 {
    font-size: var(--h6);
    font-weight: var(--w-500);
}

p {
    font-size: var(--p);
    color: #000;
    line-height: var(--lh-normal);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.no-wrap {
    flex-wrap: nowrap !important;
}

.space-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.space-end {
    justify-content: end;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.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;
}

.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-group {
    margin-bottom: 20px;
}

label {
    font-size: var(--small);
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-family);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-10);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

input[type="date"] {
    width: 100%;
    display: block;
    font-family: var(--font-family);
}

select option {
    width: 100%;
    display: block;
    color: var(--black);
    font-family: var(--font-family);
}

.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 weight  css*/
.weight-100 {
    font-weight: var(--w-100);
}

.weight-200 {
    font-weight: var(--w-200);
}

.weight-300 {
    font-weight: var(--w-300);
}

.weight-400 {
    font-weight: var(--w-400);
}

.weight-500 {
    font-weight: var(--w-500);
}

.weight-600 {
    font-weight: var(--w-600);
}

.weight-700 {
    font-weight: var(--w-700);
}

.weight-800 {
    font-weight: var(--w-800);
}

/*  common border-radius  css*/
.round-10 {
    border-radius: var(--radius-10);
}

.round-20 {
    border-radius: var(--radius-20);
}

.round-30 {
    border-radius: var(--radius-30);
}

.round-40 {
    border-radius: var(--radius-40);
}

.round-50 {
    border-radius: var(--radius-50);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.py-50 {
    padding: 50px 0;
}

.my-50 {
    margin: 50px 0;
}

.shadow {
    box-shadow: var(--shadow);
}



p a,
li p a {
    color: var(--primary);
    font-weight: var(--font-weight-600);

}

/* .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,
.bg-control {
    position: relative;
}

.bg-control {
    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 / 31%);
    border-radius: 10px;
}


.text-hide {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

/* breadcrumb css */
.breadcrumb-sec {
    padding: 10px 0;
}

.breadcrumb-sec ul li {
    font-size: var(--x-small-font-size);
}

.breadcrumb-sec ul li:not(:nth-last-of-type(1)) {
    margin-right: 10px;
}

.breadcrumb-sec ul li a {
    color: var(--black-color);
    font-weight: var(--font-weight-500);
    transition: var(--transition-3);
}

.breadcrumb-sec ul li a:hover {
    color: var(--main-color);
}

/* header css */
header {
    width: 100%;
    position: relative;
    z-index: 1;
    background-color: var(--bg-white);
}

header nav ul li a {
    font-size: 12px;
    font-weight: var(--font-weight-600);
    display: flex;
    align-items: center;
    position: relative;
    transition: var(--transition-5);
    padding: 28px 0 43px;
}

header nav ul li a.active:after {
    transform: scale3d(1, 1, 1);
    transform-origin: 0 50%;
}

header .col-right,
header .top-icon,
header .top-icon .destination-box,
header .top-icon .verified-box {
    display: flex;
    align-items: center;
}

header .top-icon span {
    font-size: 12px;
    list-style: 120%;
    font-weight: var(--font-weight-600);
    margin-left: 3px;
}

header .dropdown-list {
    position: relative;
}

header .dropdown-list .sub-dropdown {
    width: 200px;
    background-color: #FFFFFF;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25); */
    position: absolute;
    top: 47px;
    left: -3px;
    z-index: 11;
    padding: 8px 11px 8px 8px;
    transform: translateY(90px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

header .dropdown-list:hover .sub-dropdown {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

header .dropdown-list .sub-dropdown li {
    padding: 8px 0;
    margin-right: 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}

header .dropdown-list .sub-dropdown li:nth-last-of-type(1) {
    border-bottom: none;
    padding-bottom: 0;
}

header .dropdown-list .sub-dropdown li a {
    padding: 0;
    font-size: 11px;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
    position: relative;
}

header .dropdown-list .sub-dropdown .sub-dropdown-item a::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 4px;
    right: 0;
    background-image: url(../images/menu-arrow2.png);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    visibility: visible;
    transform: all 0.4s ease-in-out;
}

header .dropdown-list .sub-dropdown .sub-dropdown-item a:hover:before {
    opacity: 0;
    visibility: hidden;
}

header .dropdown-list .sub-dropdown .sub-dropdown-item a::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 4px;
    right: 0;
    background-image: url(../images/menu-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: all 0.4s ease-in-out;
}

header .dropdown-list .sub-dropdown .sub-dropdown-item a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: all 0.4s ease-in-out;
}

header .dropdown-list .sub-dropdown li a:hover {
    color: #27bdbe;
}

header .dropdown-list .sub-dropdown .sub-dropdown-item ul {
    position: absolute;
    top: 0;
    right: -100%;
    background-color: #fff;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25); */
    padding: 8px 11px 8px 8px;
    transform: translateY(90px);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

header .dropdown-list .sub-dropdown .sub-dropdown-item:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

header .dropdown-list .sub-dropdown .sub-dropdown-item ul a::after,
header .dropdown-list .sub-dropdown .sub-dropdown-item ul a::before {
    display: none;
}

.toggle-button {
    width: 30px;
    display: none;
    flex-wrap: wrap;
    cursor: pointer;
    margin-left: 10px;
    position: absolute;
    top: 45px;
    right: 20px;
    z-index: 11;
}

.toggle-button span {
    width: 26px;
    height: 3px;
    background-color: #000000;
    margin-bottom: 4px;
    transition: all 0.5s ease-in-out;
    z-index: 11;
}

/* footer css */
footer {
    width: 100%;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: auto;
    padding: 330px 0 0;
    margin-top: 100px;
}

footer .map-text {
    padding-left: 110px;
}

footer .map-text p {
    font-size: 14px;
    line-height: normal;
    margin: 24px 0 30px;
}

footer .col-left {
    width: 503px;
}

footer .col-right {
    width: calc(100% - 660px);
}

footer .inner-col {
    width: 25%;
}

footer .inner-col h4 {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #8f8e8e;
}

footer .inner-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
}

footer .inner-col ul li:nth-last-of-type(1) {
    margin-bottom: 0;
}

footer .association {
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid #828282;
    border-bottom: 1px solid #828282;
}

footer .association p,
footer .payment p {
    margin-bottom: 16px;
}

footer .association ul,
footer .payment ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 30px;
    column-gap: 20px;
}

footer .association ul li {
    width: 27%;
}

footer .payment {
    padding-bottom: 28px;
}

footer .payment ul {
    column-gap: 33px;
}

footer .copy-right {
    background-color: #27BDBE;
    padding: 16px 0;
}

footer .copy-right ul li:not(:nth-last-of-type(1)) {
    margin-right: 16px;
}

footer .copy-right p {
    font-size: 14px;
    font-weight: 600;
    color: #f5f5f5;
}

@media screen and (max-width: 1280px) {
    header nav ul li {
        margin-right: 30px;
    }

    .travel-agency-sec .inner-row {
        column-gap: 50px;
    }
}


@media screen and (max-width: 1240px) {
    header nav ul li {
        margin-right: 16px;
    }

    footer .col-right {
        width: calc(100% - 550px);
    }
}

@media screen and (max-width: 1080px) {
    header nav ul li {
        margin-right: 10px;
    }
}

@media screen and (max-width: 1140px) {
    header nav ul li {
        margin-right: 12px;
    }

    footer {
        background-position: 60%;
    }

    footer .col-right {
        width: calc(100% - 520px);
    }
}

@media screen and (max-width: 1080px) {
    header nav ul li {
        margin-right: 10px;
    }

    header nav ul li:nth-last-of-type(1) {
        margin-right: 8px;
    }

    header .top-icon .verified-box {
        margin-left: 6px;
        padding-left: 6px;
    }
}


@media screen and (max-width: 1024px) {
    header {
        padding: 10px 0;
    }

    header nav {
        display: none;
    }

    header .col-right {
        padding-right: 60px;
    }

    header .toggle-button {
                display: flex !important;
        top: 8px !important;
        gap: 1px !important;
    }
	header .toggle-button.active span:nth-child(3) {
       transform: rotate(-45deg) translate(5px, -4px) !important;
}
	.mobile-menu{
	top:76px !important;
	}
    footer {
        background-image: url(../images/mobile-footer-bg.png);
        padding: 240px 0 0;
        background-position: top;
    }

    footer .row {
        row-gap: 30px;
    }

    footer .col-left,
    footer .col-right {
        width: 100%;
    }

    footer .f-logo img {
        width: 249px;
        margin: 0 auto;
    }

    footer .map-text {
        padding: 0;
    }

    .copy-right .row {
        row-gap: 10px;
    }

    .copy-right .col {
        width: 100%;
        text-align: center;
    }

    .copy-right ul {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    header .top-icon {
        display: none;
    }
}

@media screen and (max-width: 580px) {
    header .top-icon {
        display: none;
    }

    footer .inner-col {
        width: 31%;
    }

}

@media screen and (max-width: 480px) {
    header .logo img {
        width: 178px;
    }

    header .toggle-button {
        display: flex;
        top: 15px;
    }
}