body {
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style: none;
  vertical-align: top;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

:root {
  --primary-color: #a08300;
  --secondary-color: #FFCD3A;
  --tertiary-color: #F54C5C;
  --white-color: #fff;
  --black-color: #000;
  ---grey-color: #666;
  /* --quaternary-color: ; */
}



/*  */

/* Progress bar */

.progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #f0f0f0;
  z-index: 9999;
  display: none;
}

.progress-bar {
  height: 100%;
  background-color: black;
  transition: all 0.3s ease;
}

/* progress circle */

.progress-circle-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-circle {
  width: 80px;
  height: 80px;
}

.progress-circle-bar {
  fill: none;
  stroke: var(--btn-bgcolor);
  stroke-width: 5;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transform-origin: center;
  transition: stroke-dashoffset 0.3s ease;
}

.progress-background {
  fill: transparent;
  stroke: #ededed;
  stroke-width: 5;
  stroke-dasharray: none;
}


.scroll-to-top {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--box-color);
  border: 5px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.scroll-to-top svg {
  display: block;
  width: 30px;
  height: 30px;
  stroke: white;
  transition: all 0.1s ease;
}

/*  */


@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}

.header-main {
  padding: 20px;
  background: #fff;
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
 
}

.header_menu_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menus ul {
  display: flex;
  gap: 0 35px;
  padding: 0;
  margin: 0 15px;
}

.nav-menus ul li a {
  font-size: 17px;
  font-weight: 500;
  color: var(--black-color);
  text-decoration: none;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 35px;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--black-color);
  border-radius: 50px;
  padding: 8px 15px;
  background: transparent;
  width: 220px;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  background: transparent;
}

.search-box input::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
}

.search-box i {
  color: #333;
  margin-right: 8px;
}

.header_login {
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  text-decoration: none;
}

/*  */
.header_signup {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  text-decoration: none;
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  padding: 10px 12px 12px;
  line-height: 25px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  transition: all ease .5s;
}

.header_signup i {
  font-size: 20px;
  margin-right: 7px;
}

.header_signup::before,
.btn1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--btn-bgcolor);
  border-radius: 50% 50% 0 0;
  transition: top 0.5s ease;
  z-index: -1;
}

.header_signup:hover,
.btn1:hover {
  transform: translateY(-3px) scale(1.05);
  transition: all ease .5s;
}

.header_signup:hover::before,
.btn1:hover::before {
  top: 0;
  border-radius: 0;
}

/* HERO WRAPPER */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0c0f12;
}

/* Background Swiper sits behind content */
.hero .bg-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .bg-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  /* avoid stuck opacity:0 */
}

/* dark overlay for legibility */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .45), rgba(0, 0, 0, .35) 40%, rgba(0, 0, 0, .55));
}

/* CONTENT */
.hero .container {
  position: relative;
  z-index: revert-layer;
  padding: 163px 0;
}

.hero .sliderheading {
  margin: 20px auto;
  font-size: 181px;
  line-height: 137px;
  color: #fff;
  font-weight: 900;
  width: 100%;
  text-transform: uppercase;
  font-family: Philosopher, sans-serif;
  text-align: center;
}

.hero .slidersubheading {
  font-size: 32px;
  font-family: "Montez", cursive;
  color: #ffcd3a;
  font-weight: 600;
  text-align: center;
}

.slidertext {
  padding: 10px;
  border-radius: 10px;
  background: #ffffff69;
  margin: 0 auto 12px;
  font-size: 108px;
  line-height: 73px !important;
  color: #FFEB3B;
  font-weight: 900;
  width: 66%;
  text-transform: uppercase;
  font-family: Philosopher, sans-serif;
  text-align: center;
}

/* Search pill (dummy demo UI) */
.search-pill {
  display: flex;
  align-items: center;
  padding: 0px;
  max-width: 1083px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
  margin: 41px auto 0;
}

.search-pill .group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-pill .group .icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #f3f5f7;
  color: #4b5563;
  font-size: 22px;
}

.search-pill .btn {
  white-space: nowrap;
  padding: 18px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #2fbd6a;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

/* Left social rail */
.social-rail {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-rail a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  backdrop-filter: blur(4px);
}

/* Right nav arrows */
.hero-nav {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-nav .nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #fff;
  color: #111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  font-size: 20px;
}

.hero-main {
  position: relative;
}

/* decorative bottom cloud (optional) */
.cloud-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  z-index: revert-layer;
  pointer-events: none;
  overflow: hidden;
}

.cloud-bottom img {
  width: 100%;
}

