body {
  margin: 0;
  font-family: sans-serif;
  color: #fff;
  background-color: #111;
  overflow-x: hidden;
}

body.loading-content {
  height: 100vh;
  overflow: hidden;
}

.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.5s, opacity 0.5s linear;
}

.loader-container {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10000;
}

.loader {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  transform: translate(-50%, -50%);
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 100px;
  height: 100px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-size: 48px; */
  box-sizing: border-box;
}

.panel1 {
  background-color: transparent;
}

.panel2 {
  background-color: transparent;
}

.panel3 {
  background-color: transparent;
}

.panel4 {
  background-color: transparent;
}

.panel5 {
  background-color: transparent;
}

.horizontal-scroll-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.horizontal-scroll-track {
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
}

.horizontal-scroll-track .panel {
  flex: 1 0 auto;
  width: 100vw;
}

.horizontal-scroll-container-2 {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.horizontal-scroll-track-2 {
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
}

.horizontal-scroll-track-2 .panel {
  flex: 1 0 auto;
  width: 100vw;
}

.vertical-section {
  width: 100vw;
  height: 100vh;
  /* font-size: 48px; */
  position: relative;
  overflow: hidden;
}

.cloud-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.cloud-bg-image img {
  height: 100%;
  object-fit: cover;
}

/* Section 1 */
.ourServices-section-1 .hero {
  background: url('../images/our-services/alps-new.webp') no-repeat center center/cover;
  /* background: rgba(252, 248, 241, 255); */
  height: 100vh;
  width: 100vw;
  position: relative;
  color: black;
}

.ourServices-section-1 .logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.ourServices-section-1 .logo img {
  height: 175px;
}

.ourServices-section-1 .hero-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  z-index: 1;
}

.ourServices-section-1 .hero-container .hero-content-1 {
  font-size: 60px;
  letter-spacing: 10px;
  line-height: 105px;
  color: rgba(3, 23, 52, 255);
  font-weight: 300;
  font-family: "Futura Light";
  text-align: center;
}

.ourServices-section-1 .vertical-line-container {
  position: relative;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 100vh;
  z-index: 1;
}

.ourServices-section-1 .vertical-line-container .line {
  position: absolute;
  top: 75%;
  left: -2px;
  height: 25%;
  width: 2px;
  background-color: #000;
}

.ourServices-section-1 .vertical-line-container .circle {
  position: absolute;
  top: 75%;
  left: calc(50% - 25px - 2px);
  transform: translate(-50%, -50%);
  background-color: #000;
  border-radius: 50%;
  animation: pulse-black 1.9s infinite;
  height: 25px;
  width: 25px;
}

