@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: 1.4;

  /* 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);
  background: linear-gradient(135deg, #CAF0F8, #90E0EF);
}

img {
  max-width: 100%;
  display: block;
}

.full-img {
  width: 100%;
  border-radius: 10px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
}

ul,
figure {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 860px;
}

.container-lg {
  max-width: 1420px;
  margin: 0 auto;
}

.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%;
}

/* Chrome, Edge, Safari */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.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);
  cursor: pointer;
}

.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;
  background-color: transparent;
  cursor: pointer;
}

.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 {
  width: max-content;
  display: inline-block;
  background-color: #0b5ed7;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.5s ease-in-out;
}

.btn:hover {
  background-color: #000;
  color: #fff;
}


.view-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 30px;
  background-color: #ffffff;
  color: #ec9f0e;
  border: 1px solid #ddd;
  transition: all 0.3s ease-in-out;

}

.view-btn:hover {
  background-color: #ec9f0e;
  color: #fff;
  border-color: #ec9f0e;
}

.btn img {
  width: 20px;
}

.whatsapp-btn {
  background-color: #3da104;
  border: 1px solid #3da104;
}

.whatsapp-btn:hover {
  background-color: #367213;
  border: none;
}

/* 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);
}

.py {
  padding: 70px 0;
}

.my {
  margin: 70px 0;
}

.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;
}

.common-heading h2 {
  position: relative;
  /* color: #1a6fc4; */
}

.common-heading h2::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #03045E;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
}

.common-heading p {
  margin-top: 20px;
  font-size: 18px;
  color: #686767;
}

.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; */
  background: linear-gradient(270deg, #ffffff, #0000ff);

  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.fixed-header {
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 5%);
  position: fixed;
  top: -1px;
  left: 0;
  animation: sticky 0.5s ease-out;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}

@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

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: 42px 0;
}

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;
}

.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;
}

footer .map-text {
  padding-left: 24px;
}

footer .map-text p {
  font-size: 15px;
  line-height: 1.5;
  margin: 24px 0 30px;
  color: #fff;
}

.map-address strong {
  color: #fff;
  line-height: 14px;
  line-height: 1.5;
}

/* footer .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr  200px;
    gap: 60px;

} */

footer .col {
  width: 20%;
}

footer .col h4 {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d1d1d1;
  color: #fff;
}

footer .col ul li {
  font-size: 15px;
  margin-bottom: 16px;
  color: #fff;
}

footer .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: 1280px) {
  header nav ul li {
    margin-right: 30px;
  }

  .travel-agency-sec .inner-row {
    column-gap: 50px;
  }
}

@media (max-width: 1240px) {}

@media (max-width: 1180px) {}

@media (max-width: 1140px) {}

@media (max-width: 1100px) {
  .contact-text br {
    display: none;
  }
}

@media (max-width: 1080px) {
  header nav ul li:nth-last-of-type(1) {
    margin-right: 12px;
  }
}

@media (max-width: 1024px) {
  .top-header {
    margin-bottom: 10px;
  }

  header {
    padding-bottom: 10px;
  }

  header nav {
    display: none;
  }

  header .toggle-button {
    display: flex;
    top: 30px;
  }

  footer .row {
    row-gap: 30px;
  }

  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: 870px) {
  footer .row .col {
    width: 48%;
    margin-bottom: 20px;
  }

  .top-header .btn-wrapper .whatsapp-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  header .top-icon {
    display: none;
  }

  .top-header .btn-wrapper {
    display: none;
  }

  .cta-sec .row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-sec .col.flex {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  header .top-icon {
    display: none;
  }

  footer .row .col {
    width: 100%;
  }

  .copy-right .row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .top-header {
    display: none;
  }

  header {
    padding: 10px 0;
  }


}



/* ================= cta =================== */


/* ======================= request-call-sec ================= */
.cta-sec {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: var(--white);
  padding: 70px 0;
}

.cta-sec .row .col h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-sec .call-icon {
  font-size: 32px;
  margin-right: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cta-sec .call-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.cta-sec .col.flex {
  display: flex;
  align-items: center;
  gap: 15px;
}