* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  max-width: 2048px;
  margin: auto;
  overflow-x: hidden;
  font-family: Lato, sans-serif;
}

.section {
  padding: 100px 10vw;
  overflow-x: hidden;
}

p {
  color: #425563;
  font-size: 22px;
  line-height: 32px;
}

.btn {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  font-weight: 700;
  margin-inline: 8px;
}

.btn-main {
  border: none;
  background: #134a9a;
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #134a9a;
  color: #134a9a;
}

.line {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    270deg,
    rgba(162, 162, 162, 0) 0%,
    #cbcbcb 50.5%,
    rgba(162, 162, 162, 0) 100%
  );
}

.lang {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  margin-inline: 8px;
  padding: 8px;
  text-decoration: none;
  gap: 10px;
}

.top-right-corner {
  position: absolute;
  z-index: -1;
  top: -125px;
  right: -290px;
  width: 589px;
  height: 589px;
  flex-shrink: 0;
  border-radius: 589px;
  opacity: 0.35;
  background: #d9b283;
  filter: blur(150px);
}

.top-left-corner {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 250px;
  width: 373px;
  height: 373px;
  flex-shrink: 0;
  border-radius: 373px;
  opacity: 0.25;
  background: #0080c8;
  filter: blur(150px);
}

nav {
  padding: 24px 88px;
  justify-content: space-between;
}

nav .logo {
  margin-inline-end: 48px;
}

nav ul {
  list-style: none;
}

nav ul li {
  padding: 12px;
  margin-inline: 12px;
}

nav ul li a {
  color: #000;
  text-decoration: none;
}

nav ul li a:hover {
  color: blue;
}

.hero .hero-content {
  flex-direction: column;
  gap: 32px;
  margin-top: 52px;
  padding-inline: 16px;
}

.hero .hero-content .hero-title {
  text-align: center;
  font-size: 80px;
  font-weight: 700;
  /* line-height: 100px; */
  text-transform: capitalize;
}

.hero .hero-content .hero-text {
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  position: relative;
  width: fit-content;
  margin: auto;
  text-align: center;
}

.hero .hero-content .hero-text .hero-arrow {
  position: absolute;
  top: 0;
  left: 105%;
}

.hero .hero-media {
  /* width: 100%; */
  /* display: flex; */
  /* align-items: baseline; */
  /* gap: 32px; */
  margin-top: 32px;
  padding-inline: 10vw;
}

.hero .hero-statistics {
  margin: 80px auto 0 auto;
  padding: 60px 120px;
  background-color: #134a9a;
}

.hero .hero-statistics .hero-statistic {
  text-align: center;
  width: 25%;
}

.hero .hero-statistics .hero-statistic .hero-statistic-number {
  color: white;
  font-size: 60px;
  font-weight: 700;
  /* line-height: 100px; */
}

.hero .hero-statistics .hero-statistic .hero-statistic-text {
  font-size: 24px;
  color: white;
}

.section-explore {
  background: url("./assets/explore-bg.png");
  background-size: 100% 100%;
}

.explore-title,
.services-title,
.people-title,
.map-title {
  font-size: 68px;
  font-weight: 700;
  /* line-height: 100px; */
  text-transform: uppercase;
}

.explore-text {
  max-width: 1200px;
  margin-block: 32px 84px;
}

.section-explore .goal {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 500px;
  padding-inline-start: 40px;
}

.section-services {
  background: url("./assets/services-bg.png");
  background-size: 100% 100%;
}