@keyframes pulse-black {
  0% {
    transform: scale(0.9) translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  }

  80% {
    transform: scale(1) translate(-50%, -50%);
    box-shadow: 0 0 0 11px rgba(255, 82, 82, 0);
  }

  100% {
    transform: scale(0.9) translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}

.ourServices-section-1 .bottom-center-image-container {
  position: absolute;
  bottom: -250px;
  left: 0;
  width: 100%;
}

/* Section 2 */

.ourServices-section-2 {
  background: rgba(252, 248, 241, 255);
  height: 100vh;
  width: 100vw;
  position: relative;
  color: black;
}

.ourServices-section-2 .vertical-line-container {
  position: relative;
  top: 0;
  left: 50%;
  width: 50px;
  height: 100vh;
  z-index: 1;
}

.ourServices-section-2 .vertical-line-container .line {
  position: absolute;
  top: 0;
  left: -2px;
  height: 20%;
  width: 2px;
  background-color: #000;
}

.ourServices-section-2 .title-container {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 70%;
}

.ourServices-section-2 .section-2-title {
  font-size: 40px;
  letter-spacing: 10px;
  line-height: 50px;
  color: rgba(3, 23, 52, 255);
  font-weight: 800;
  font-family: "Futura";
}

.ourServices-section-2 .section-2-desc {
  font-size: 25px;
  letter-spacing: 5px;
  font-weight: 300;
  text-align: right;
  font-family: "Futura Light";
}

.ourServices-section-2 .desc-container {
  position: absolute;
  top: 60%;
  left: 15%;
  width: 80%;
}

/* Section 3 */

.ourServices-section-3 {
  background: transparent;
  height: 100vh;
  width: 100vw;
  position: relative;
  color: white;
}

.ourServices-section-3 .left-line-container {
  position: relative;
  left: 0%;
  width: 185%;
  height: 50px;
  top: 53%;
}

.ourServices-section-3 .left-line-container .circle {
  position: absolute;
  top: 50%;
  left: 7.5%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-white 1.9s infinite;
  height: 25px;
  width: 25px;
}

.ourServices-section-3 .left-line-container .white-line {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 7.5%;
  height: 2px;
  background-color: #fff;
}

.ourServices-section-3 .left-line-container .black-line {
  position: absolute;
  top: 50%;
  left: -50%;
  width: 50%;
  height: 2px;
  background-color: #000;
}

.ourServices-section-3 .title-container {
  position: absolute;
  top: 52.5%;
  left: 20%;
  width: 70%;
}

.ourServices-section-3 .section-3-title {
  font-size: 105px;
  letter-spacing: 10px;
  line-height: 50px;
  color: #fff;
  font-weight: 800;
  font-family: "Futura";
}

.ourServices-section-3 .cloud-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.ourServices-section-3 .building-image {
  position: absolute;
  width: 20%;
  top: 25%;
  left: 47%;
  z-index: 2;
}

/* Section 4 */

.ourServices-section-4 {
  background: transparent;
  height: 100vh;
  width: 100vw;
  position: relative;
  color: white;
}

.ourServices-section-4 .left-line-container {
  position: relative;
  left: -15%;
  width: 50%;
  height: 50px;
  top: 53%;
}

.ourServices-section-4 .left-line-container .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-white 1.9s infinite;
  height: 25px;
  width: 25px;
}

.ourServices-section-4 .left-line-container .white-line {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 50%;
  height: 2px;
  background-color: #fff;
}

.ourServices-section-4 .title-container {
  position: absolute;
  top: 25%;
  left: 15%;
  width: 50%;
}

.ourServices-section-4 .section-4-title {
  font-size: 60px;
  letter-spacing: 10px;
  line-height: 80px;
  color: #fff;
  font-weight: 800;
  font-family: "Futura";
}

.ourServices-section-4 .section-4-desc {
  font-size: 25px;
  letter-spacing: 5px;
  font-weight: 800;
  font-family: "Futura Light";
}

.ourServices-section-4 .desc-container {
  position: absolute;
  top: 39%;
  left: 40%;
  width: 50%;
}

.ourServices-section-4 .services-list {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.ourServices-section-4 .services-list li {
  font-size: 1.7rem;
  margin-bottom: 25px;
  padding-left: 0;
  position: relative;
}

.ourServices-section-4 .services-list li:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: #fff;
}

.ourServices-section-4 .connector-2 {
  border-left: 2px solid #fff;
  /* height: calc(100% + -253px); */
  height: calc(100% + -320px);
  position: absolute;
  left: -310px;
  top: 45px;
}

.ourServices-section-4 .connector {
  border-left: 2px solid #fff;
  height: calc(100% + -64px);
  position: absolute;
  left: -26px;
  top: 19.5px;
}

.ourServices-section-4 .connector::before {
  content: "";
  position: absolute;
  top: 165px;
  right: 50%;
  width: calc(100% + 285px);
  height: 2px;
  background-color: #fff;
}

.ourServices-section-4 .building-image {
  position: absolute;
  width: 50%;
  top: 0;
  right: -400px;
}