@media (max-width:768px) {
  .search-pill {
    flex-direction: column;
    gap: 12px;
    border-radius: 28px
  }

  .search-pill .btn {
    width: 100%
  }
}

/* Optional: dim background for text readability */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .25);
}

/* Navigation buttons (you can style these as you like) */
.background-slider-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  gap: 12px;
  justify-content: center;
  z-index: 3;
}

.background-button-prev,
.background-button-next {
  cursor: pointer;
  padding: 10px 14px;
  background: rgba(0, 0, 0, .4);
  border-radius: 999px;
  color: #fff;
}

/*  */
.banner_main {
  position: relative;
  margin: 100px 0 0;
}

.banner_main .container .row {
  gap: 30px 0;
}

.banner_text {
  gap: 28px 0;
  display: flex;
  flex-direction: column;
}

.banner-h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 20px;
}

.banner-h1 span {
  color: var(--primary-color);
}

.banner-h2 {
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
  text-decoration: none;
}

.banner_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn1 {
  background: var(--primary-color);
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 100px;
  font-size: 17px;
  color: var(--white-color);
  font-weight: 500;
  /*  */
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
  transition: all ease .5s;
}

.btn-or-story {
  padding: 25px 0 0;
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.su_button_circle {
  background-color: red;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
  /* animation-timing-function: 
ease-in-out; */
}

.button_su_inner {
  display: flex;
  background: var(--primary-color);
  color: #F4F4F4;
  font-size: 16px;
  font-weight: normal;
  width: max-content;
  align-items: center;
  gap: 0 11px;
  text-align: center;
  border-radius: 100px;
  transition: 400ms;
  text-decoration: none;
  padding: 10px 20px 10px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100000;
  overflow: hidden;
  transition: all ease .5s;
  line-height: 25px;
  border-radius: 100px;
  position: relative;
}

/*  */


.button_su_inner::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--btn-bgcolor);
  border-radius: 50% 50% 0 0;
  transition: top 0.5s ease;
  z-index: -1;
}

.button_su_inner:hover {
  transform: translateY(-3px) scale(1.05);
  transition: all ease .5s;
}

.button_su_inner:hover::before {
  top: 0;
  border-radius: 0;
}



/*  */
.button_su .get-btn-icon {
  border-radius: 50%;
  background-color: #fff;
  width: 35px;
  height: 35px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: var(--primary-color);
  z-index: 1;
}

