@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif !important;
}

:root {
  --one-page-max-height: 1800px;
  --one-page-max-height-mobile: 1500px;

  --orange: #fd9940;
  --darkorange: #dd7d25;
  --platinum: #e5e5e5;
  --black: #2b2d42;
  --white: #fff;
  --thumb: #edf2f4;
}

.nav-card {
  border: 0;
  color: var(--black);
  background: rgba(0, 0, 0, 0);
}

/* .nav-card:hover {
  color: var(--white);
  background: var(--orange);
} */

.nav-card-quote {
  color: var(--white);
  background: var(--orange);
}

.nav-card-quote:hover {
  color: var(--white);
  background: #e0a75e;
}

/* body {
  box-sizing: border-box;
} */

.carousel-no-gutter {
  --bs-gutter-x: 0;
  z-index: -1;
}

.row-no-gutter {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.center-an-object-container {
  position: relative;
}

.center-an-object {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.navbar-image-container {
  width: 150px; /* Desired width */
  height: 150px; /* Desired height */
  overflow: hidden; /* Hide the overflowing parts of the image */
  position: relative;
}

.navbar-image-container img {
  position: absolute;
  top: 50%; /* Position the top of the image 50% down the container */
  left: 50%; /* Position the left of the image 50% across the container */
  transform: translate(
    -50%,
    -50%
  ); /* Shift the image up and left by 50% of its size to center it */
  width: 300px; /* Ensure the full image is rendered */
}

.zoom-img {
  object-fit: contain;
  transform: scale(400%);
  border: 2px red;
}

.zoom-img-mini {
  object-fit: contain;
  transform: scale(700%);
  border: 2px red;
}

.logo-container {
  display: flex;
  justify-content: center;
  width: 200px;
  height: 200px;
  border: 2px solid midnightblue;
  overflow: hidden;
}

.logo-container-mini {
  display: flex;
  justify-content: center;
  width: 200px;
  height: 200px;
  /* border: 2px solid whitesmoke; */
  overflow: hidden;
}
.logo-container-mini img {
  width: 50px;
}

.full-screen {
  min-height: 800px;
  max-height: var(--one-page-max-height);
}

.full-width {
  width: 100%;
}

.not-full-width {
  width: 80%;
}

.carousel-item img {
  object-fit: cover;
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%);
  width: 100vw;
  height: 100vh;
  max-height: var(--one-page-max-height);
}

@media (max-width: 767px) {
  .full-screen {
    height: 170vh;
  }
  .carousel-item img {
    height: 170vh;
  }

  .navbar-image-container {
    width: 70px; /* Desired width */
    height: 70px; /* Desired height */
    overflow: hidden; /* Hide the overflowing parts of the image */
    position: relative;
  }

  .navbar-image-container img {
    position: absolute;
    top: 50%; /* Position the top of the image 50% down the container */
    left: 50%; /* Position the left of the image 50% across the container */
    transform: translate(
      -50%,
      -50%
    ); /* Shift the image up and left by 50% of its size to center it */
    width: 180px; /* Ensure the full image is rendered */
  }
}

img.kelas {
  width: 100%;
  /* border: 20px solid blue;  */
  -webkit-filter: grayscale(25%);
  filter: grayscale(25%);
}

.full-no-padding {
  padding-right: 0;
  padding-left: 0;
}

.border-blue {
  border: 2px solid blue;
}

@import "intl-tel-input/build/css/intlTelInput.css";
.iti {
  display: block;
  width: 100%;
}

.bg-alice-blue {
  background-color: #f0f8ff;
}

.parallax {
  /* The image used */
  background-image: url("/assets/ocean-ship.jpg");
  /* background-attachment: fixed; */
  background-position: 50% 70%;
}

@keyframes logoSlide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-33.33%);
  }
}

.logos {
  background-color: white;
  overflow: hidden;
  padding: 48px 0;
  white-space: nowrap;
  position: relative;
}

.logos::after,
.logos::before {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos::after {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fdfdfd);
}

.logos::before {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fdfdfd);
}

.logos-slide {
  animation: 10s logoSlide infinite linear;
  display: inline-block;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}
.logos:hover .logos-slide {
  animation-play-state: paused;
}

.sosmed {
  color: whitesmoke;
  font-size: 16px;
  margin-right: 5px;
}

.bg-transparent-dark {
  background-color: rgba(0, 0, 0, 0.8); /* 80% opacity */
}

.bg-orange {
  background-color: #f19033;
}

.bg-red-light {
  background-color: #ea4253;
}
.bg-red-dark {
  background-color: #dd323c;
}
.border-red-dark {
  border-color: #dd323c;
}

.bg-gray-light {
  background-color: #c2c3c2;
}

.bg-colorful {
  background: rgb(221, 50, 60);
  background: linear-gradient(
    180deg,
    rgba(221, 50, 60, 1) 0%,
    rgba(234, 66, 83, 1) 0%,
    rgba(241, 144, 51, 1) 100%
  );
}

.bg-gray-dark {
  background-color: #747577;
}

.image-fader img {
  width: 400px;
  height: auto;
  object-fit: cover;
  position: absolute;
  aspect-ratio: 1/1;
  top: 0px;
  left: 0px;
}

.animateFadeOut {
  opacity: 0;
  transition: all 5s;
}

.image-fader {
  position: relative;
  width: 400px;
  height: 400px;
}

.glass-box {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

#our-service-btn i {
  transition: all 0.3s ease;
}

#our-service-btn:hover {
  background-color: #ff8c00;
}

#our-service-btn:active {
  background-color: red;
}

.hexagon {
  position: relative;
  width: 100%;
  aspect-ratio: 7/6;
  background-color: wheat;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  overflow: hidden;
}

.hexagon img {
  position: absolute;
  top: 25%;
  width: 100%;
  transform: scale(2);
  opacity: 0;
  transition: opacity 1s;
}

.hexagon img.active {
  opacity: 1;
}

.buttonServiceColor {
  background-color: var(--orange);
}
