/* Font */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */
/* TASA Orbiter Deck fonts Font */
@font-face {
  font-family: "TASAOrbiter";
  src: url("..'/assets/fonts/TASAOrbiterText-Bold-BF64891cba00f5b.otf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "TASAOrbiter";
  src: url("../assets/fonts/TASAOrbiterText-Regular-BF64891cba384f3.otf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "TASAOrbiter";
  src: url("../assets/fonts/TASAOrbiterText-Medium-BF64891cb9e8a75.otf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TASAOrbiter";
  src: url("../assets/fonts/TASAOrbiterText-SemiBold-BF64891cba09cfc.otf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}
/* TASA Orbiter Deck fonts Font */

:root {
  --primary-font: "TASAOrbiter";
  --secondary-font: "Manrope";
  --primary-color: #1d75fc;
  --secondary-color: #ff8343;
  --border-color: #d0d0d0;
  --black: #040404;
  --bg: #ffffff;
  --main-120: #e8f1ff;
  --main-140: #a5c8fe;
  --main-160: #77acfd;
  --main-180: #4a91fd;
  --sec-20: #ffe6d9;
  --sec-20: #ffcdb4;
  --sec-20: #ffb58e;
  --sec-20: #ff9c69;
  --text-1: #040d12;
  --text-2: #222831;
  --text-3: #ffffff;
  --accent-light-gray: #d0d0d0;
  --accent-white-smoke: #f5f5f5;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--primary-font);
}

h6 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none;
  font-family: var(--primary-font);
}

p {
  color: var(--text-2);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
  font-family: var(--primary-font);
}

input {
  outline: none;
  font-family: var(--secondary-font);
}

body {
  background: var(--bg);
}

/*====================
Reset Default CSS End
====================*/

/* Webkit Scroll bar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  transition: 0.3s;
  background: var(--primary-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Webkit Scroll bar */

/* Follow Us On Start */
#follow_wrapper {
  width: 100%;
  background: var(--bg);
}

#follow_wrapper .header_wrap {
  margin-bottom: 30px;
}

#follow_wrapper .header .title {
  display: inline-block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  color: var(--text-1);
}

#follow_wrapper .header .title span {
  position: relative;
}

#follow_wrapper .header .title svg {
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 80px;
}

.follow_us .slider {
  position: relative;
}

.follow_us .swiper-wrapper {
  display: flex;
}

.follow_us .card {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: none !important;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.follow_us .card:hover .card-img img {
  transform: scale(1.02);
}

.follow_us .card .card-img {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  transition: 0.3s ease;
  object-fit: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.follow_us .card img {
  width: 100%;
  aspect-ratio: 15 / 16;
  object-fit: cover;
  transition: 0.3s ease;
  background-size: cover;
}

#follow_wrapper .explore_btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  border-radius: 8px;
  font-weight: 400;
  padding: 10px;
  border: var(--border-color);
  color: var(--text-1);
  background: var(--main-120);
}

#follow_wrapper .explore_btn:hover {
  background: var(--primary-color);
  color: var(--text-3);
}

#follow_wrapper .explore_btn svg {
  width: 22px;
  height: 22px;
  transition: 0.4s;
}

#follow_wrapper .explore_btn svg path {
  stroke: var(--text-1);
  transition: 0.4s;
}

#follow_wrapper .explore_btn:hover svg path {
  stroke: var(--text-3);
  transition: 0.4s;
}

.fa_instagram {
  display: flex;
  gap: 10px;
}

.fa_instagram .link {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.fa_instagram .link::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: var(--primary-color);
  transition: 0.3s;
}

.fa_instagram .link:hover::after {
  width: 40px;
  height: 40px;
}

.fa_instagram .link:hover i {
  color: var(--text-3);
}

.fa_instagram .link {
  color: var(--text-1);
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.fa_instagram .link i {
  z-index: 1;
  transition: 0.3s;
}

.follow_us .follow_sliders {
  position: relative;
}

.follow_us .swiper-pagination-horizontal {
  display: none;
}

/* .follow_us .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0px 8px !important;
  border-radius: 4px !important;
  background: var(--main-140) !important;
  opacity: 1 !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -ms-border-radius: 4px !important;
  -o-border-radius: 4px !important;
}

.follow_us .swiper-pagination-bullet-active {
  transition: width 0.5s !important;
  background: var(--primary-color) !important;
  border: 1px solid transparent !important;
} */

@media (min-width: 1200px) {
  .follow_us .swiper-slide {
    width: 50%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .follow_us .swiper-slide {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .follow_us .swiper-slide {
    width: 100%;
  }

  #follow_wrapper .header .title {
    font-size: 26px;
    display: inline-block;
  }

  #follow_wrapper .header .title span {
    font-size: 26px;
  }
  #follow_wrapper .header .title svg {
    width: 60px;
  }
}

/* Follow Us On End */

/* The People Behind Traveloo Start */
.the_people {
  width: 100%;
  background: var(--bg);
}

.the_people .header_wrap {
  margin-bottom: 30px;
}

.the_people .header .title {
  display: inline-block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  color: var(--text-1);
}

.the_people .header .title span {
  position: relative;
}

.the_people .header .title svg {
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 130px;
}

.the_people .social_wrap {
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

.the_people .people_box:hover .social_wrap {
  opacity: 1;
}

.the_people .people_box:hover img {
  opacity: 0;
}
.the_people .people_box img {
  transition: opacity 0.3s ease-in-out;
}

.people_social .link {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  transition: 0.3s;
}

.people_social .link::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: var(--primary-color);
  transition: 0.3s;
}

.people_social .link:hover::after {
  width: 40px;
  height: 40px;
}

.people_social .link:hover i {
  color: var(--text-3);
}

.people_social .link {
  color: var(--text-1);
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.people_social .link i {
  z-index: 1;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .the_people .header .title {
    font-size: 26px;
    display: inline-block;
  }

  .the_people .header .title span {
    font-size: 26px;
  }
  .the_people .header .title svg {
    width: 100px;
  }
}

/* The People Behind Traveloo End */

/* Our Core Values Start */
.core_value {
  width: 100%;
  background: var(--accent-white-smoke);
}

.core_value .header_wrap {
  margin-bottom: 30px;
}

.core_value .header .title {
  display: inline-block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  color: var(--text-1);
}

.core_value .header .title span {
  position: relative;
}

.core_value .header .title svg {
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 130px;
}

.core_value .bg_shape2,
.core_value .bg_shape {
  position: absolute;
  width: 100%;
  margin: auto;
  max-width: 70%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.core_value .bg_shape2 {
  display: none;
}
.core_value .bg_shape {
  display: block;
}

@media (max-width: 768px) {
  .core_value .header .title {
    font-size: 26px;
    display: inline-block;
  }

  .core_value .header .title span {
    font-size: 26px;
  }
  .core_value .header .title svg {
    width: 100px;
  }

  .core_value .bg_shape2 {
    display: block;
  }
  .core_value .bg_shape {
    display: none;
  }
}
/* Our Core Values End */