.button_text_container {
  position: relative;
  z-index: 8;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.story-wrapper {
  display: flex;
  gap: 0 30px;
  align-items: center;
}

.story-container {
  position: relative;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(#feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-container img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.play-icon::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(red, orange, yellow, green, blue, indigo, violet, red);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 2px), #000 0);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: spin 2s linear infinite;
  z-index: -1;
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid black;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: relative;
  z-index: 3;
}

.bplay_btn {
  background: var(--secondary-color);
  padding: 18px 21px;
  color: var(--black-color);
  border-radius: 100px;
}

.bplay_btn i {
  font-size: 25px;
}

.b_pw {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
}

.banner_img {
  position: relative;
}

.choose-desti {
  margin: 100px 0 0;
}

.banner_img img {
  width: 100%;
}

.floating-div1 {
  position: absolute;
  top: 30%;
  right: 0;
  padding: 10px 20px;
  border-radius: 15px;
  background: var(--white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7px);
  opacity: 0.9;
  display: flex;
  gap: 0 25px;
}

.f1-img {
  background: var(--tertiary-color);
  padding: 10px 15px;
  color: var(--white-color);
  font-size: 25px;
  border-radius: 10px;
}

.floating-div2 {
  position: absolute;
  bottom: -32px;
  left: -81px;
  padding: 20px 50px 20px 20px;
  border-radius: 15px;
  background: var(--white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7px);
  opacity: 0.9;
  display: flex;
  gap: 0 8px;
}

.f2-img {
  background-color: var(--secondary-color);
  padding: 10px 5px;
  border-radius: 10px;
  width: 60px;
  height: 70px;
}

.f2-img img {
  width: 50px;
}

.fp1 {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  text-decoration: none;
  margin: 0;
}

.fp2 {
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  text-decoration: none;
  margin-bottom: 16px;
}

.f1p3 {
  text-decoration: none;
  background: #AF5C58;
  border-radius: 100px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
}

.marquee-slider-main {
  overflow: hidden;
  padding: 10px 0;
  margin: 100px 0 0;
}

.brand-slider1 {
  background: linear-gradient(267deg, #ffeebc, #ffffff);
  padding: 20px 0;
  width: 100%;
  overflow: hidden;
}

.brand-slider2 {
  background: linear-gradient(267deg, #ffeebc, #ffffff);
  padding: 20px 0;
  width: 100%;
  overflow: hidden;
}

.brand-slider1 img,
.brand-slider2 img {
  width: auto;
  height: 40px;
  margin: 0 20px;
}

.nav-icon-responsive {
  display: none;
  text-align: right;
  margin-top: 10px;
}

.menu-icon {
  width: 40px;
  cursor: pointer;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 9998;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: var(--primary-color);
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease-in-out;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
}

.popup-nav.active {
  right: 0;
  opacity: 1;
  padding: 20px;

}

.popup-nav .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-nav .popup-header button {
  background: none;
  border: none;
  font-size: 35px;
  cursor: pointer;
  color: #fff;
}

/* Destination section */

.desti-heading p {
  font-size: 40px;
  font-weight: 700;
  color: var(--black-color);
  text-align: center;
}

.destination {
  margin: 100px 0 0;
}

.top1 {
  margin-top: 140px;
}

.top2 {
  margin-top: 70px;
}

.destination-main {
  background: var(--white-color);
  border-radius: 20px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  margin: 15px;
  padding: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.destination-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.desti-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.desti_content {
  padding: 15px 0;
}

.desti-div1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.desti-div1p1 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0;
}

.desti-div1p2 {
  font-size: 13px;
  color: var(---grey-color);
  margin-bottom: 0
}

.desti-div1p3 {
  font-size: 14px;
  color: var(--black-color);
  font-weight: bold;
}

.desti-div1p3 i {
  color: #f39c12;
  line-height: 22px;
}

.desti-div2 ul {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

.desti-div2 ul li {
  text-align: center;
}

.desti-div2 ul li span img {
  width: 20px;
  height: 20px;
  margin: 0 auto 5px;
}

.desti-div2 p {
  font-size: 12px;
  color: var(---grey-color);
}

.desti-div3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 18px;
}

.desti-div3 ul li {
  font-size: 13px;
  color: var(---grey-color);
  margin-bottom: 5px;
  list-style: disc;
}

.desti-div4 {
  display: flex;
  justify-content: space-around;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
}

.desti-div4 p:first-child {
  text-decoration: line-through;
  font-size: 13px;
  color: var(---grey-color);
}

.desti-div4 p:nth-child(2) {
  font-size: 18px;
  font-weight: bold;
  color: var(--tertiary-color);
}

.desti-div4 p:last-child {
  font-size: 12px;
  color: var(---grey-color);
}

.destination-slider .slick-prev {
  left: 88%;
  background: #89898B;
}

.destination-slider .slick-next {
  right: 5%;
  background: var(--primary-color);
}

.destination-slider .slick-prev,
.destination-slider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: -7%;
  display: block;
  width: 50px;
  height: 50px;
  /*  */
  border-radius: 10px;
}

.destination-slider .slick-prev:before {
  content: "←";
  font-size: 18px;
  font-weight: 900;
}

.destination-slider .slick-next:before {
  content: "→";
  font-size: 18px;
  font-weight: 900;
}

.destination-slider .slick-prev:before,
.destination-slider .slick-next:before {
  font-family: '"Font Awesome 6 Free"';
  font-size: 28px;
  font-weight: bolder;
  line-height: 1;
  opacity: 1;
  color: var(--white-color);
}

.choose-desti-main img {
  width: 100%;
  border-radius: 20px;

}

.choose-desti-main {
  position: relative;
}

.choose-desti-main:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  background-image: linear-gradient(355deg, #000000, #00000045);
  bottom: 0;
  border-radius: 0px 0px 20px 20px;
  height: 15%;
  width: 100%;
}

.choose-desti-main p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin: 0;
  position: absolute;
  bottom: 0;
  z-index: 99;
  padding: 24px;
}

/*  */
.wcu-main {
  margin: 100px 0;
}

.wcu-main-head {}

.wcu-main-p1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 20px;
  text-align: center;
}

.wcu-main-p1 span {
  color: var(--primary-color);
}

.wcu-main-p2 {
  font-size: 19px;
  font-weight: 400;
  color: var(--black-color);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.why_choose {
  background: var(--white-color);
  border-radius: 20px;
  padding: 60px 15px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  margin: 30px 20px 0;
  transition: all ease .5s;
}

.why-chooseone:hover {
  background: var(--primary-color)
}

.why-choosetwo:hover {
  background: var(--secondary-color);
  transition: all ease .5s;
}

.why-choosethree:hover {
  background: var(--tertiary-color);
  transition: all ease .5s;
}

.why_choose-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.why_choose-icon i {
  color: var(--white-color);
  padding: 15px;
  font-size: 30px;
  border-radius: 100px;
}

.why_choose-icon .fa-star {
  background: var(--primary-color);
  border: 2px solid var(--white-color);
}

.why_choose-icon .fa-globe {
  background: var(--secondary-color);
  border: 2px solid var(--white-color);
}

.why_choose-icon .fa-thumbs-up {
  background: var(--tertiary-color);
  border: 2px solid var(--white-color);
}

.why_choose p:nth-child(2) {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-color);
  text-align: center;
  margin: 0 0 15px;
}

.why_choose p:nth-child(3) {
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
  text-decoration: none;
  margin: 0 auto;
  max-width: 300px;
}


.why-chooseone:hover p:nth-child(2),
.why-chooseone:hover p:nth-child(3) {
  color: var(--white-color);
}

.why-choosetwo:hover p:nth-child(2),
.why-choosetwo:hover p:nth-child(3) {
  color: var(--white-color);
}

.why-choosethree:hover p:nth-child(2),
.why-choosethree:hover p:nth-child(3) {
  color: var(--white-color);
}

.our_app {
  background: #413a36;
  position: relative;
  padding: 100px 0px;
  margin: 100px 0px 0;
}

.oafloting {
  position: absolute;
  top: 25%;
  right: 0;
}

.our_app::after {
  background-image: url(https://www.mytourmyway.com/img/hero/bg.png);
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  opacity: 0.2;
  z-index: 1;
}

.oa-p1 {
  color: var(--white-color);
  font-family: "Montez", cursive;
  font-style: normal;
  font-weight: 500;
  font-size: 29px;
  margin-bottom: 10px;
}

.oa-p2 {
  font-size: 50px;
  font-style: normal;
  line-height: 62px !important;
  font-weight: 800;
  color: var(--white-color);
}

.oa-p3 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--white-color);
  padding-bottom: 0;
  margin: 30px 0 !important;
}

