@import url("https://fonts.googleapis.com/css2?family=Lato&family=Open+Sans&display=swap");

html {
  scroll-behavior: smooth;
}

.tentang-kami {
  padding-top: 150px;
  padding-bottom: 135px;
}

.tentang-kami h1 {
  font-size: 40px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.tentang-kami p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #7d7d81;
  line-height: 28px;
  font-weight: 500;
  text-align: justify;
  margin: auto;
  margin-bottom: 10px;
}

.human-tentang {
  width: 450px;
  filter: drop-shadow(0.001rem 0.1rem 0.1rem rgba(94, 92, 92, 0.5));
}

.visi-misi {
  padding-top: 20px;
}

.card.visi-misi-content {
  background-color: #f6f5f5;
  border: none;
  padding: 30px;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  border-radius: 8px;
  /* width: 70%; */
  margin: auto;
}

.card.visi-misi-content h2 {
  font-size: 25px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.visi-misi-text {
  width: 80%;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-top: 10px;
  color: #7d7d81;
  line-height: 28px;
  font-weight: 500;
  margin: auto;
  padding-bottom: 20px;
  text-align: justify;
}

.kualitas-perusahaan {
  /* background: url('../assets/background/kualitas-perusahaan.svg') top no-repeat; */
  background-size: cover;
  padding-top: 180px;
  margin-bottom: 650px;
}

.kualitas-perusahaan p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #7d7d81;
  line-height: 28px;
  font-weight: 500;
  margin: auto;
  margin-bottom: 10px;
}

.kualitas-perusahaan h2 {
  font-size: 25px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.isi-kualitas {
  width: 60%;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-top: 10px;
  color: #7d7d81;
  line-height: 28px;
  font-weight: 500;
  margin: auto;
  margin-bottom: 10px;
}

.slider {
  width: 600px;
  height: 450px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  margin-top: 40px;
}

.slider .item {
  height: 100%;
  width: 450px;
  position: absolute;
  background: white;
  border-radius: 10px;
  transition: all ease 0.7s;
  z-index: 1;
  left: 0;
  opacity: 0.7;
  transform: scale(0.8);
  right: 0;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.slider .item.active {
  z-index: 2;
  opacity: 1;
  background: #fff;
  transform: scale(1);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.slider-item-content h1 {
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  color: #26384e;
  transform: translateY(20px);
  transition: all 0.4s ease;
  transition-delay: 0.2s;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 520px) {
  .slider-item-content h1 {
    font-size: 16px;
    line-height: 24px;
  }
}

.slider-item-content p {
  font-size: 16px;
  line-height: 24px;
  color: #889db8;
  transform: translateY(20px);
  transition: all 0.4s ease;
  transition-delay: 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 520px) {
  .slider-item-content p {
    font-size: 14px;
    line-height: 20px;
  }
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}

.swiper-container {
  background: linear-gradient(270deg, #f7f9ff 0%, #f2f6ff 100%);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 100%;
  position: relative;
  max-width: 820px;
  width: 820px;
  height: 100%;
  max-height: 420px;
  margin-left: 60px;
  border-radius: 10px;
}

.slider-image-wrapper {
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.slider-item {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  /* flex-direction: column; */
  flex-shrink: 0;
  opacity: 0;
  background: linear-gradient(270deg, #f7f9ff 0%, #f2f6ff 100%);
  cursor: -webkit-grab;
  cursor: grab;
}

.slider-item-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.4s;
}

.slider-item-content > * {
  opacity: 0;
  transform: translateY(20px);
}

.swiper-slide-active .slider-item-content > * {
  transform: translateY(0px);
  opacity: 1;
}

.slider-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.2s;
}

.tim-kami {
  padding-top: 50px;
  padding-bottom: 90px;
}

.tim-tagline h2 {
  font-size: 25px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.tim-tagline p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #7d7d81;
  line-height: 28px;
  font-weight: 500;
  margin: auto;
  margin-bottom: 10px;
}

.swiper-pagination {
  position: absolute;
  left: 75%;
  bottom: 8px;
  transform: translatex(-50%);
  z-index: 1;
  width: auto !important;
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  line-height: 30px;
  font-size: 12px;
  opacity: 1;
  background: #78f7ab;
  display: inline-block;
  margin-right: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.swiper-pagination-bullet-active {
  background: #51ed8c;
  width: 20px;
  border-radius: 10px;
}

.slider-buttons {
  position: absolute;
  display: flex;
  top: 100%;
  justify-content: flex-end;
  width: 100%;
  padding-top: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  color: #fff;
  position: relative;
  margin-left: 4px;
}
.swiper-button-next:before,
.swiper-button-prev:before {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 1px;
  width: 0;
  left: 0;
  bottom: -1px;
  transition: 0.2s;
}
.swiper-button-next:hover:before,
.swiper-button-prev:hover:before {
  width: 100%;
}

.socials {
  position: fixed;
  top: 12px;
  right: 16px;
  display: flex;
  align-items: center;
}
.socials .social-link {
  display: inline-block;
  margin-left: 8px;
  color: #fff;
}

@media screen and (max-width: 520px) {
  .swiper-button-next:hover:before,
  .swiper-button-prev:hover:before {
    display: none;
  }
}

/* Mobile View */
@media only screen and (min-width: 200px) and (max-width: 414px) {
  .tentang-kami h1 {
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }

  .tentang-kami p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    text-align: justify;
    margin: auto;
    margin-bottom: 10px;
  }

  .human-tentang {
    width: 300px;
    filter: drop-shadow(0.001rem 0.1rem 0.1rem rgba(94, 92, 92, 0.5));
    margin-top: 30px;
  }

  .card.visi-misi-content {
    background-color: #f6f5f5;
    border: none;
    padding: 30px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    border-radius: 8px;
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
  }

  .card.visi-misi-content h2 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }

  .visi-misi-text {
    width: 80%;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin-top: 10px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    margin: auto;
    padding-bottom: 20px;
    text-align: justify;
  }

  .kualitas-perusahaan {
    /* background: url('../assets/background/kualitas-perusahaan.svg') top no-repeat; */
    background-size: cover;
    padding-top: 180px;
    margin-bottom: 650px;
  }

  .kualitas-perusahaan {
    /* background: url('../assets/background/kualitas-perusahaan.svg') top no-repeat; */
    background-size: cover;
    padding-top: 180px;
    margin-bottom: 400px;
  }

  .kualitas-perusahaan p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    margin: auto;
    margin-bottom: 10px;
  }

  .kualitas-perusahaan h2 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }

  .isi-kualitas {
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin-top: 10px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    margin: auto;
    margin-bottom: 10px;
  }

  .slider {
    width: 200px;
    height: 250px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    margin-top: 40px;
  }

  .item {
    width: 180px !important;
  }

  .slider .item {
    height: 100%;
    position: absolute;
    background: white;
    border-radius: 10px;
    transition: all ease 0.7s;
    z-index: 1;
    left: 0;
    opacity: 0.7;
    transform: scale(0.8);
    right: 0;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
      rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  }

  .slider .item.active {
    width: 180px;
  }

  .tim-tagline h2 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }

  .tim-tagline p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    margin: auto;
    margin-bottom: 30px;
  }

  .swiper-wrapper {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
  }

  .swiper-container {
    background: linear-gradient(270deg, #f7f9ff 0%, #f2f6ff 100%);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    max-width: 300px !important;
    width: 300px !important;
    height: 420px;
    max-height: 620px;
    margin-left: 30px !important;
    border-radius: 10px;
  }

  .slider-item {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    opacity: 0;
    background: linear-gradient(270deg, #f7f9ff 0%, #f2f6ff 100%);
    cursor: -webkit-grab;
    cursor: grab;
  }

  .slider-item-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
  }

  .slider-image-wrapper {
    height: 400px;
    width: 100%;
    margin-bottom: 30px !important;
    overflow: hidden;
  }

  .slider-image {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.2s;
  }
}

