@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.cdnfonts.com/css/satoshi");
:root {
  --primary: #4e142a;
  --secondary: #3f5189;
  /* --text-1: #4d4d4d; */
  --light: #fff;
  --transition: all 0.3s ease-in-out;
  --primary-font: "Poppins", serif;
  --secondary-font: "Satoshi", serif;
}

.section-title {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: 600;
  font-family: var(--primary-font);
  color: black;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}
.section-subtitle {
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--primary);
  text-align: center;
  margin: 15px 0 clamp(25px, 3vw, 45px) 0;
  text-transform: capitalize;
}

a:hover {
  color: var(--primary);
}

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

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

a,
a:hover,
a:active {
  text-decoration: none;
  transition: var(--transition);
}

a {
  color: #3f5189;
  font-weight: 500;
  list-style: none;
}

a .btn {
  color: white;
}
ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
body {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  color: var(--text-1);
  overflow-x: clip;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--primary-font);
  margin: 0;
  line-height: 100%;
}

p {
  margin-bottom: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 400;
}

.section-margin {
  margin: clamp(40px, 3vw, 70px) auto 0;
}

/* h2 {
  text-transform: uppercase;
} */
.section-padding {
  padding: clamp(40px, 3vw, 70px) 0;
}
.container {
  width: 100%;
  max-width: 1360px;
  margin: auto;
  padding: 0 20px;
}
.small-container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.flex {
  display: flex;
}
.flex-middle {
  justify-content: space-between;
}

.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
header.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: white;
  padding: 10px 0;
  /* margin-bottom: 30px; */
  box-shadow: 1px 1px 8px 2px #cacaca30;
  position: relative;
}
header.site-header .container {
  display: flex;
}
.main-navigation {
  display: block;
  width: 100%;
  align-content: center;
}
.main-navigation ul {
  display: flex;
  gap: 20px;
}
.main-navigation a {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 14px;
  display: block;
}
.main-navigation .menu {
  display: flex;
  justify-content: flex-end;
}
.menu-quick-link-container .menu {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

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

.hamburger-menu {
  display: none;
  cursor: pointer;
}

/* .section-title::before{
  content: "";
  background-image: url(../img/left-titlevector.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 60px;
  height: 16px;
}
.section-title::after{
  content: "";
  background-image: url(../img/right-titlevector.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 60px;
  height: 16px; 
} */

.btn {
  border: none;
  background: var(--primary);
  border-radius: 12px;
  padding: 14px 20px;
  color: white;
  align-items: center;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  font-family: var(--primary-font);
  font-weight: 600;
  background: linear-gradient(180deg, #4e142a 0%, #b62260 100%);
  margin: 0 auto;
}

.btn:hover {
  background: linear-gradient(180deg, #b62260 0%, #4e142a 100%);
  color: var(--light);
  transition: var(--transition);
}
/* .btn::after {
  content: "\f062";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: #e5ebf2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: rotate(45deg);
  color: var(--primary);
}

.btn:hover::after {
  transform: rotate(90deg);
  transition: var(--transition);
} */

/* footer */
footer.site-footer {
  background-color: #525d911a;
  position: relative;
}
.site-footer .logo-contents > img {
  margin-bottom: 20px;
}
.site-footer::before {
  content: "";
  background-image: url(../img/aeroplane.png);
  position: absolute;
  width: 248px;
  height: 177px;
  background-repeat: no-repeat;
  bottom: -45px;
  z-index: -2;
}
.site-footer::after {
  content: "";
  background-image: url(../img/dest-rightbg.png);
  position: absolute;
  width: 914px;
  height: 212px;
  background-repeat: no-repeat;
  bottom: 0px;
  right: 0;
  z-index: -1;
}
.footer-contents {
  justify-content: space-evenly;
}

.footer-contents div p,
.contact-info h4 {
  color: #112483;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}
.contact-info a {
  font-size: 14px;
  font-weight: 400;
  color: #585858;
  line-height: 21px;
}
.contact-info {
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 20px;
}
.socialmedia-logo {
  gap: 10px;
}
.socialmedia-logo div{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--light);
  color: #3f5189;
  text-align: center;
  align-content: center;
}
.footer-wrapper p {
  color: #112483;
  font-size: 16px;
  margin-bottom: 15px;
  margin-top: 30px;
}
footer ul li {
  font-size: 14px;
  font-weight: 400;
}
.footer_bottom {
  background-color: #525e91;
  color: white;
  justify-content: space-between;
}
.footer_bottom a {
  color: white;
}
.footer_bottom p {
  margin: clamp(10px, 3vw, 20px) 0;
  font-size: clamp(12px, 3vw, 16px);
}

.socialmedia-logo i {
  color: #112483;
}

.footer-wrapper li a {
  color: #585858;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
}
.footer-wrapper {
  gap: 45px;
}

.footer-wrapper > div {
  flex: 1;
}
.footer-wrapper > div:nth-child(1) {
  flex: 3;
}

/* Off-canvas base */
.off-canvas {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  padding: 10px 20px;
  transition: transform 0.3s ease;
  transform: translateX(0);
  z-index: 1000;
}
.main-navigation.off-canvas {
  display: none;
}
/* Active state */
.off-canvas.menu-open {
  transform: translateX(300px);
}

/* Menu styles */
.off-canvas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .off-canvas li {
  margin-bottom: 20px;
} */

.off-canvas a{
  text-decoration: none;
  font-size: 18px;
  color: #000;
  display: block;
  padding: 10px 12px;
  color: #000;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.main-navigation.main-menu .sub-menu a{
  padding: 8px 10px;
}
.main-navigation.off-canvas {
  align-content: unset;
}

/* Hover effect */
.off-canvas a:hover,
.main-navigation.main-menu .sub-menu a:hover {
  color: #0a58ca;
  background: rgba(10, 88, 202, 0.08);
  border-radius: 6px;
}

/* Overlay */
/* body.menu-active::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
} */
.offcanvas-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  z-index: 1002;
}

.off-canvas .sub-menu,
.main-navigation .sub-menu {
  display: none;
  padding-left: 15px;
}

.off-canvas .menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.off-canvas .menu-item-has-children > a::after,
.main-navigation .menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.off-canvas .menu-item-has-children.submenu-open > a::after,
.main-navigation .menu-item-has-children.submenu-open > a::after {
  transform: rotate(180deg);
}

.main-navigation.main-menu .sub-menu {
  position: absolute;
  background-color: white;
  padding: 20px;
  border-radius: 9px;
  box-shadow: 0px 0px 2px 1px #8080802b;
}
.main-navigation li.menu-item-has-children:hover > .sub-menu {
  display: block;
}