.oa_btn-main {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.oa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 27px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.oa-btn a span {
  display: flex;
  flex-direction: column;
}

.appstore {
  background: black;
  color: white;
}

.googleplay {
  border: 1px solid white;
  color: var(--white-color);
  background: transparent;
}

.oa-btn img {
  height: 25px;
  width: 25px;
}

.oa-img-main {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: end;
}

.oa-img-main img {
  max-width: 100%;
  position: absolute;
  bottom: -100px;

}

.explore-world {
  margin: 50px 0 0;
}

.explore-world .container .row {
  gap: 30px 0;
}

.ew-head_top p:nth-child(1) {
  color: #3CB371;
  font-family: "Montez", cursive;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: 29px;
  text-align: center;
  margin-bottom: 10px;
}

.ew-head_top p:nth-child(2) {
  font-size: 50px;
  font-style: normal;
  line-height: 65px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
  color: var(--black-color);
}

.ew_main {
  background: #EFEFEF;
  border-radius: 20px;

}

.ew_main img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.ew_divtwo {
  padding: 20px;
}

.ew_p1 {
  font-size: 23px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 35px;
}

.ew_divthree {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.ew_four p {
  font-weight: 400;
  font-size: 16px;
  color: var(--black-color);
}

.ew_four p i {
  margin: 6px 3px 0 0;
  color: #a08300;
}

.ew_five {
  text-align: end;
  border-left: 1px solid #d3d3d3;
  padding-left: 40px;
}

.ew_five p:nth-child(1) {
  background: #3CB371;
  display: inline;
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 14px;
  color: var(--white-color);
  font-weight: 600;
}

.ew_five p:nth-child(2) {
  font-size: 32px;
  color: var(--black-color);
  font-weight: 900;
  display: flex;
  align-items: baseline;
}

.ew_five p:nth-child(2) span {
  font-size: 14px;
  font-weight: 600;
  color: #4b4b4b;
  text-decoration: line-through;
}

.ew-btn {
  background: #fff;
  text-align: center;
  width: 100%;
  padding: 20px;
  border-radius: 100px;
  display: block;
  margin-top: 25px;
  color: var(--box-color);
  text-decoration: none;
  border: 2px solid var(--box-color);
  font-weight: 600;
  font-size: 17px;
}

.top-category {
  margin: 100px 0;
}

.top-category .container .row {
  gap: 30px 0;
  margin: 50px 0 0 0;
}

.tx-head-main p:nth-child(1) {
  color: #ff9a2f;
  font-family: "Montez", cursive;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: 29px;
  text-align: center;
  margin-bottom: 10px;
}

.tx-head-main p:nth-child(2) {
  font-size: 43px;
  font-style: normal;
  line-height: 55px !important;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
  color: var(--black-color);
  text-transform: capitalize;
  width: 60%;
  margin: 0 auto;
}

.tc-imgtext img {
  width: 100%;
  height: 260px;
  border-radius: 100px;
}

.hover-zoom {
  display: inline-block;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.hover-zoom:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/*  */
.tc-imgtext p:nth-child(2) {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--black-color);
  line-height: 15px;
  margin: 20px 0;
}

.tc-imgtext p:nth-child(3) {
  text-align: center;
  color: #4b4b4b;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.main-footer__middle .container .row {
  gap: 40px 0;
}

/* Pages Css */


.pages-hero {
  padding: 20px;
}


.pages-banner-img {
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  padding: 100px 0;
  z-index: 1;
}

.pages-banner-img::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  right: 0;
  opacity: 0.7;
  content: '';
  background-image: linear-gradient(135deg, #a08300, #000000);
  z-index: -1;
}

.pages-banner-h1 {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
}

.pages-banner-h2 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: white;
}

.pages-content-main {
  margin: 20px auto;
  padding: 5px;
  width: 73%;
}

.pages-content-p1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(0, 0, 0);
  text-align: left;
  margin: 20px 0 0;
}