/* Mobile View */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .tentang-kami h1 {
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }

  .tentang-kami p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    text-align: justify;
    margin: auto;
    margin-bottom: 10px;
  }

  .human-tentang {
    width: 300px;
    filter: drop-shadow(0.001rem 0.1rem 0.1rem rgba(94, 92, 92, 0.5));
    margin-top: 30px;
  }

  .card.visi-misi-content {
    background-color: #f6f5f5;
    border: none;
    padding: 30px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    border-radius: 8px;
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
  }

  .card.visi-misi-content h2 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }

  .visi-misi-text {
    width: 80%;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin-top: 10px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    margin: auto;
    padding-bottom: 20px;
    text-align: justify;
  }

  .kualitas-perusahaan {
    /* background: url('../assets/background/kualitas-perusahaan.svg') top no-repeat; */
    background-size: cover;
    padding-top: 180px;
    margin-bottom: 650px;
  }

  .kualitas-perusahaan {
    /* background: url('../assets/background/kualitas-perusahaan.svg') top no-repeat; */
    background-size: cover;
    padding-top: 180px;
    margin-bottom: 400px;
  }

  .kualitas-perusahaan p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    margin: auto;
    margin-bottom: 10px;
  }

  .kualitas-perusahaan h2 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }

  .isi-kualitas {
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin-top: 10px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    margin: auto;
    margin-bottom: 10px;
  }

  .slider {
    width: 200px;
    height: 250px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    margin-top: 40px;
  }

  .item {
    width: 180px !important;
  }

  .slider .item {
    height: 100%;
    position: absolute;
    background: white;
    border-radius: 10px;
    transition: all ease 0.7s;
    z-index: 1;
    left: 0;
    opacity: 0.7;
    transform: scale(0.8);
    right: 0;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
      rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  }

  .slider .item.active {
    width: 180px;
  }

  .tim-tagline h2 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }

  .tim-tagline p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #7d7d81;
    line-height: 28px;
    font-weight: 500;
    margin: auto;
    margin-bottom: 30px;
  }

  .swiper-wrapper {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
  }

  .swiper-container {
    background: linear-gradient(270deg, #f7f9ff 0%, #f2f6ff 100%);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    max-width: 300px !important;
    width: 300px !important;
    height: 420px;
    max-height: 620px;
    margin-left: 30px !important;
    border-radius: 10px;
  }

  .slider-item {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    opacity: 0;
    background: linear-gradient(270deg, #f7f9ff 0%, #f2f6ff 100%);
    cursor: -webkit-grab;
    cursor: grab;
  }

  .slider-item-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
  }

  .slider-image-wrapper {
    height: 400px;
    width: 100%;
    margin-bottom: 30px !important;
    overflow: hidden;
  }

  .slider-image {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.2s;
  }
}
