@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: #2F6FED;
    --secondary: #0B5ED7;
    --yellow: #F4C430;
    --white: #ffffff;
    --black: #0f172a;
    --gray: #6b7280;
    --border-light: #e5e7eb;

    /* ================= Backgrounds ================= */
    --bg-white: #ffffff;
    --bg-black: #0f172a;
    --bg-gray-light: #f8fafc;
    --bg-blue-light: #f1f7ff;
    --bg-card: #ffffff;

    /* 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;
}

.btn {
    background-color: #0B5ED7;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
    border: 1px solid #fff;
    padding: 10px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn img {
    width: 20px;
}

.whatsapp-btn {
    background-color: #3da104;
    border: 1px solid #3da104;
}

.whatsapp-btn:hover {
    background-color: transparent;
    border: 1px solid #ffffff;
}

/* 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;
}

p a,
li p a {
    color: var(--primary);
    font-weight: var(--w-600);

}

.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: --w-500;
    transition: var(--transition-3);
}

.breadcrumb-sec ul li a:hover {
    color: var(--main-color);
}

/* header css */
.top-header {
    background-color: #0B5ED7;
    padding: 8px 0;
}

.action-icon,
.action-icon a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-icon a {
    color: #fff;
}

.action-icon a i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
}

.action-icon a i {
    color: #0B5ED7;
}

.top-header .btn-wrapper {
    display: flex;
    gap: 20px;
}

.top-header .btn-wrapper .btn {
    font-size: 14px;
    padding: 7px 20px;
}

header {
    width: 100%;
    position: relative;
    z-index: 1;
    background-color: var(--bg-white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .logo img {
    width: 120px;
}

header nav ul li {
    margin-right: 48px;
}

header nav ul li:nth-last-of-type(1) {
    margin-right: 40px;
}

header nav ul li a {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    transition: var(--transition-5);
    padding: 36px 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;
    font-weight: var(--w-700);
    margin-left: 3px;
}

header .top-icon .verified-box {
    border-left: 1px solid #ddd;
    margin-left: 12px;
    padding-left: 12px;
}

header .dropdown-list {
    position: relative;
}

header .dropdown-list .sub-dropdown {
    width: 160px;
    background-color: #FFFFFF;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 70px;
    left: -3px;
    z-index: 11;
    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 10px;
    margin-right: 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}

header .dropdown-list .sub-dropdown .sub-dropdown-item {}

header .dropdown-list .sub-dropdown li:nth-last-of-type(1) {
    border-bottom: none;
}

header .dropdown-list .sub-dropdown li a {
    padding: 0;
    font-size: 15px;
    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: -180px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    padding: 0;
    transform: translateY(90px);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    width: 180px;
    /* padding: 0; */
}


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;
}

.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-color: #0B5ED7;
    height: auto;
    padding: 50px 0 0;
    margin-top: 50px;
}

footer .map-text {
    padding-left: 24px;
}

footer .map-text p {
    font-size: 15px;
    line-height: 1.5;
    margin: 24px 0 30px;
    color: #fff;
}

footer .col-left {
    width: 440px;
}

footer .col-right {
    width: calc(100% - 520px);
}

footer .f-logo img {
    width: 240px;
    padding-left: 105px;
}

.map-address strong {
    color: #fff;
    line-height: 14px;
    line-height: 1.5;
}

footer .inner-row {
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 60px;

}

footer .inner-col h4 {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d1d1d1;
    color: #fff;
}

footer .inner-col ul li {
    font-size: 15px;
    margin-bottom: 16px;
    color: #fff;
}

footer .inner-col ul li:nth-last-of-type(1) {
    margin-bottom: 0;
}

footer .copy-right {
    padding: 10px 0;
    margin-top: 20px;
    border-top: 1px solid #fff;
}

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;
}

footer .copy-right p a {
    color: #fff !important;
}

.contact-info .contact-item {
    display: flex;
    align-items: start;
    gap: 10px;
}

.contact-text,
.contact-info .contact-item a {
    color: #fff !important;
    line-height: 1.5;
}

.contact-info .contact-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.socail-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding-left: 20px;
}

.socail-icons li {
    margin-right: 0 !important;
}

.socail-icons a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.socail-icons .fa-facebook-f {
    color: #0B5ED7;
}

.socail-icons .fa-whatsapp {
    color: #3da104;
}

.socail-icons .fa-instagram {
    color: #db098b;
}

.socail-icons .fa-twitter {
    color: #1168eb;
}

@media (max-width: 1300px) {}

@media (max-width: 1280px) {
    header nav ul li {
        margin-right: 30px;
    }

    .travel-agency-sec .inner-row {
        column-gap: 50px;
    }

    footer .col-right {
        width: calc(100% - 470px);
    }
}


@media (max-width: 1240px) {


    footer .col-left {
        width: 350px;
    }

    footer .col-right {
        width: calc(100% - 410px);
    }
}

@media (max-width: 1180px) {
    footer .col-right {
        width: calc(100% - 380px);
    }
}

@media (max-width: 1140px) {
    footer .inner-row {
        gap: 36px;
    }
}

@media (max-width: 1100px) {
    footer .inner-row {
        grid-template-columns: 1fr 1fr 280px;
    }

    .contact-text br {
        display: none;
    }
}



@media (max-width: 1080px) {


    header nav ul li:nth-last-of-type(1) {
        margin-right: 12px;
    }

    footer .inner-row {
        grid-template-columns: 1fr 1fr 250px;
    }

}


@media (max-width: 1024px) {
    .top-header {
        margin-bottom: 10px;
    }

    header {
        padding-bottom: 10px;
    }

    header nav {
        display: none;
    }

    footer .inner-row {
        grid-template-columns: 1fr 1fr 350px;
    }

    header .toggle-button {
        display: flex;
        top: 30px;
    }

    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;
    }

    footer .map-text p {
        text-align: center;
    }
}

@media (max-width: 850px) {
    footer .inner-row {
        grid-template-columns: 1fr 1fr 300px;
    }

    .top-header .btn-wrapper .whatsapp-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    header .top-icon {
        display: none;
    }

    .top-header .btn-wrapper {
        display: none;
    }

    footer .inner-row {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    footer .inner-row .inner-col:nth-last-of-type(1) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 580px) {
    header .top-icon {
        display: none;
    }

}

@media (max-width: 480px) {
    .top-header {
        display: none;
    }

    header {
        padding: 10px 0;
    }

    header .logo img {
        width: 88px;
    }

    footer .inner-row {
        grid-template-columns: 140px 1fr;
    }

}