.pages-content-p2 {
  font-size: 15px;
  margin: 20px 0 0;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: #000;
}

.pages-content-p3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-transform: uppercase;
  text-align: left;
  color: rgb(0, 0, 0);
  margin: 20px 0 0;
}

.p-highlight {
  font-weight: 800;
}

.p-dot-p4 {
  font-size: 16px;
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: rgb(0, 0, 0);
  position: relative;
  margin-left: 20px;
  list-style: none;
}

.p-dot-p4::before,
.hf {
  content: "•";
  position: absolute;
  left: -15px;
  font-size: 20px;
  color: black;
  top: -3px;
}

.pp-content-p5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: rgb(0, 0, 0);
  margin: 20px 0 0;
}

.pp-content-p6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: rgb(0, 0, 0);
  margin: 8px 0 0;
}




/*  */
@media screen and (max-width: 1400px) {

  .ew_five {
    border-left: 0px solid #d3d3d3;
    padding-left: 0;
  }

  .ew_five p:nth-child(2) {
    font-size: 28px;
  }
}

@media screen and (max-width: 1300px) {

  .header_menu_main {
    display: none;
  }

  .nav-icon-responsive {
    display: block;
  }


  .nav-menus ul {
    text-align: left;
    flex-direction: column;
    gap: 25px 0;
    margin: 0;
  }

  .nav-menus ul li a {
    color: var(--white-color);
    border-bottom: 2px solid var(--white-color);
    padding-bottom: 3px;
  }

}

@media screen and (max-width: 1200px) {

  .navbar {
    gap: 20px;
  }

  .header_menu_main .nav-menus ul {
    gap: 0 25px;
  }

  .search-box {
    width: 160px;
  }

  .floating-div2 {
    left: 0;
  }

  .banner_btn {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3px 10px;
  }

  .b_pw {
    margin-left: 6%;
  }

  .banner_text {
    gap: 5px 0;
  }

  .explore-world {
    margin: 0;
  }

  .tx-head-main p:nth-child(2) {
    width: 80%;
  }

}

@media screen and (max-width: 992px) {


  .banner_btn {
    justify-content: flex-start;
    gap: 3px 20px;
  }

  .floating-div2 {
    left: 0;
    bottom: 0;
  }

  .hero .sliderheading {
    font-size: 150px;
  }

  .slidertext {
    width: 80%;
    font-size: 90px;
  }

  .b_pw {
    margin-left: 0;
  }

  .why_choose {
    margin: 30px 0px 0;
  }

  .tx-head-main p:nth-child(2) {
    font-size: 45px;
  }

  .ew-head_top p:nth-child(2) {
    font-size: 45px;
  }

  .oa-p2 {
    font-size: 45px;
  }

  .about-five__right {
    padding-left: 0 !important;
  }

  .about-five__feature {
    gap: 20px !important;
  }

  .oa-img-main img {
    position: static;
  }

  .our_app {
    padding: 100px 0px 0;
  }
}