.ourServices-section-4 .cloud-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.cloud-bg-image .dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Section 5 */

.ourServices-section-5 {
  background: transparent;
  height: 100vh;
  width: 100vw;
  position: relative;
  color: white;
}

.ourServices-section-5 .right-line-container {
  position: relative;
  right: -75%;
  width: 25%;
  height: 50px;
  top: 50%;
  z-index: 2;
}

.ourServices-section-5 .right-line-container .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-white 1.9s infinite;
  height: 25px;
  width: 25px;
}

.ourServices-section-5 .right-line-container .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #fff;
}

.ourServices-section-5 .title-container {
  position: absolute;
  top: 23%;
  right: 0;
  width: 50%;
}

.ourServices-section-5 .section-5-title {
  font-size: 60px;
  letter-spacing: 10px;
  line-height: 80px;
  color: #fff;
  font-weight: 800;
  font-family: "Futura";
}

.ourServices-section-5 .section-5-desc {
  font-size: 25px;
  letter-spacing: 5px;
  font-weight: 800;
  font-family: "Futura Light";
}

.ourServices-section-5 .desc-container {
  position: absolute;
  top: 48%;
  right: 0;
  width: 48%;
}

.ourServices-section-5 .services-list {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.ourServices-section-5 .services-list li {
  font-size: 1.7rem;
  margin-bottom: 25px;
  padding-left: 0;
  position: relative;
}

.ourServices-section-5 .services-list li:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: #fff;
}

.ourServices-section-5 .connector {
  border-left: 2px solid #fff;
  height: calc(100% + -64px);
  position: absolute;
  left: -26px;
  top: 19.5px;
}

.ourServices-section-5 .building-image {
  position: absolute;
  width: 48%;
  top: 0;
  right: 53%;
}

.ourServices-section-5 .cloud-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Section 6 */

.ourServices-section-6 {
  background: rgba(251, 248, 242, 255);
  height: 100vh;
  width: 100vw;
  position: relative;
}

.ourServices-section-6 .horizontal-line-container {
  position: relative;
  top: 50%;
  left: 0;
  width: 50%;
  height: 50px;
}

.ourServices-section-6 .horizontal-line-container .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.ourServices-section-6 .vertical-line-container {
  position: relative;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50%;
}

.ourServices-section-6 .vertical-line-container .line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #000;
}

.ourServices-section-6 .luxuryText {
  font-size: 44px;
  font-weight: 100;
  position: absolute;
  top: 56%;
  left: 5%;
  color: #000;
  font-family: 'Futura Light';
}

/* .ourServices-section-6 .pool-image {
  position: absolute;
  height: 25%;
  width: 20%;
  top: 18%;
  left: 45%;
  z-index: 1;
  object-fit: cover;
} */

.ourServices-section-6 .flight-image {
  position: absolute;
  height: 60%;
  width: 40%;
  top: 20%;
  left: 55%;
  z-index: 2;
  object-fit: cover;
}

/* Section 7 */

.ourServices-section-7 {
  width: 100vw;
  height: 100vh;
  background: url("/images/our-services/dark-blue.png") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  position: relative;

  .weWorkText {
    left: 18%;
    font-size: 120px;
    color: #fff;
    font-weight: 100;
    position: absolute;
    top: 31%;
    width: 80%;
  }

  .right-line {
    position: absolute;
    right: 0;
    width: 15%;
    height: 2px;
    top: 38%;
    background: #fff;
  }

  .top-line {
    position: absolute;
    right: 50%;
    width: 2px;
    height: 18%;
    top: 0;
    background: #fff;
  }
}

/* Section 8 */

