.hero {
  width: 100%;
  height: 85vh;
  padding: 110px 20px 20px 20px;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#slide-show {
  position: absolute;
  z-index: 9;
  top: 110px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.slide-text {
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.slide-text b,
.slide-text strong {
  font-weight: 400;
}
.slide-text h2 {
  font-weight: 100;
  /* font-family: "Open Sans", sans-serif !important; */
  font-size: 50px;
  text-align: center;
  line-height: 60px;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
  margin-bottom: 20px;
}

.slide-text h2 span {
  /* font-family: "Open Sans", sans-serif !important; */
  font-weight: 400;
   font-size: 50px;
}
.slidex {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: -1;
}
.activx {
  opacity: 1;
}
.slideshow-nav {
  position: absolute;
  margin-top: -30px;
  top: 50%;
  left: 20px;
  right: 20px;
  background: transparent;
}
.slideshow-nav a {
  transition: all 0.4s;
  padding: 0;
  color: #fff;
  font-size: 40px;
  background: #24346e;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.slideshow-nav a:hover {
  opacity: 1;
  transform: scale(1.2);
}
.slideshow-nav .previousx {
  float: left;
}
.slideshow-nav .nextx {
  float: right;
}
.bg1 {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  width: 100%;
  min-width: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.slider-center {
  position: absolute;
  height: 100%;
  width: 94%;
  transform: translate(3%, 0%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: transparent;
  letter-spacing: 2px;
}
.bg-img {
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  background-position: center center !important;
  background-size: cover !important;
}
.bg-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #24346e;
  background: -moz-linear-gradient(0deg, #24346e 0%, rgba(36, 52, 110, 0) 50%);
  background: -webkit-linear-gradient(
    0deg,
    #24346e 0%,
    rgba(36, 52, 110, 0) 50%
  );
  background: linear-gradient(0deg, #24346e 0%, rgba(36, 52, 110, 0) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#24346e",endColorstr="#24346e",GradientType=1);
}
@media (max-width: 991px) {
  .hero {
    height: 60vh;
  }
  .slide-text h2 {
    font-size: 32px;
    line-height: 46px;
  }
.slide-text h2 span {
  /* font-family: "Open Sans", sans-serif !important; */
  font-weight: 400;
   font-size: 20px;
}



}
@media (max-width: 767px) {
  .hero {
    height: 60vh;
  }
  .slide-text h2 {
    font-size: 28px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .hero {
    height: 60vh;
  }
  .slide-text h2 {
    font-size: 21px;
    line-height: 28px;
  }
  .slideshow-nav {
    margin: 0;
    top: initial;
    bottom: 15px;
    left: initial;
  }
  .slideshow-nav a {
    transition: all 0.4s;
    padding: 0;
    color: #fff;
    font-size: 24px;
    background: #24346e;
    width: 40px;
    height: 40px;
    border-radius: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin-left: 10px;
  }
}
.goranch-hero-counters {
  padding: 50px 0px;
}
.goranch-hero-counters .counter {
  border-radius: 50%;
  border: 2px solid #24346e;
  padding: 10px;
}
.goranch-hero-counters .count-icon {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s;
}
.goranch-hero-counters .count-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}
.goranch-hero-counters .counter-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(36, 52, 110, 0.5);
  width: 90%;
  height: 90%;
  border-radius: 50%;
  transition: all 0.2s;
}
.goranch-hero-counters .count-number {
  /* font-family: "Libre Baskerville", serif; */
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}
.goranch-hero-counters .count-number:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  bottom: -7px;
  left: 50%;
  margin-left: -25px;
}
.goranch-hero-counters .count-text {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 0;
  color: #fff;
}
.goranch-hero-counters .count-icon:hover .counter-content {
  transform: scale(0.8);
  opacity: 0;
}
@media (max-width: 767px) {
  .goranch-hero-counters .count-icon {
    width: 9rem;
    height: 9rem;
  }
  .goranch-hero-counters .count-number {
    font-size: 1.2rem;
  }
  .goranch-hero-counters .count-text {
    font-size: 0.875rem;
  }
}
@media (max-width: 575px) {
  .goranch-hero-counters .row > div {
    padding: 0;
  }
  .goranch-hero-counters .row > div:nth-child(1) {
    flex: 1 1 1;
    width: 100%;
    margin-bottom: -23px;
  }
  .goranch-hero-counters .row > div:nth-child(2) {
    justify-content: flex-end !important;
  }
  .goranch-hero-counters .row > div:nth-child(3) {
    justify-content: flex-start !important;
  }
}
.goRanchProject {
  background: #24346e;
  position: relative;
  padding: 80px 0 0;
  overflow: initial;
}
.goRanchProject:before {
  content: "";
  position: absolute;
  background: url("../img/goranch/bg-1.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.15;
}
.goRanchProject .goranch-tree {
  margin-bottom: -7rem;
}
@media (max-width: 575px) {
  .goRanchProject .goranch-tree {
    margin-bottom: -5rem;
  }
}
@media (max-width: 767px) {
  .goRanchProject .goranch-tree {
    margin-bottom: -4.5rem;
  }
}
@media (max-width: 767px) {
  .goRanchProject .goranch-tree {
    margin-bottom: -4.5rem;
  }
}
@media (max-width: 991px) {
  .goranch-coins {
    width: 75% !important;
  }
}
.freeMembership {
  background: #fff;
  position: relative;
}
.freeMembership:before {
  content: "";
  position: absolute;
  background: url("../img/bg-2.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.05;
}
.freeMembership .owl-nav {
  position: absolute;
  top: 50%;
  margin-top: -24px;
  left: -60px;
  right: -60px;
}
.freeMembership .owl-nav button {
  width: 40px !important;
  height: 60px !important;
  border: 1px solid #24346e !important;
  color: #24346e !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px !important;
}
.freeMembership .owl-nav button.owl-prev {
  float: left;
}
.freeMembership .owl-nav button.owl-next {
  float: right;
}
.freeMembership .owl-item {
  height: 210px !important;
  overflow: hidden !important;
  border-radius: 10px;
}
.freeMembership .owl-item .item {
  height: 100%;
}
.freeMembership .owl-item a {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.freeMembership .owl-item a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .freeMembership .owl-item {
    height: 300px !important;
    overflow: hidden !important;
  }

  .freeMembership .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -24px;
    left: 0;
    right: 0;
    z-index: 9999;
  }
  .freeMembership .owl-nav button {
    width: 30px !important;
    height: 30px !important;
    border: 1px solid #24346e !important;
    color: #24346e !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px !important;
  }
}
.siteVisit {
  position: relative;
}
.siteVisit:before {
  content: "";
  position: absolute;
  background: url("../img/goranch/conference-hall-kids-playground-go-ranch-venture.jpeg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
}
.siteVisit h4 {
  border: 3px solid rgba(36, 52, 110, 0.5);
  padding: 8px;
  width: 70%;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}
.siteVisit h4 span {
  background: rgba(36, 52, 110, 0.85);
  padding: 40px 40px;
  display: block;
}
.siteVisit a {
  font-family: "nunito", sans-serif;
  font-size: 1rem;
  padding: 13px 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .siteVisit h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 575px) {
  .siteVisit h4 {
    font-size: 1.2rem;
    width: 80%;
  }
}
.conferenceRoom {
  padding-bottom: 0px;
}
.projectHighlights {
  background: #24346e;
  position: relative;
  overflow: initial;
}
.projectHighlights:before {
  content: "";
  position: absolute;
  background: url("../img/goranch/bg-2.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.15;
}
.projectHighlights .ph-card {
  width: 65%;
  margin: 0 auto;
  border-radius: 1rem;
  padding-bottom: 20px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  transition: all 0.2s linear;
  background: #96c500;
  background: -moz-linear-gradient(180deg, #96c500 0%, #7ea402 100%);
  background: -webkit-linear-gradient(180deg, #96c500 0%, #7ea402 100%);
  background: linear-gradient(180deg, #96c500 0%, #7ea402 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#96c500",endColorstr="#7ea402",GradientType=1);
}
.projectHighlights .ph-card img {
  margin-top: -40px;
  transition: all 0.2s linear;
}
.projectHighlights .ph-card h6 {
  color: #fff;
  text-transform: uppercase;
  margin: 10px;
  font-size: 0.875rem;
  letter-spacing: 0.08rem;
}
.projectHighlights .ph-card:hover img {
  transform: scale(1.1);
}
@media (max-width: 1199px) {
  .projectHighlights .ph-card {
    width: 85%;
  }
}
.locHighlights {
  background: #fff;
  position: relative;
  overflow: initial;
}
.locHighlights:before {
  content: "";
  position: absolute;
  background: url("../img/bg-2.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.15;
}
.locHighlights .lh-card {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  transition: all 0.2s linear;
  margin-bottom: 40px;
}
.locHighlights .lh-card img {
  transition: all 0.2s linear;
}
.locHighlights .lh-card h6 {
  color: #24346e;
  font-weight: 500;
  margin: 10px;
  font-size: 1.1rem;
  border: 2px solid rgba(36, 52, 110, 0.5);
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
}
.locHighlights .lh-card:hover img {
  transform: scale(1.1);
}
.projectLayouts .layouts {
  border: 1px solid #24346e;
  border-radius: 15px;
  padding: 30px 30px 20px;
  margin-bottom: 1.5rem;
}
.projectLayouts .layouts h2 {
  color: #494a50;
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
  margin-top: 2rem;
  font-weight: 500;
}
.gallerySection {
  background: #1c2c67;
}
.gallerySection .aler-gallery {
  display: flex;
  flex-wrap: wrap;
}
.gallerySection .aler-gallery li {
  width: calc(100% / 3);
  overflow: hidden;
}
.gallerySection .aler-gallery li a {
  display: block;
  width: 100%;
  height: 180px;
}
.gallerySection .aler-gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .gallerySection .aler-gallery li a {
    height: 120px;
  }
}
.owl-carousel .owl-stage-outer {
  z-index: 99;
}
.animate-card {
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out,
    opacity 0.2s ease-out;
  transition-delay: 0.1s;
  transform: translateZ(0);
}
.animate-card:hover {
  opacity: 1 !important;
  box-shadow: rgba(45, 45, 45, 0.05) 0px 2px 2px,
    rgba(49, 49, 49, 0.05) 0px 4px 4px, rgba(42, 42, 42, 0.05) 0px 8px 8px,
    rgba(32, 32, 32, 0.05) 0px 16px 16px, rgba(49, 49, 49, 0.05) 0px 32px 32px,
    rgba(35, 35, 35, 0.05) 0px 64px 64px;
  transform: translate(0, -15px);
  z-index: 9;
}
.custom-list li {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  position: relative;
  display: flex;
  padding-left: 36px;
  margin-bottom: 20px;
  transition: all 0.2s linear;
}
.custom-list li:before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url("../img/point-icon.png");
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  transition: all 0.2s linear;
}
#toTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #24346e;
  opacity: 0.6;
  color: #fff;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 99999;
  transition: all 0.2s linear;
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.25);
  -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.25);
}
#toTop:hover {
  opacity: 1;
}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/* usm resort facilitys */


.project-section {
background: url("../img/vistasprings/bg-bkp.webp");
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

@media (max-width: 767.98px) {

  .project-section {
    padding: 30px 0;
  }
    .swiper-button-next,
  .swiper-button-prev {
    height: 70px;
    width: 30px;
  }

  .swiper-button-next, .swiper-button-prev {
    top: 50%;
 
}

}

.swiper-button-next,
.swiper-button-prev {
  color: #3b82f6;
}
.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    /* height: 100px; */
    border-radius: 5px;
    background: #000000b8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

.projectSwiper {
    padding: 20px 40px 60px;
}

.projectSwiper.swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.projectSwiper .swiper-slide {
  height: auto;          /* Important */
  display: flex;
}

.projectSwiper .highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.project-card {
  background: #11153a;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  background: #0d2c73;
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
  border: 2px solid #f4c430;
  transition: 0.3s ease;
}

.card-btn:hover {
  background: #022f72;
}