@media screen and (max-width: 768px) {
  .hero .sliderheading {
    font-size: 120px;
  }

  .slidertext {
    width: 80%;
    font-size: 65px;
  }

  .choose-desti .container .row {
    gap: 30px 0;
  }

  .wcu-main .container .row {
    gap: 30px 0;
  }

  .tx-head-main p:nth-child(2) {
    font-size: 40px;
  }

  .ew-head_top p:nth-child(2) {
    font-size: 40px;
  }

  .oa-p2 {
    font-size: 40px;
  }

  .top1 {
    margin-top: 0px;
  }

  .top2 {
    margin-top: 200px;
  }

  .top3 {
    margin-top: -200px;
  }


}


@media screen and (max-width: 576px) {

  .header-res1 {
    width: 50%;
  }

  .header-res2 {
    width: 50%;
  }

  .hero .container {
    padding: 135px 0;
  }

  .hero .sliderheading {
    font-size: 65px;
    line-height: 60px;
  }

  .slidertext {
    width: 80%;
    font-size: 40px;
  }


  .floating-div1 {
    top: 5%;
  }

  .b_pw {
    margin-left: 5%;
  }

  .why_choose p:nth-child(3) {
    max-width: none;
  }

  .wcu-main {
    margin: 50px 0;
  }

  .desti-heading p {
    margin-bottom: 50px;

  }

  .destination-slider .slick-prev,
  .destination-slider .slick-next {
    top: -5%;
  }

  .destination-slider .slick-prev {
    left: 40%;
  }

  .destination-slider .slick-next {
    right: 40%;
  }

  .wcu-main-p2 {

    margin: 0 auto 50px;
  }

  .ew_five p:nth-child(2) {
    font-size: 25px;
  }

  .ew_divtwo {
    padding: 20px 15px;
  }

  .oa-btn {
    padding: 4px 22px;
    border-radius: 30px;
    font-size: 14px;
  }

  .top1 {
    margin-top: 0px;
  }

  .top2 {
    margin-top: 0px;
  }

  .top3 {
    margin-top: 0px;
  }

  .about-five__feature {
    flex-direction: column;
    align-items: normal !important;
  }

  /* .about-five__feature__text {
    max-width: max-content !important;
  } */
}

@media screen and (max-width: 400px) {
  .floating-div1 {
    padding: 15px;
  }

  .floating-div2 {
    padding: 15px 40px 15px 15px;
    bottom: -60px;
  }


}

/*****Destination Card*****/
.destinations-card {
  position: relative;
}

.destinations-card__thumb {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 135px 135px 0px 135px;
  border: 4px solid transparent;
  transition: all 0.4s ease-in-out;
}

.destinations-card__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.destinations-card__group-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  bottom: 60px;
  left: 10%;
  transform: translate(18%, 100px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  /*  */
  display: none;
}

.destinations-card__group-card__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #fff;
  text-transform: capitalize;
  padding: 5.5px 10.5px;
  border-radius: 24px;
  background-color: #a08300;
  margin-bottom: 0;
}

.destinations-card__group-card__text:last-child {
  background-color: #a08300;
}

.destinations-card__title {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 70%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #ffcd3a;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
}

.destinations-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
  font-family: "Montez", cursive;
  font-size: 33px;
  text-decoration: none;
  font-weight: 700;
}

.destinations-card__title a:hover {
  background-size: 100% 1px;
}

.destinations-card:hover .destinations-card__thumb {
  border-radius: 135px;
  border-color: #a08300;
}

.destinations-card:hover .destinations-card__thumb img {
  transform: scale(1.1);
}

.destinations-card:hover .destinations-card__group-card {
  transform: translate(18%, 0px);
  opacity: 1;
}

/*****Destination Card Two*****/
.destinations-card-two {
  position: relative;
}

.destinations-card-two__thumb {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 122px;
  transition: all 0.4s ease-in-out;
}

.destinations-card-two__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.destinations-card-two__hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.destinations-card-two__hover img {
  object-fit: cover;
  width: 100%;
  transform: scale(1.02);
}

@media (max-width: 575px) {
  .destinations-card-two__hover {
    display: none;
  }
}

.destinations-card-two__title {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 70%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #a08300;
  text-align: center;
}

.destinations-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.destinations-card-two__title a:hover {
  background-size: 100% 1px;
}

.destinations-card-two:hover .destinations-card-two__thumb img {
  transform: scale(1.1);
}

.destinations-card-two:hover .destinations-card-two__hover {
  opacity: 1;
  visibility: visible;
}

.destinations-card-two:hover .destinations-card-two__hover img {
  transform: scale(1.02);
}

.popular-destination {
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
}

.bodypart {
  position: relative;
}

.bodypart:after {
  top: 0;
  content: "";
  position: absolute;
  width: 209px;
  height: 100%;
  background: #ffcd3a;
  filter: blur(214px);
  z-index: -1;
}

