@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montez&display=swap");

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Inter", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/*.container {
    max-width: 1170px;
}*/

@font-face {
  font-family: "Buttercell Script";
  src: url("../fonts/ButtercellScript.eot");
  src: local("../fonts/Buttercell Script"), local("ButtercellScript"),
    url("../fonts/ButtercellScript.eot?#iefix") format("embedded-opentype"),
    url("../fonts/ButtercellScript.woff2") format("woff2"),
    url("../fonts/ButtercellScript.woff") format("woff"),
    url("../fonts/ButtercellScript.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --white: #ffffff;
  --black: #000;
  --gary-color: #727272;
  --lightgary-color: #b2b9bd;
  --primary: #108a88;
  --theme-color: #202f66;
  --primary-color: #93292d;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #5a595c;
}

h1,
h3,
h4 {
  color: #000;
}

h2 {
  /*font-family: "Montez", cursive;*/
  font-family: 'Buttercell Script';
}

h5,
h6 {
  font-family: "Manrope", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* loader */
.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary-color);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
  background: linear-gradient(180deg, #12a2a0, #083f3e);
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  padding: 1.2em 2.15em;
  border-radius: 50px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
  /* animation: bounce 0.9s infinite alternate; */
  /* -webkit-animation: bounce 0.9s infinite alternate; */
  /* transform: rotate(90deg); */
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

.mouse {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 11;
  text-align: center;
  width: 40px;
  height: 40px;
  border: 1px solid #0c6b6a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  animation: bounce 0.9s infinite alternate;
  -webkit-animation: bounce 0.9s infinite alternate;
  transform: rotate(90deg);
  background: #0c6b6a;
}

/* mouse animation css  */

/* navigation css */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0px 0px 4px #0000004d;
}

.top-bar {
  border-bottom: 1px solid #e1e4e5;
  padding: 10px 0;
}

.loc-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.loc-list li a {
  font-size: 14px;
  color: #0d0d0c;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.loc-list li {
  border-right: 1px solid #5a595c;
  padding: 0 1.5rem;
}

.loc-list li:first-child {
  padding-left: 0;
}

.loc-list li:last-child {
  padding-right: 0;
  border: 0;
}

.login-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.login-list li select {
  font-size: 14px;
  color: #0d0d0c;
  width: 134px;
  height: 34px;
  border: 1px solid #e1e4e5;
  text-transform: capitalize;
  text-align: center;
  border-radius: 50px;
}

.login-list li a {
  font-size: 14px;
  color: #0d0d0c;
  font-weight: 500;
  display: inline-block;
  border-right: 1px solid #5a595c;
  padding: 0 18px;
}

.login-list li:last-child a {
  padding-right: 0;
  border: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-right: 2rem;
}

.navbar-nav .nav-item {
  z-index: 1;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: #0d0d0c;
  text-transform: capitalize;
  font-weight: 400;
  padding: 0 0;
  display: inline-block;
}

.navbar .dropdown>a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  padding-left: 10px;
  position: absolute;
  right: -20px;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown li {
  min-width: 230px;
  position: relative;
  list-style: none;
}

.navbar .dropdown ul li a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-transform: none;
  color: #151515;
  position: relative;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 0px);
}

.an-navbar {
  padding: 10px 0;
}

.form-inline .themeBtn {
  padding: 1em 2.1em;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.form-inline .themeBtn span {
  display: block;
  font-size: 14px;
  font-weight: 300;
}

.form-inline .themeBtn .num {
  font-weight: 300;
}

.navbar .dropdown .dropdown>a:after {
  content: "\f105";
  right: 1rem;
}

.navbar .dropdown ul li a:hover {
  background: linear-gradient(180deg, #12a2a0, #083f3e);
  color: var(--white);
}

/* navigation css */

/* slider css */

.mainSlider {
  height: 850px;
  position: relative;
  z-index: 1;
  padding: 0;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slideContent {
  text-align: center;
}

.slideContent .themeBtn {
  margin: auto;
}

.slideContent h2 {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 400;
  margin: 0 0 0.4rem;
}

.slideContent h5 {
  font-size: 3.4375rem;
  color: var(--white);
  font-weight: bold;
  margin: 0 0 3rem;
}

.homeSlider.swiper-container .swiper-button-next {
  width: 64px;
  height: 64px;
  background: rgb(250 252 244 / 20%);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  right: 6rem;
  top: 37%;
}

.homeSlider.swiper-container .swiper-button-next:after {
  display: none;
}

.homeSlider.swiper-container .swiper-button-next img {
  transform: rotate(-90deg);
}

.homeSlider.swiper-container .swiper-button-prev {
  width: 64px;
  height: 64px;
  background: rgb(250 252 244 / 20%);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  right: 6rem;
  left: auto;
  top: unset;
  bottom: 18rem;
}

.homeSlider.swiper-container .swiper-button-prev:after {
  display: none;
}

.homeSlider.swiper-container .swiper-button-prev img {
  transform: rotate(90deg);
}

.homeSlider.swiper-container .swiper-pagination {
  width: auto;
  left: auto;
  right: 7.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
}

.homeSlider.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 2px;
  border-radius: 0;
  height: 24px;
  opacity: 1;
  background: var(--white);
}

.homeSlider.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.mouse img {
  transform: rotate(90deg);
}

/* slider css */

/* swiper blend slider */

.carousel {
  overflow-x: clip;
}

/* .swiper {
  padding: 5rem 0;
  overflow: visible;
} */
.swiper .swiper-slide {
  width: 400px;
}

.single {
  /* position: relative;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
  text-align: center;
}

.single img {
  /*width: 100%;*/
  /*height: auto;*/
  vertical-align: top;
  border-radius: 24px;
  pointer-events: none;
  margin-bottom: 1.4rem;
}

.carousel .swiper {
  padding: 0 0rem 5rem;
  margin: 0 -3px;
}

.explore-main {
  padding: 5rem 4rem;
}

.single h5 {
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 600;
  margin: 0 0 4px;
}

.single a {
  font-size: 14px;
  color: #5a595c;
  font-weight: 600;
  display: block;
}

.sub-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0;
  background: -webkit-linear-gradient(#12a2a0, #083f3e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  color: var(--black);
}

.carousel .swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.carousel .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #113d48;
  opacity: 1;
}

.carousel .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #1ca8cb;
  border-color: #1ca8cb;
}