.ourServices-section-8 {
  width: 100vw;
  height: 100vh;
  background: url("/images/our-services/dark-blue.png") no-repeat center center;
  background-size: cover;
  display: flex;
  position: relative;
  justify-content: center;

  .approach-container {
    text-align: center;
    color: white;
    padding: 2rem;
    position: absolute;
    left: 8%;
    top: 16%;
    max-width: 1200px;
  }

  .straight-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    top: 38%;
    background: #fff;
  }

  .approach-title {
    font-family: "Georgia", serif;
    margin-bottom: 180px;
    letter-spacing: 2px;
    font-size: 65px;
  }

  .approach-steps {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    text-align: left;
    letter-spacing: 3px;
    padding-left: 40px;
  }

  .step {
    flex: 1;
    min-width: 250px;
  }

  .step-label {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .step-title {
    margin: 40px 0;
    font-size: 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .step-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #f0f0f0;
    font-weight: 100;
  }
}

.ocean-top {
  background-image: url("/images/our-services/ocean-top.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
}

.ocean-top .dot-line-container {
  position: relative;
  top: 0;
  left: calc(50% + 2px);
  width: 50px;
  height: 45%;
}

.ocean-top .dot-line-container .line {
  position: absolute;
  top: 0;
  left: -2px;
  height: 50%;
  width: 2px;
  background-color: #fff;
}

.ocean-top .dot-line-container .circle {
  position: absolute;
  top: 50%;
  left: calc(50% - 25px - 2px);
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-white 1.9s infinite;
  height: 25px;
  width: 25px;
}

@keyframes pulse-white {
  0% {
    transform: scale(0.9) translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  }

  80% {
    transform: scale(1) translate(-50%, -50%);
    box-shadow: 0 0 0 11px rgba(255, 82, 82, 0);
  }

  100% {
    transform: scale(0.9) translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}

.ocean-top .hero-section {
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* .ocean-top .left-line {
  position: absolute;
  width: 10%;
  height: 3px;
  top: 38%;
  background: #fff;
} */

.ocean-top .hero-content {
  text-align: center;
  z-index: 2;
}

.ocean-top .hero-title {
  font-size: clamp(60px, 8vw, 120px);
  letter-spacing: 10px;
  color: white;
  /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); */
  will-change: opacity, transform;
  font-family: 'Futura Light';
}

.ocean-bot {
  background-image: url("/images/our-services/ocean-bot.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.ocean-bot .content-heading {
  font-size: 60px;
  color: #fff;
  margin-top: 140px;
  margin-bottom: 40px;
  letter-spacing: 3px;
  font-family: 'Futura Light';
}

.ocean-bot .content-highlight {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2rem;
  padding-left: 20px;
  font-family: 'Futura Light';
}

.ocean-bot .cta-container {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  padding-top: 50px;
  /* margin-left: 10%; */
}

.ocean-bot .content-cta {
  font-size: 42px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  text-align: left;
  letter-spacing: 3px;
  font-family: 'Futura Light';
}

.ocean-bot .contact-button {
  background-color: #fff;
  color: #2c3e50;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  flex-shrink: 0;
  font-family: 'Futura';
}

.ocean-bot .contact-button:hover {
  transform: translateY(-8px);
}

.ocean-bot .content-section {
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .ourServices-section-1 .hero-container {
    width: 70%;
  }

  .ourServices-section-1 .hero-container .hero-content-1 {
    font-size: 45px;
    line-height: 75px;
  }

  .ourServices-section-2 .title-container {
    width: 85%;
  }

  .ourServices-section-2 .section-2-title {
    font-size: 35px;
  }

  .ourServices-section-2 .desc-container {
    left: 5%;
    width: 93%;
  }

  .ourServices-section-2 .section-2-desc {
    font-size: 22px;
  }

  .ourServices-section-3 .section-3-title {
    font-size: 75px;
  }

  .ourServices-section-4 .title-container {
    width: 75%;
  }

  .ourServices-section-4 .section-4-title {
    font-size: 40px;
    line-height: 55px;
  }

  .ourServices-section-4 .building-image img {
    height: 100vh;
    object-fit: cover;
  }

  .ourServices-section-4 .services-list li,
  .ourServices-section-5 .services-list li {
    font-size: 20px;
  }

  .ourServices-section-5 .section-5-title {
    font-size: 40px;
  }

  .ourServices-section-6 .luxuryText {
    font-size: 30px;
  }

  .ocean-bot .content-cta {
    font-size: 25px;
  }
}

@media (max-width: 767.98px) {

  .vertical-section.footer-section,
  .panel {
    height: unset;
  }

  .ourServices-section-1 .logo img {
    height: 150px;
  }

  .ourServices-section-1 .hero-container {
    width: 90%;
  }

  .ourServices-section-1 .hero-container .hero-content-1 {
    font-size: 15px;
    line-height: 35px;
  }

  .ourServices-section-2 .vertical-line-container .line {
    height: 10%;
  }

  .ourServices-section-2 .title-container {
    top: 35%;
    left: 5%;
    width: 90%;
  }

  .ourServices-section-2 .section-2-title {
    font-size: 15px;
    line-height: 30px;
  }

  .ourServices-section-2 .desc-container {
    left: 5%;
    width: 90%;
  }

  .ourServices-section-2 .section-2-desc {
    font-size: 12.5px;
  }

  .ourServices-section-3 .title-container {
    top: 53%;
  }

  .ourServices-section-3 .section-3-title {
    font-size: 20px;
  }

  .ourServices-section-4 .title-container {
    top: 20%;
    left: 12.5%;
    width: 85%;
  }

  .ourServices-section-4 .section-4-title {
    font-size: 15px;
    line-height: 35px;
  }

  .ourServices-section-4 .desc-container {
    left: 25%;
    width: 75%;
    top: 32.5%;
  }

  .ourServices-section-4 .connector::before {
    content: unset;
  }

  .ourServices-section-4 .services-list li {
    font-size: 12.5px;
    margin-bottom: 15px;
  }

  /* .ourServices-section-4 .connector {
    height: calc(100% + -32px);
    top: 8px;
  } */

  .ourServices-section-5 .title-container {
    top: 20%;
    left: 7.5%;
    width: 90%;
  }

  .ourServices-section-5 .section-5-title {
    font-size: 15px;
    line-height: 35px;
  }

  .ourServices-section-5 .desc-container {
    top: 35%;
    left: 15%;
    width: 75%;
  }

  .ourServices-section-5 .connector {
    top: 9px;
    height: calc(100% + -43px);
  }

  .ourServices-section-5 .services-list li {
    font-size: 12.5px;
    margin-bottom: 15px;
  }

  .ourServices-section-6 .luxuryText {
    width: 45%;
    font-size: 15px;
    top: 57.5%;
    left: 3%;
  }

  /* .ourServices-section-6 .pool-image {
    width: 60%;
    left: 15%;
  } */

  .ourServices-section-6 .flight-image {
    width: 80%;
    left: 10%;
    top: 10%;
    height: 40%;
  }

  .ocean-top .hero-title {
    font-size: 20px;
  }

  .ocean-bot {
    display: flex;
    align-items: center;
  }

  .ocean-bot .content-heading {
    font-size: 20px;
    margin-top: 80px;
  }

  .ocean-bot .content-highlight {
    font-size: 15px;
    padding-left: 5px;
  }

  .ocean-bot .cta-container {
    flex-direction: column;
    gap: 30px;
    padding-top: 25px
  }

  .ocean-bot .content-cta {
    font-size: 12.5px;
    white-space: unset;
    text-align: center;
  }

  .ocean-bot .contact-button {
    font-size: 12.5px;
  }
}

@media (max-width: 450px) {
  .ourServices-section-4 .connector {
    height: calc(100% + -35px);
    top: 10px;
  }
}

@media (max-width: 420px) {
  .ourServices-section-4 .connector {
    height: calc(100% + -43px);
    top: 19px;
  }
}