.popular-destination .gutter-x-22 {
  --bs-gutter-x: 22px;
}

.popular-destination .gutter-y-22 {
  --bs-gutter-y: 22px;
}

.popular-destination__element {
  position: absolute;
  right: 0;
  top: 40%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}

@media (min-width: 1200px) {
  .popular-destination__element {
    display: block;
  }
}

/* section title */
.sec-title {
  position: relative;
  padding-bottom: 30px;
}

@media (max-width: 991px) {
  .sec-title {
    padding-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .sec-title {
    padding-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .sec-title {
    padding-bottom: 35px;
  }
}

.sec-title__tagline {
  color: #a08300;
  font-family: "Montez", cursive;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 117%;
  padding: 0;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 15px;
}

.about-five__right {
  padding-left: 50px;
}

@media (min-width: 768px) {
  .sec-title__tagline {
    font-size: 24px;
  }
}

.sec-title__title {
  margin: 0;
  color: #1D231F;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  font-size: 50px;
  text-shadow: 0 0 0.1px currentColor;
}

.sec-title__title span {
  color: #a08300;
  font-style: italic;
  font-weight: 600;
}

@media (max-width: 991px) {
  .sec-title__title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 430px) {
  .sec-title__title {
    font-size: 37px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
      position: relative;
    background-color: #1D231F;
    z-index: 1;
    clear: both;
    
    float: left;
    width: 100%;

}

.main-footer__top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 88px;
  padding-bottom: 51px;
  border-bottom: 1px solid rgba(var(--gotur-border-color-rgb, 229, 229, 229), 0.2);
}

@media (max-width: 991px) {
  .main-footer__top__inner {
    flex-direction: column;
    gap: 30px;
    align-items: start;
    justify-content: start;
  }
}

.main-footer__middle {
  padding-top: 55px;
  padding-bottom: 65px;
  position: relative;
  z-index: 1;
}

.main-footer__bottom {
  position: relative;
  background-color: #a08300;
}

.main-footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0px;
}

@media (max-width: 767px) {
  .main-footer__bottom__inner {
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: start;
  }
}

@media (max-width: 575px) {
  .main-footer__bottom__inner {
    gap: 0px;
  }
}

.main-footer__copyright {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  opacity: 0.8;
}

.main-footer__element-one {
  position: absolute;
  bottom: 20%;
  left: 0;
  opacity: 0.07;
  z-index: -1;
  animation: bottomOpacity 3s ease-in-out infinite;
}

@keyframes bottomOpacity {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
  }
}

.main-footer__element-two {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.07;
  z-index: -1;
  animation: leftToRight 3.5s ease-in-out infinite;
}

.footer-widget {
  /*** Info***/
  /*** Link***/
  /*** News later***/
  /*** List***/
}