/*  */

.planSlider {
  padding-top: 0;
  padding-bottom: 50px;
  overflow: hidden;
}

.planSlider .swiper-slide {
  width: 407px;
}

.planSlider a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.planSlider .swiper-slide a {
  position: relative;
  display: block;
}

.planSlider .swiper-slide a p {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.375rem;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  margin: 0 1rem;
  line-height: 1.5;
}

.plan-visit .swiper-button-prev {
  border: 1px solid rgb(0 0 0 / 20%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -7rem;
}

.plan-visit .swiper-button-prev:after {
  display: none;
}

.plan-visit .swiper-button-prev img {
  filter: brightness(70%);
  transform: rotate(180deg);
}

.plan-visit .swiper-button-next {
  border: 1px solid rgb(0 0 0 / 20%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -7rem;
}

.plan-visit .swiper-button-next:after {
  display: none;
}

.plan-visit .swiper-button-next img {
  filter: brightness(70%);
  transform: rotate(0deg);
}

.plan-visit {
  padding-top: 2rem;
}

.trip-img {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

.trip-img figure {
  height: 100%;
}

.trip-img figure.d-flex {
  flex-direction: column;
  gap: 1rem;
}

.trip-img figure img {
  border-radius: 156px 156px 0 156px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-img figure.d-flex img:first-child {
  border-radius: 156px 156px 156px 0;
}

.trip-img figure.d-flex img:last-child {
  border-radius: 156px 0 156px 156px;
}

.trip-content .heading {
  margin: 0 0 1rem;
}

.trip-content p.para {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin: 0 0 2rem;
}

.guide-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.guide-card h6 {
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 600;
  margin: 0 0 0.7rem;
}

.guide-card p {
  line-height: 1.75rem;
  width: 300px;
  margin: 0;
}

.guide-card+.guide-card {
  margin-top: 1.7rem;
}

.trip-content .themeBtn {
  margin-top: 2.5rem;
}

.trip-content {
  padding: 0 3.5rem;
}

.trip-main {
  position: relative;
  z-index: 1;
  padding: 10rem 0;
}

.balonimg {
  position: absolute;
  top: 0;
  left: 3rem;
}

.manimg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.popular-tour {
  position: relative;
  z-index: 1;
  padding-top: 7.3rem;
}

/* .popular-tour:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: url(../images/bg2.webp) no-repeat top center/ cover;
  width: 100%;
  height: 613px;
  z-index: -1;
} */

.popular-tour .heading {
  margin: 0 0 1.3rem;
}

.popular-tour .para {
  line-height: 1.625rem;
  margin: 0;
}

.tour-card {
  border: 1px solid #bcced2;
  border-radius: 16px;
}

.tour-card figure img {
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.tour-card .tour-content {
  padding: 1.4rem 1.2rem;
}

.tour-card .tour-content h5 {
  font-size: 1.125rem;
  color: #0d0d0c;
}

.tour-card .tour-content .star {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 1.2rem;
}

.tour-card .tour-content .star span {
  color: #fc961b;
}

.tour-card .tour-content .star div {
  color: #0d0d0c;
}

.tour-card .tour-content h3 {
  font-size: 1.5rem;
  color: #0d0d0c;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 2.5rem;
}

.tour-card .tour-content h3 span {
  font-size: 1.125rem;
  color: #5a595c;
  font-weight: 400;
}

.tour-card .tour-content ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-card .tour-content ul li a {
  font-size: 1rem;
  color: #113d48;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tour-card .tour-content ul li a.themeBtn {
  border: 1px solid #e1e4e5;
  background: transparent;
  color: #113d48;
  font-weight: 500;
  padding: 0.7em 1.4em;
}

.tour-card .tour-content ul li a.themeBtn img {
  filter: brightness(35%);
  width: 16px;
}

.gallery-main {
  padding: 5rem 3.5rem 6.5rem;
}

.gallery-main .d-flex {
  flex-direction: column;
  gap: 1.1rem;
}

.gallery-main a img {
  width: 100%;
  border-radius: 28.6px;
}

.get-main {
  background: url(../images/bg3.webp) no-repeat top center/ cover;
  height: 597px;
  display: flex;
  align-items: center;
}

form.get-form {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem 2rem 1.15rem;
  position: relative;
  z-index: 1;
  margin-bottom: -16rem;
}

form.get-form span {
  position: relative;
  display: block;
  margin-bottom: 1.3rem;
}

form.get-form span input,
form.get-form select {
  width: 100%;
  height: 54px;
  border: 1px solid #e1e4e5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  padding: 0 1.5rem;
  padding-right: 3rem;
  /* margin-bottom: 1.3rem; */
  color: #5a595c;
}

form.get-form span i {
  position: absolute;
  right: 1.2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  color: #5a595c;
}

form.get-form span textarea {
  width: 100%;
  height: 152px;
  border: 1px solid #e1e4e5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  padding: 0 1.5rem;
  padding-right: 3rem;
  color: #5a595c;
  resize: none;
  margin-bottom: 4rem;
}

form.get-form span+textarea+i {}

form.get-form span textarea+i {
  bottom: unset;
  top: 1.5rem;
}

form.get-form select {
  margin-bottom: 1.3rem;
}

.send-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

form.get-form:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 95.59px;
  background: linear-gradient(180deg, #12a2a0, #083f3e);
  z-index: -1;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.send-btn .themeBtn {
  background: var(--white);
  color: #0d0d0c;
}

.send-btn .themeBtn+a {
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 400;
}

a.video {
  width: 80px;
  height: 80px;
  background: #1ca8cb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

/* blog section css */

.blog {
  background: #e9f6f9;
  position: relative;
  z-index: 1;
}

.card-img figure img {
  border-radius: 16px;
}

.balon-img {
  position: absolute;
  bottom: 5%;
  left: 1.5%;
  width: 100px;
}

.news-anc a {
  color: #113d48;
  background: transparent;
  border: 1px solid #083f3e;
}

.news-anc a img {
  filter: brightness(10%);
  width: 16px;
  color: #113d48;
}

.date {
  margin-top: 35.2px;
  display: flex;
  gap: 15px;
}

.date p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #5a595c;
  line-height: 1.714;
  text-transform: capitalize;
}

.cimg-info h6 {
  font-size: 1.375rem;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 31px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card-anc a {
  border: 1px solid #000;
  background: transparent;
  color: #000;
  font-weight: 500;
  padding: 0.7em 1.4em;
}

.card-anc a img {
  filter: brightness(10%);
  width: 16px;
}

/* blog section css */

/* footer css */

footer {
  background-color: #001115;
  position: relative;
}

.star-img {
  position: absolute;
  width: 100px;
  left: 5%;
  top: 10%;
}

.hat-img {
  position: absolute;
  width: 100px;
  right: 8%;
  top: 20%;
}

.instagram {
  padding: 106px 0 58.9px 0;
}

.insta__brdr {
  border-bottom: 1px solid #e9f6f920;
  padding-bottom: 54px;
}

.insta-head h2 {
  text-align: center;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 48.7px;
}

.insta-imgs img {
  border-radius: 24px;
}

.footp {
  margin-top: 19.19px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.75;
  color: #e9f6f9;
}

.flogo-list {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.flogo-list li {
  background: #ffffff20;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.flogo-list li a {
  color: #fff;
}

.quickList h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

.quickList ul {
  margin-top: 26px;
}

.quickList ul li {
  margin-bottom: 22.23px;
}

.quickList ul li a {
  font-size: 1rem;
  line-height: 1.315;
  color: #fff;
}

.contact-info {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.contact-info {
  margin-bottom: 23px;
}

.cicon {
  width: 40px;
  height: 40px;
  background: #ffffff20;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 5px;
}

.locicon {
  background: #ffffff20;
  width: 50px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 5px;
}

.locicon {
  color: #12a2a0;
  font-size: 1.25rem;
}

.cicon i {
  color: #12a2a0;
}

.icon--info p {
  color: #fff;
  margin: 0;
  line-height: 1.75;
}

.calFoter {
  margin-top: 31px;
}

.calFoter input {
  width: 100%;
  height: 54px;
  background: transparent;
  border: 1px solid #e1e4e5;
  border-radius: 32px;
  padding-left: 25px;
}

.calFoter input::placeholder {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 14px;
}

.calFoter button {
  margin-top: 11px;
  border: none;
  width: 100%;
  justify-content: center;
}

.copyRight {
  border-top: 1px solid #e9f6f920;
  margin-top: 112px;
  padding: 1rem 0;
}

.copyRight p {
  text-align: center;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

/* footer css */

.clientSection {
  padding: 14rem 0rem 5rem;
}

.clientWrap {
  margin-top: 11rem;
  position: relative;
  /* background: url(../images/map-bg.webp) no-repeat; */
}

/* .clinetCard{
  width: 100%;
  max-width: 450px;
  text-align: center;
  position: relative;
}

.review{
  border: 2px solid #1CA8CB;
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  background: var(--white);
}
.review p{
  font-size: 18px;
font-weight: 600;
  color: var(--black);
}

.review i{
  color: #FFA944;
}

.bottom{
  background-color: #1CA8CB;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 48%;
  bottom: -15px;
}

.clinetCard img {
  margin-top: 1rem;
}

.clinetCard h4 {
  font-size: 1.5rem;
  margin: 0;
}

.clinetCard:nth-child(2){
  position: absolute;
  top: -5%;
  right: 18%;
}

.review, .info {
  display: none;
}

.review, .info {
  transition: opacity 0.3s ease-in-out;
}

.show {
  display: block;
} */

.clinetCard {
  width: 100%;
  max-width: 450px;
  text-align: center;
  position: relative;
}

.review {
  border: 2px solid #1ca8cb;
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  background: var(--white);
  visibility: hidden;
  /* Start as hidden */
  opacity: 0;
  /* Make it invisible */
  transition: visibility 0s, opacity 0.3s ease-in-out;
  /* Smooth opacity transition */
  z-index: 999;
}

.review p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
}

.review i {
  color: #ffa944;
}

.bottom {
  background-color: #1ca8cb;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 48%;
  bottom: -15px;
}

.clinetCard img {
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.clinetCard h4 {
  font-size: 1.5rem;
  margin: 0;
}

.clinetCard:nth-child(2) {
  position: absolute;
  top: -5%;
  right: 18%;
}

.clinetCard:nth-child(3) {
  position: absolute;
  top: -14%;
  right: 30%;
}

.clinetCard:nth-child(4) {
  top: -32%;
  position: absolute;
  left: 12%;
}

.clinetCard:nth-child(5) {
  top: -6%;
  position: absolute;
  left: 16%;
}

.clinetCard:nth-child(6) {
  top: -46%;
  position: absolute;
  left: 26%;
}

.clinetCard img {
  height: 36px;
  width: 36px;
  position: relative;
  z-index: 1;
}

/* Info visibility */
.info {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}

.show {
  visibility: visible;
  opacity: 1;
  /* Make the element visible */
}

.clinetCard img.img-small {
  width: 90px;
  height: 90px;
}

/* inner pages css start */

.inner-banner {
  padding: 0;
  position: relative;
  height: 500px;
}
.page-id-83 .inner-banner {
  padding: 137px 0px 0px;
}

.inner-banner>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner .iner-content {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  left: 0;
  right: 0;
  text-align: center;
}

.inner-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 50%);
}

.golfBanner::before {
  background: none;
}

.inner-banner .iner-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  text-transform: capitalize;
  font-family: "Buttercell Script";
}

.inner-banner .iner-content h5 {
  font-size: 3.4375rem;
  color: var(--white);
  margin: 0;
  font-weight: bold;
  font-family: 'Buttercell Script';
}

a.museumpg-card {
  position: relative;
  display: block;
  margin-bottom: 2rem;
}

a.museumpg-card img {
  width: 100%;
  border-radius: 24px;
  height: 611px;
  object-fit: cover;
}

a.museumpg-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #000000, #00000000);
  border-radius: 24px;
}

a.museumpg-card span {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.375rem;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.amercnmuseum-content {
  text-align: center;
}

.amercnmuseum-content p {
  font-size: 1.125rem;
  color: #5a595c;
  line-height: 1.625rem;
  margin: 0 0 1.8rem;
}

.amercnmuseum-content .heading {
  margin: 0 0 1.2rem;
  font-size: 3rem;
}

.amercnmuseum-content span {
  font-size: 1.375rem;
  color: var(--primary);
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}

.amercnmuseum-content span a {
  color: var(--primary);
}

hr.line-top {
  border-color: rgb(0 0 0 / 30%);
  margin: 2rem 0;
}

.amercnmuseum-content h5 {
  font-size: 1.375rem;
  color: var(--black);
  font-weight: 600;
  margin: 0 0 1rem;
}

.amercnmuseum-content h6 {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
}

.americnmuseum-page {
  background: url(../images/meausumbg.webp) no-repeat top center/ cover;
}

.map {
  padding-top: 0;
}

.map iframe {
  border-radius: 15px;
}

.amercnmuseum-content .laluz-heading {
  font-size: 3rem;
  font-weight: bold;
}

.potteryimg img {
  border-radius: 16px;
  width: 100%;
}

.potteryimg {
  margin-top: 3.5rem;
}

.amercnmuseum-content span.gpset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.americnmuseum-page.flickinger-page iframe {
  margin: 4rem 0;
}

.americnmuseum-page.flickinger-page {
  background: transparent;
  padding-bottom: 2rem;
}

.blog-page .cimg-info h6 {
  margin-top: 1.8rem;
  line-height: 2.125rem;
  text-transform: capitalize;
  font-size: 1.375rem;
  padding-right: 10px;
  font-weight: 400;
}

.blog-page .blog-card {
  margin-bottom: 3rem;
}

.blog-page {
  background: #e9f6f9;
  padding-bottom: 2rem;
}

.museum-page.daytip-main a.museumpg-card img {
  height: auto;
}

.museum-page.daytip-main .row {
  margin: 0 -5rem;
}

.resresturant-menu {
  position: relative;
}

.line {
  position: relative;
}

.line1 {
  position: absolute;
  content: "";
  width: 1px;
  height: 4046px;
  z-index: 1;
  background-color: #00000030;
  left: 38.4%;
  top: 39px;
}

.line2 {
  position: absolute;
  content: "";
  width: 1px;
  height: 4046px;
  z-index: 1;
  background-color: #00000030;
  right: 38.4%;
  top: 39px;
}

.menu-card {
  background: #e9f7fa;
}

.menu-content {
  padding: 30px 0 30px 40px;
}

.menu-content h3 {
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
  margin-bottom: 15px;
}

.menu-content h4 {
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  font-size: 1.75rem;
  color: #12a2a0;
  margin: 0;
  margin-bottom: 20px;
}

.mencntnt-p {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  line-height: 0.9;
  margin: 0;
  color: #000;
}

.menu-content span {
  content: "";
  width: 330px;
  height: 1px;
  background-color: #00000050;
  display: block;
  margin-top: 51px;
}

.menu-para {
  margin-bottom: 60px;
}

.men__cntnt {
  padding-top: 60px;
}

.link-info {
  background: #e9f7fa;
}

.link-info h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  padding: 50px 40px;
}

.grapes--info {
  padding: 32px 0 32px 47px;
  margin-bottom: 30px;
}

.grapes--info h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.grapes--info h4 {
  margin-bottom: 10px;
}

.grapes--info a {
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
}

.grape-anc {
  color: #108a88 !important;
}

.grape-ancc {
  color: #108a88 !important;
  margin-bottom: 55px;
}

.grp__inf {
  padding-top: 54px !important;
  padding-bottom: 42px;
}

.grpe_inf {
  padding-top: 17px;
  padding-bottom: 18px;
}

.casino-apache {
  background-color: #e9f7fa !important;
  background: none;
}

.golf-head {
  font-size: 1.875rem !important;
  margin-top: 20.5px !important;
}

.golf-card {
  text-align: center;
}

.golf_cards {
  margin-top: 42px;
}

.hiking-page {
  padding: 5rem 15rem;
}

.amercnmuseum-content.hiking-content {
  text-align: left;
}

.amercnmuseum-content.hiking-content ul li a {
  font-size: 1.125rem;
  color: #1ca8cb;
  font-weight: 600;
}

.amercnmuseum-content.hiking-content ul {
  margin: 0 0 2rem;
}

.amercnmuseum-content.hiking-content h6 {
  color: var(--black);
  font-weight: bold;
  font-size: 1.875rem;
  margin: 0 0 1.3rem;
}

.amercnmuseum-content.hiking-content .heading {
  font-weight: bold;
}

figure.hiking-img img {
  width: 100%;
  opacity: 55%;
}

.americnmuseum-page.almedapark-zoo .menu-content.grapes--info {
  background: #e9f7fa;
  text-align: center;
  padding: 35px 0;
  margin-top: 1rem;
}

.americnmuseum-page.almedapark-zoo .menu-content.grapes--info a {
  font-size: 1.25rem;
}

.amercnmuseum-content.hfising-content p a,
.amercnmuseum-content.hfising-content p span {
  color: #1ca8cb;
  font-weight: 600;
}

.americnmuseum-page.white-sandpg .amercnmuseum-content p strong {
  font-size: 1.375rem;
  color: #0e0e0e;
  font-weight: 400;
}

.americnmuseum-page.trinitypg {
  padding-bottom: 0;
}

.americnmuseum-page.trinitypg iframe {
  margin: 3rem 0 0;
}

.trinity-section2 {
  background: #e9f7fa;
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
}

.trinity-section2 .amercnmuseum-content p a {
  color: #12a2a0;
}

.trinity-section2 iframe {
  margin: 2rem 0 0;
}

.trinitypg-guide {
  padding: 0rem 0 1rem;
}

.trinity-logocntnt {
  padding: 8rem 0 0;
}

.trinity-logocntnt span {
  display: block;
  font-size: 1.375rem;
  color: #108a88;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.trinity-logocntnt span a {
  color: #108a88;
}

.trinity-logocntnt img {
  display: table;
  margin: 0 0 3rem;
}

.trinity-logocntnt hr.line-top {
  margin: 1.3rem 0;
}

.trinity-logocntnt.mexico-contnet {
  text-align: center;
  padding: 7.5rem 0 0;
}

.trinity-logocntnt.mexico-contnet img {
  margin: 2.5rem 0 0;
  width: 100%;
}

.plnpg-card a {
  font-size: 1.5rem;
  color: #108a88;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  display: table;
  margin-left: auto;
}

.planpg-trip {
  padding: 5rem 12rem;
}

.plnpg-card figure {
  margin: 0 0 1.2rem;
}

.tour-pkgsection {
  background: #e9f6f9;
  padding: 4rem 0 3rem;
}

.travelpkg-card figure img {
  width: 100%;
}

.travelpkg-card {
  text-align: center;
  margin-bottom: 3.5rem;
}

.travelpkg-card a {
  font-size: 1.5rem;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  display: inline-block;
  margin: 1rem 0 0;
  font-weight: 400;
}

/* inner pages css end */
.tripswrap h4 {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Manrope";
  margin: 1rem 0 0 0;
}

.tripswrap {
  display: block;
  text-align: center;
}

.tripswrap figure img {
  width: 100%;
  height: 197px;
  object-fit: cover;
  border-radius: 1rem;
}

section.top-trips {
  padding: 80px;
}

figure.plantrip11 img {
  position: absolute;
}

.plt2 {
  right: -102px;
  top: -40px;
  z-index: 9;
  border-radius: 15px;
}

.plt1 {
  top: -6rem;
  left: 8rem;
  border-radius: 15px;
}

figure.plantrip22 img {
  position: absolute;
  border-radius: 15px;
  margin-top: 1.820625rem;
}

.plt3 {
  left: -6rem;
  top: 78%;
}

.plt4 {
  right: -1rem;
}

.trip-main.daytripsec {
  padding: 6rem 0;
}

.trip-main.daytripsec iframe {
  border-radius: 15px;
}

.planetp11 {
  top: -9rem;
  left: -1rem;
}

figure.dayvideo {
  position: relative;
}

figure.dayvideo a {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
}

/* .dayvideo-sec {
  padding: 2rem 0 7rem 0;
} */

.dayTrips--bg {
  background: url(../images/carsbedbg.webp) center/cover no-repeat !important;
  padding: 5rem 0;
}

.carisbd .btn-group {
  align-items: center;
  display: flex;
  gap: 27px;
}

.carisbd .trip-content .themeBtn {
  margin: 0;
}

a.carslink {
  color: #12a2a0;
  font-size: 1rem;
  text-transform: uppercase;
}

/* .youtubesec {
  background: unset;
} */

figure.youtubelink {
  position: relative;
}

figure.youtubelink a {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: auto;
}

.youtubesec .cimg-info h6 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 27px;
  font-family: "Manrope";
}

.cloudsec {
  background: unset;
  padding: 10rem 0;
}

.whereSec .swiper-button-prev:after,
.whereSec .swiper-button-next:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.75rem;
}

.whereSec .swiper-button-prev:after {
  content: "\f177";
}

.whereSec .swiper-button-next:after {
  content: "\f178";
}

.whereSec .swiper-button-next,
.whereSec .swiper-button-prev {
  background: var(--primary);
  width: 62px;
  height: 62px;
  color: var(--white);
  border-radius: 50px;
  top: 50%;
  transition: 0.5s ease-in-out;
}

.whereSec .swiper-button-next:hover,
.whereSec .swiper-button-prev:hover {
  background: var(--secondary);
  color: var(--white);
}

.whereSec .swiper-button-next {
  right: 12rem;
}

.whereSec .swiper-button-prev {
  left: 12rem;
}

section.whereSec {
  position: relative;
}

section.blog.newsblg {
  background: unset;
  padding-top: 2rem;
}

/* .blog.newsblg::before {
  position: absolute;
  content: "";
  background: url(../images/blgbg11.webp)center/cover no-repeat;
  width: 100%;
  height: 74%;
  top: -33%;
} */

/* .truthsec {
  background: unset;
  padding-top: 1rem;
} */

.truthsec .trip-content p.para {
  width: 84%;
}

.bestplnesec .swiper-button-prev:after,
.bestplnesec .swiper-button-next:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.75rem;
}

.bestplnesec .swiper-button-prev:after {
  content: "\f177";
}

.bestplnesec .swiper-button-next:after {
  content: "\f178";
}

.bestplnesec .swiper-button-next,
.bestplnesec .swiper-button-prev {
  background: var(--primary);
  width: 62px;
  height: 62px;
  color: var(--white);
  border-radius: 50px;
  top: 60%;
  transition: 0.5s ease-in-out;
}

.bestplnesec .swiper-button-next:hover,
.bestplnesec .swiper-button-prev:hover {
  background: var(--secondary);
  color: var(--white);
}

.bestplnesec .swiper-button-next {
  right: 14rem;
}

.bestplnesec .swiper-button-prev {
  left: 14rem;
}

.popular-tour.bestplnesec::before {
  top: -16rem;
  z-index: -1111;
  height: 610px;
}

section.dayvideo-sec.dayvideo2 figure.dayvideo {
  z-index: 11;
}

/* section.dayvideo-sec.dayvideo2 {
  padding-bottom: 0;
} */

/* shroud sec start */
.shroudImg img {
  border-radius: 15px;
}

.shroud-exhibit-img img {
  border-radius: 15px;
}

/* shroud sec start */
section.popular-tour.bestplnesec {
  padding-top: 3rem;
}

.themeBtn:hover {
  color: #fff;
  background: linear-gradient(180deg, #d4eded, #000202);
  transition: 0.5s ease;
}

/* Pagination */
.trip-pagination {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 99;
  right: unset;
  left: 2rem;
  background: var(--primary);
  border-radius: 3.125rem;
  padding: .75em .5em;
  gap: 1rem;
  align-items: center;
}

.trip-pagination li a {
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  display: block;
  position: relative;
  color: var(--white);
  writing-mode: sideways-rl;
  width: 2rem;
  /* small default width */
  height: 2rem;
  /* small default height */
  overflow: hidden;
  /* hides text initially */
}

.trip-pagination li a.active {
  /* smooth expand */
  height: auto;
}

.trip-pagination li a span {
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  transform: translateY(-10%);
}

.trip-pagination li a.active span {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.trip-pagination li a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  transition: all 300ms ease-in-out;
  box-shadow: 0 0 20px 1px #00000090;
  top: 50%;
  right: unset;
  left: 50%;
  opacity: 1;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.trip-pagination li a.active::after {
  transform: translate(-50%, -50%) scale(0);
}

.dayTrips--bg2 {
  background: url(../images/carsbedbg1.webp) center/cover no-repeat !important;
  padding: 5rem 0;
}

.carisbtn2 .btn-group {
  gap: 2rem;
}

.grape-wrap figure {
  position: relative;
}

.grape-cntnt {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.grape-cntnt a {
  font-size: 1.375rem;
  font-weight: 400;
  color: #0cb6b3;
}

.grape-cntnt h2 {
  font-size: 27px;
  font-weight: bold;
  color: #fff;
  font-family: "Manrope";
}

.grape-cntnt h3 {
  font-size: 1.375rem;
  font-weight: 400;
  color: #0cb6b3;
}

.grape-cntnt h4 {
  font-size: 1.375rem;
  font-weight: 400;
  color: #fff;
}

.grape-cntnt img {
  margin-bottom: 1rem;
}

.grape-cntnt.grapecntn2 h2 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #0cb6b3;
}

.grapesec .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.grapesec .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #113d48;
  opacity: 1;
}

.grapesec .swiper-pagination .swiper-pagination-bullet-active {
  background: #1ca8cb;
  border-color: #1ca8cb;
}

.grapeSlider {
  padding-bottom: 5rem;
}

.grapesec {
  padding-bottom: 3rem;
}

/* theaters and entertainment new start */
.historic-inner {
  margin-top: 5.75rem;
}

/* theaters and entertainment new end */

/* parks and sites new start  */

.dayvideo .balloon {
  border-radius: 15px;
}

/* parks and sites new end */
/* golf-section-new */

.golfSec {
  margin: 7.75rem 0;
}

.golfSec-anch {
  display: flex;
  gap: 19px;
  align-items: center;
}

.golfSec-anch a+a {
  margin-top: 2.6rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #12a2a0;
  text-transform: uppercase;
}

.golf-links {
  position: relative;
}

.golfsLinks img {
  width: 100%;
  border-radius: 15px !important;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.golfsLinks::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #00000060;
  position: absolute;
  border-radius: 1rem;
}

.golfIcons {
  position: absolute;
  top: 0;
  left: 60px;
}

.golf-cards {
  position: relative;
  margin-bottom: 30px;
}

.gicons-anc {
  position: absolute;
  bottom: 46px;
  left: 60px;
}

.gicons-anc a {
  font-family: "Manrope", sans-serif;
}

.gicons-anc h5 {
  font-family: "Manrop", sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  color: #fff;
}

.anch1 {
  display: block;
  font-size: 1.75rem;
  font-weight: bold;
  color: #0cb6b3;
}

.anch1:hover {
  color: #0cb6b3;
}

.anch2 {
  display: block;
  color: #fff;
  font-size: 1.375rem;
}

.anch2:hover {
  color: #fff;
}

.anch3 {
  display: inline-block;
  color: #0cb6b3;
  font-size: 1.375rem;
}

.anch3:hover {
  color: #0cb6b3;
}

.anch4 {
  margin-left: 5px;
  font-size: 1.375rem;
  font-family: "Manrope", sans-serif;
  color: #0cb6b3;
}

.anch4:hover {
  color: #0cb6b3;
}

.anch5 {
  color: #0cb6b3;
  font-size: 1.25rem;
}

.anch5:hover {
  color: #0cb6b3;
}

.anch6 {
  color: #0cb6b3;
}

.anch6:hover {
  color: #0cb6b3;
}

.anch7 {
  color: #fff;
}

.anch7:hover {
  color: #fff;
}

.anch8 {
  color: #fff;
}

.anch8:hover {
  color: #fff;
}

/* golf-section-new */

/* alamogordo-resturants-new css */

.anchorsList {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.anchorsList li a {
  background: #fff;
  color: #000;
}

.anchorsList li a:hover {
  background: linear-gradient(180deg, #12a2a0, #083f3e);
  color: #fff;
}

.dayTrips--bg .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--black);
  background: linear-gradient(180deg, #12a2a0, #083f3e);
}

.dayTrips--bg .nav-tabs .nav-link {
  border: 0;
  border-radius: 86px;
  padding: 1rem 2rem;
  color: var(--black);
  background: var(--white);
}

.dayTrips--bg .nav-tabs {
  border-bottom: 0;
}

.dayTrips--bg .nav {
  gap: 2rem;
  margin-bottom: 3rem;
}

.dayTrips--bg .nav-tabs .themeBtn.active,
.dayTrips--bg .nav-tabs .themeBtn:hover {
  background: linear-gradient(180deg, #12a2a0, #083f3e);
  color: #fff;
  outline: none;
}

/* alamogordo-resturants-new css */

.golfIcons {
  border: 1px solid var(--primary);
  background: var(--white);
  padding: 1.125em;
}

.golfsLinks-bg {
  background: var(--black);
}

.golf-icons-left {
  left: 42px;
  padding: 1rem 1rem;
}

.mainSlider__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-brand {
  margin: 0;
  padding: 0;
}

.golfIcons img {
  width: 60px;
}

.gicons-anc p {
  line-height: normal;
  margin-bottom: 0;
}

.gicons-anc p br {
  display: none;
}

.trip-main iframe,
.dayTrips--bg iframe,
.border-radius {
  border-radius: 15px;
}

.tripswrap h4 {
  position: relative;
  z-index: 2;
}

.trip-main.daytripsec iframe,
.dayTrips--bg iframe,
.trip-main iframe {
  width: 100%;
}

.trip-main.daytripsec.golfSec {
  margin: 0;
}

.dayTrips--bg {
  padding: 10rem 0;
}

.home-trip-pagination {}

.home-trip-pagination li a {}

.home-trip-pagination li a::after {}

.explore-main-svg-top {
  display: block;
  height: 60px;
  transform: translateX(-50%);
  fill: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
}

.explore-main-svg-bottom {
  display: block;
  height: 60px;
  transform: translateX(-50%);
  fill: #ffffff;
  position: absolute;
  bottom: 0;
  left: 50%;
}

/* waves */
.ocean {
  height: 60px;
  /* change the height of the waves here */
  width: 100%;
  position: absolute;
  top: -3rem;
  left: 0;
  overflow-x: hidden;
}

.wave {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23003F7C'/%3E%3C/svg%3E");
  width: 200%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(94%) sepia(5%) saturate(595%) hue-rotate(173deg) brightness(103%) contrast(95%);
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.bottom-ocean {
  top: unset;
  bottom: -3rem;
  transform: rotate(-180deg);
}

.aboutSwiper {
  border-bottom: 1px solid #00000020;
  overflow: hidden;
  margin-right: -22rem;
}

.about-pagination.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -3rem;
  left: 0.75rem;
  text-align: left;
}

.about-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid #00000020;
  opacity: 1;
}

.about-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary);
  border-color: var(--primary);
}

.aboutSwiper .blog-card .img-fluid {
  width: 100%;
  height: 500px;
  object-fit: cover;
  float: unset !important;
}

.home-trip-pagination li a span {}

/*.trip-pagination li a:hover {*/
/*    width: auto;*/
/*    height: auto;*/
/*}*/

/*.trip-pagination li a:hover span {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

/*.trip-pagination li a.active {*/
/*    width: auto;*/
/*    height: auto;*/
/*}*/

/*.trip-pagination li a.active span {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

.home-trip-pagination li a:hover::after {}

.wpb_wrapper h3 {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0;
  background: -webkit-linear-gradient(#12a2a0, #083f3e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Buttercell Script';
  margin-bottom: 1rem;
}

/* Modal Container Styling */
.newsletter-modal-content {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
  animation: fadeSlideIn 0.4s ease-out;
}

/* Left Image Styling */
.newsletter-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Header Styling */
.newsletter-header {
  background-color: #0c6b6a;
  color: white;
  border-bottom: none;
  padding: 1rem 1.5rem;
}

/* Text Styling */
.newsletter-text {
  font-size: 16px;
  color: #444;
}

/* Input Styling */
.newsletter-input {
  border-radius: 8px;
  border: 1px solid #0c6b6a;
  padding: 0.5rem 0.75rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.newsletter-input:focus {
  border-color: #0c6b6a;
  box-shadow: 0 0 0 3px rgba(12, 107, 106, 0.2);
}

/* Buttons Styling */
.newsletter-close-btn {
  border-color: #0c6b6a;
  color: #0c6b6a;
  border-radius: 6px;
  transition: all 0.3s;
}

.newsletter-close-btn:hover {
  background-color: #0c6b6a;
  color: white;
}

.newsletter-submit-btn {
  background-color: #0c6b6a;
  border-color: #0c6b6a;
  color: white;
  border-radius: 6px;
  transition: all 0.3s;
}

.newsletter-submit-btn:hover {
  background-color: #095d5c;
  border-color: #095d5c;
}

/* Modal Animation */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Fix for Smaller Screens */
@media (max-width: 767px) {
  .newsletter-img {
    display: none;
  }

  .newsletter-modal-content {
    border-radius: 12px;
  }
}