.auto_slider_container {
  width: 100%;
  display: flex;
  margin: auto;
  overflow: hidden;
  margin-block: 12px;
}
.auto_slider {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.slider_1 {
  animation: rotation_1 12s linear infinite;
}
.slider_2 {
  animation: rotation_2 10s linear infinite;
}
.auto_slider li {
  display: flex;
  width: max-content;
  padding: 8px 24px 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 78px;
  border: 1px solid #fff;
  background: radial-gradient(
    107.32% 141.42% at 0% 0%,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: -2.462px -2.462px 123.085px 0px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(10.339168548583984px);
}
@keyframes rotation_1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes rotation_2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.section-services .swiper .swiper-wrapper .swiper-slide .card {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 32px;
  text-align: center;
}

.section-services .swiper .swiper-wrapper .swiper-slide .card .card-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 28px;
}

.section-services .swiper .swiper-wrapper .swiper-slide .card .card-text {
  font-size: 18px;
  margin-block: 12px;
}

.section-services .swiper .swiper-wrapper .swiper-slide .card .card-link a {
  color: #134a9a;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.section-equipments {
  position: relative;
}

.section-equipments .equipments-title {
  font-size: 60px;
  font-weight: 700;
}

.section-equipments .equipments-content {
  /* width: 45%;
  margin-inline-start: auto;
  margin-inline-end: 0; */
}

.section-equipments .equipments-content .bg-blur {
  width: 292px;
  height: 292px;
  flex-shrink: 0;
  border-radius: 292px;
  opacity: 0.2;
  background: #0087cd;
  filter: blur(50px);
  position: absolute;
  top: 30px;
  inset-inline-end: -140px;
}

.section-equipments .cards .card {
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f9fafb;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* margin-inline: 16px; */
  /* height: 100%; */
}

.section-equipments .cards .card .card-title {
  font-size: 32px;
  font-weight: 700;
}

.section-equipments .cards .card .card-text {
  font-size: 18px;
  margin-block: 24px;
}

.section-equipments .cards .card .card-img img {
  /* width: 100%; */
}

.section-equipments .cards .card .card-link {
  margin-top: 32px;
}

.section-equipments .cards .card .card-link a {
  color: #134a9a;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.section-people {
  background: url("./assets/people-bg.png");
  height: 690px;
  overflow: visible;
}

.section-people .swiper-slide {
  width: 100% !important;
}

.section-map {
  padding-inline: 10vw;
}

.section-contact {
  background: url(./assets/contact-bg.png);
  height: 1200px;
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.section-contact .contact-title {
  font-size: 60px;
  color: #134a9a;
  -webkit-text-stroke: 16px white;
  paint-order: stroke fill;
  font-weight: 700;
}

@media screen and (min-width: 600px) {
  .mobile-text {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .btn {
    font-size: 16px !important;
  }

  .mobile-title {
    font-size: 32px !important;
    font-weight: 800 !important;
  }

  p {
    font-size: 16px !important;
  }

  .top-right-corner,
  .top-left-corner,
  .hero .hero-content .hero-text .hero-arrow,
  .section-equipments .equipments-content .bg-blur {
    display: none !important;
  }

  nav {
    padding-inline: 16px;
  }

  nav .logo {
    margin-inline-end: 16px;
  }

  .nav-links {
    display: none !important;
  }

  .hero .hero-statistics {
    padding-inline: 20px !important;
  }

  .hero .hero-statistics .hero-statistic {
    width: 50% !important;
    padding: 32px;
  }

  .hero .hero-statistics .hero-statistic .hero-statistic-text {
    font-size: 16px !important;
  }

  .camera {
    display: none !important;
  }

  .web-text {
    display: none !important;
  }

  .section-explore {
    background: url("./assets/explore-bg-mobile.png");
    background-size: 100% 100%;
  }

  .section-equipments .equipments-content {
    width: 100%;
  }

  .section-equipments .equipments-arrow {
    inset-inline-start: 0 !important;
  }
  /* .section-equipments .cards {
    flex-wrap: wrap;
  } */

  .card {
    margin-block: 16px;
  }

  .left-media,
  .right-media {
    display: none;
  }

  .center-media {
    width: 100% !important;
  }

  .center-media video {
    position: relative !important;
    bottom: 0 !important;
  }

  .section-map .content {
    width: 100% !important;
    padding-inline: 16px !important;
    background: url("./assets/map-bg-mobile.png") !important;
  }

  .section-contact {
    height: auto !important;
    background-size: 180% 80% !important;
  }

  .section-contact p {
    margin-block: 32px !important;
  }

  .section-contact input {
    width: 100% !important;
  }

  /* .section-people .swiper {
    overflow: visible !important;
  } */
}

.section-tour-mobile {
  display: none;
}

@media screen and (max-width: 1600px) {
  .section-tour-web {
    display: none;
  }

  .section-tour-mobile {
    display: block !important;
  }

  .section-explore .goal {
    position: relative;
    bottom: 0;
    width: auto;
    padding-inline-start: 0;
  }
}

@media screen and (max-width: 1200px) {
  .section-people .swiper-button-prev,
  .section-people .swiper-button-next {
    position: relative;
    left: 0 !important;
    margin-top: 16px;
  }
}

.section-services .swiper {
  overflow: visible;
}

.section-people .swiper {
  overflow: hidden;
}

.swiper-pagination {
  top: 105% !important;
}

.section-people .swiper-button-prev {
  left: 60%;
  top: 80%;
  height: 50px;
  width: 50px;
}

.section-people .swiper-button-next {
  left: 53%;
  top: 80%;
  height: 50px;
  width: 50px;
}

/* Join Us Page */

.form-group input:focus {
  border-color: #134a9a !important;
  outline: none;
}

@media screen and (max-width: 600px) {
  .form-section .image {
    display: none !important;
  }
}

.upload-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.upload-preview {
  width: 120px;
  height: 120px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.upload-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #eff5f9;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}

.upload-button {
  background-color: #ffffff;
  color: #134a9a;
  border: 1px solid #134a9a;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 5px;
}

.upload-info {
  font-size: 0.9em;
}

#fileUpload {
  display: none;
}