.footer-widget__title {
  color: var(--gotur-white, #fff);
  position: relative;
  padding-bottom: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  text-transform: capitalize;
}

.footer-widget__logo {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 28px;
}

.footer-widget__logo a {
  display: block;
}

.footer-widget__about-text {
  margin: 0px 0 20px !important;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 175%;
  color: var(--gotur-white, #fff);
  margin-bottom: 35px;
  padding-bottom: 0;
  opacity: 0.8;
  text-transform: capitalize;
}

.footer-widget__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-widget__social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D2D2D2;
  color: #fff;
  opacity: 0.7;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

.footer-widget__social a:hover {
  transform: translateY(-3px);
  color: #fff;
  opacity: 1;
  border-color: #a08300;
  background-color: #a08300;
}

.footer-widget__links {
  margin-top: -3px;
  margin-bottom: 0;
}

.footer-widget__links li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-white, #fff);
  opacity: 0.8;
}

.footer-widget__links li a {
  color: inherit;
  position: relative;
  text-decoration: none;
}

.footer-widget__links li a::after {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background-color: #a08300;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.footer-widget__links li a:hover {
  padding-left: 15px;
  color: var(--gotur-base, #a08300);
}

.footer-widget__links li a:hover::after {
  content: "";
  width: 8px;
  height: 8px;
  opacity: 1;
  visibility: visible;
}

.footer-widget__links li+li {
  margin-top: 10px;
}

.footer-widget__newsletter .form-group__form {
  color: var(--gotur-white, #fff);
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 8px;
  margin-bottom: 20px;
}

.footer-widget__newsletter .form-group__form input[type=email] {
  border-radius: 8px;
  width: 100%;
  border: none;
  outline: none;
  height: 56px;
  display: block;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 70px;
  transition: all 500ms ease;
  color: #1D231F;
  line-height: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  background-color: #fff;
}

.footer-widget__newsletter .form-group__form input[type=email]::placeholder {
  color: #1D231F;
  font-style: normal;
  line-height: normal;
  font-weight: 400;
  font-size: 14px;
}

.footer-widget__newsletter .form-group__form button[type=submit] {
  position: absolute;
  right: 5px;
  bottom: 5px;
  top: 5px;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  transition: all 500ms ease;
  padding: 15px 14px 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 8px;
  background-color: #a08300;
}

.footer-widget__newsletter .form-group__form button[type=submit]::after,
.footer-widget__newsletter .form-group__form button[type=submit]::before {
  background-color: #a08300;
}

.footer-widget__newsletter .form-group__form button[type=submit]:hover {
  color: #fff;
}

.footer-widget__newsletter .form-group__check input[type=checkbox] {
  display: none;
}

.footer-widget__newsletter .form-group__check label {
  position: relative;
  line-height: normal;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-left: 38px;
  margin-bottom: 0;
  color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.6);
  margin-top: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
}

.footer-widget__newsletter .form-group__check label a {
  text-decoration: underline;
  color: rgba(var(--gotur-white-rgb, 255, 255, 255), 1);
  margin-left: 8px;
  text-decoration: none;
}

.footer-widget__newsletter .form-group__check label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 5px;
  background-color: transparent;
  border: 2px solid rgba(var(--gotur-text-rgb, 89, 89, 89), 0.8);
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.footer-widget__newsletter .form-group__check label::after {
  content: "\f00c";
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 2px;
  border-radius: 4px;
  right: 0;
  line-height: 20px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a08300;
  opacity: 0;
}

.footer-widget__newsletter .form-group__check label:first-child {
  margin-top: 0;
}

.footer-widget__newsletter .form-group__check input[type=checkbox]:checked+label:after {
  opacity: 1;
}

.footer-widget__list {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0;
  gap: 53px;
}

@media (max-width: 1199px) {
  .footer-widget__list {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .footer-widget__list {
    flex-wrap: wrap;
    gap: 30px 60px;
  }
}

.footer-widget__list li {
  display: flex;
  gap: 15px;
}

.footer-widget__list li:hover .footer-widget__list__icon {
  color: #fff;
}

.footer-widget__list li:hover .footer-widget__list__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.footer-widget__list__icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 18px;
  color: #a08300;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  position: relative;
}

.footer-widget__list__icon::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #a08300;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  z-index: -1;
}

.footer-widget__list__subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--gotur-white, #fff);
  text-transform: capitalize;
  margin-bottom: 4px;
  padding-bottom: 0;
  display: block;
}

.footer-widget__list a,
.footer-widget__list p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-white, #fff);
}

.footer-widget__list a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  text-decoration: none;
}

.footer-widget__list a:hover {
  background-size: 100% 1px;
}

.footer-widget__list a:hover {
  color: #a08300;
}

.footer-widget__list p {
  text-transform: capitalize;
}

.footer-widget__contact-text {
  margin-top: -3px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  opacity: 0.8;
  color: var(--gotur-white, #fff);
  margin-bottom: 20px;
  padding-bottom: 0;
}

.footer-widget--post {
  margin-right: 10px;
}

@media (max-width: 991px) {
  .footer-widget--post {
    margin-right: 0;
  }
}

.footer-widget--contact {
  margin-left: -10px;
}

@media (max-width: 1199px) {
  .footer-widget--contact {
    margin-left: 0px;
  }
}

.footer-widget--contact .footer-widget__info {
  margin-bottom: 25px;
}

.footer-widget--contact .footer-widget__info__icon {
  color: #fff;
}

.footer-widget--contact .gotur-btn .icon {
  background-color: #fff;
  color: #a08300;
}

.about-five__top__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #595959;
  padding-bottom: 0;
  margin-bottom: 30px !important;
}

.about-five__feature {
  display: flex;
  align-items: center;
  gap: 50px;

  justify-content: start;
}

.about-five__feature__item {
  background: #ebe9f7;
  padding: 20px;
  border-radius: 20px;
}

.about-five__feature__icon {
  font-size: 44px;
  color: #a08300;
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.about-five__feature__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 5px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: #1D231F;
}

.about-five__feature__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-five__feature__item:hover .about-five__feature__icon {
  color: #a08300;
  transform: scaleX(-1);
}

.about-five__button {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;
  width: 100%;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .about-five__button {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}

@media (max-width: 575px) {
  .about-five__button {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}