@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}
body {
  box-sizing: border-box;
  overflow-x: hidden;
}
section {
  overflow: hidden;
}
.color {
  background-color: #40e0d0;
  background-color: #52d2c5;
}
/* nav */
.topnav {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  padding: 2% 3%;
  width: 100%;
  transition: 0.6s;
  justify-content: space-between;
  z-index: 999;
  height: 80px;
  background: #fff;
}

.topnav .logo {
  display: flex;
  flex-direction: row;
}

.topnav .logo img {
  width: auto;
  height: 50px;
}
.topnav .logo:hover {
  transform: scale(1.1);
  transition: all 0.4s;
}
.nav-links {
  text-align: right;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
  margin-top: 15px;
}

.nav-links ul li a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #40e0d0;
  display: block;
  margin: auto;
  transition: 0.35s ease-in-out;
}

.nav-links ul li:hover::after {
  width: 100%;
  transition: 0.35s ease-in-out;
}

.topnav .fa-solid {
  display: none;
}

/* responsive navbar */
@media (max-width: 700px) {
  .nav-links ul li {
    display: block;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links ul li a {
    color: black;
  }

  .nav-links ul li::after {
    background-color: #fff;
  }

  .nav-links {
    position: fixed;
    height: 100vh;
    width: 200px;
    background: #fff;
    top: 0;
    right: -300px;
    text-align: left;
    z-index: 99;
    transition: 1s;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    -webkit-box-shadow: -1px 1px 5px 0px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: -1px 1px 5px 0px rgba(0, 0, 0, 0.36);
  }

  .topnav .fa-solid {
    display: block;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
    color: black;
  }

  .topnav .fa-bars {
    color: #40e0d0;
  }

  .nav-links {
    padding: 30px;
  }
  .nav-links ul li:hover::after {
    width: 50%;
  }
}
/* end nav */

/* home banner */
#homebanner {
  width: 100%;
  height: 100vh;
  /* z-index: 1; */
  background-image: url(../../images/bg\ 2.png);
  background-repeat: no-repeat;
  background-size: cover;
}
#homebanner img {
  width: 100%;
  height: 100vh;
  background-size: cover;
}
.banner-title h1 {
  font-weight: 600;
  background-color: linear-gradient(to left, #40e0d0, #00ffdd);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  display: inline-block;
  text-decoration: none;
  color: black;
  /* border: 1px solid #fff; */
  padding: 12px 34px;
  background: transparent;
  position: relative;
  border-radius: 15px;
}
.text-box p {
  margin-top: -7px;
}
/* .banner-title span{
    color: #40e0d0;
} */
@media (max-width: 391px) {
  #homebanner {
    height: auto;
    width: 100%;
  }
  #homebanner .text-box {
    width: 100%;
    height: auto;
    margin: auto;
  }
}

@media (max-width: 390px) {
  #homebanner {
    width: 100%;
    height: auto;
    background-size: cover;
    background-image: url(../../images/bg\ 2\ res.png);
    /* background-position-x: 2000px; */
  }
  #homebanner .text-box {
    margin-left: 35px;
    margin-top: 300px;
  }
  #homebanner .banner-title h1 {
    font-size: 40px;
  }
  #homebanner .hero-btn {
    margin-left: 45px;
  }
  #homebanner .text-box p {
    text-align: center;
    margin-left: -35px;
    width: 100%;
    margin-bottom: 2px;
  }
  #homebanner .text-box h1 {
    font-size: 35px;
  }
}

@media (max-width: 500px) {
  #homebanner {
    height: 100vh;
    width: 100%;
    /* background-image: url("../../images/bg-responsive\(2\).jpeg"); */
    background-position: center;
    background-size: cover;
  }
}
@media (max-width: 920px) {
  #homebanner img {
    height: auto;
    width: 100%;
    background-size: cover;
  }
}
@media (max-width: 1080px) {
  #homebanner {
    height: auto;
    width: 100%;
    /* background-position: 50% 50%;
    background-image: url("../../images/bg-responsive\(2\).jpeg"); */
  }
  .text-box {
    z-index: 999999;
    /* padding-left: -700px; */
  }
}

.text-box {
  width: 100%;
  /* height:299px; */
  color: black;
  padding-top: 300px;
  /* transform: translatex(50%, 50%); */
  text-align: left;
  margin-left: 750px;
  border-right: 10px;
  /* border-left: 2px solid #40E0D0; */
}

.text-box h1 {
  font-size: 62px;
  margin-left: -25px;
  margin-bottom: -30px;
}
.text-box p {
  color: black;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: black;
  border: 1px solid black;
  padding: 12px 34px;
  margin-left: 10px;
  font-size: 12px;
  /* background: transparent; */
  position: relative;
  cursor: pointer;
  border-radius: 30px;
}

.hero-btn:hover {
  background: #40e0d0;
  color: #fff;
  transition: 0.5s;
  border-color: #fff;
}
/* end home banner */

p {
  /* color: #fff; */
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  /* padding: 10px; */
}
h1 {
  font-weight: 600;
  background-image: linear-gradient(to left, #40e0d0, #00ffdd);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* produk */
#produk {
  background-color: whitesmoke;
}
#produk .produk-col h3 {
  color: black;
  font-size: 18px;
}
.produks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.produk-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.produk-title h1 {
  border-bottom: 3.5px solid #40e0d0;
  width: 500px;
  /* margin-bottom: 2px; */
  font-size: 40px;
}
#produk .judul {
  text-align: left;
  margin-top: 60px;
  border-top: 3.5px solid #40e0d0;
  width: 32%;
}
#produk .judul h2 {
  font-size: ;
}
#produk .produk-col h3 {
  font-size: 20px;
}
#produk .produk-col p {
  font-size: 30px;
}
.produks {
  width: 70%;
  margin: auto;
  text-align: center;
  padding-top: 70px;
}
.produk-col h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
  text-transform: capitalize;
}

.row-produk {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}
.produk-col {
  flex-basis: 33%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  /* margin-bottom: 100px; */
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}
.produk-col img {
  width: 100%;
  height: auto;
  padding: 20px 10px;
  /* border-radius: 100%; */
}
.hero-btn-produk {
  display: inline-block;
  text-decoration: none;
  color: #40e0d0;
  margin-top: 15px;
  border: 1px solid #40e0d0;
  padding: 10px 100px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.hero-btn-produk a {
  width: 100%;
  display: inline-block;
}

.hero-btn-produk:hover {
  /* border: 1px solid tomato; */
  background: #40e0d0;
  color: #fff;
  transition: 0.5s;
}

.produk-col:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transform: scale(1.03);
}

@media (max-width: 391px) {
  .produks .judul h2 {
    width: 100%;
  }
  #produk .produk-title h1 {
    font-size: 30px;
    width: 135%;
    height: auto;
  }
}
/* --------------end produk --------------*/

h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
  color: #fff;
}

/* --------model--------- */
.model {
  width: 80%;
  margin: auto;
  text-align: center;
  /* padding-top: 80px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#model h1 {
  margin-top: 70px;
  margin-bottom: -45px;
  border-bottom: 3.5px solid #40e0d0;
  width: 180px;
}

.model-col {
  flex-basis: 32%;
  border-radius: 10px;
  /* margin-bottom: 10px; */
  position: relative;
  overflow: hidden;
}

.model-col video {
  width: 100%;
  height: fit-content;
  display: block;
}
#model .layer {
  background: transparent;
  height: auto;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: 999;
}
#model .layer:hover {
  background: rgba(64, 224, 208, 0.8);
}
#model .layer h3 {
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  transition: 0.8s;
}
#model .layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}
@media (max-width: 390px) {
  #model h1 {
    margin-bottom: 30px;
  }
  #model .model-col {
    margin: 10px 0;
  }
}
/* ----END model----- */

/* ----OUR FACILITIES----- */
.facilities {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
h1 {
  font-size: 36px;
  font-weight: 600;
}
.facilities-col p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
  padding-left: 0px;
  padding-top: 0px;
}
.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.facilities-col {
  flex-basis: 32%;
  margin-bottom: 5%;
  padding: 20px 0px;
  box-sizing: border-box;
  transition: 0.5s;
}
.facilities-col h3 {
  text-align: left;
  font-weight: 600;
  padding: 20px 0px 0px 0px;
  color: black;
}
/* .facilities-col:hover {
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.2);
} */

.facilities-col img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* testimonilas */
#testimonial {
  background-color: whitesmoke;
}
.testimonial-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial-title h1 {
  border-bottom: 3.5px solid #40e0d0;
  width: 300px;
  /* margin-bottom: 2px; */
  font-size: 39px;
}
.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
  margin-top: 3%;
}
.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.card {
  border-radius: 25px;
  background-color: #fff;
  margin-bottom: 30px;
}
.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #40e0d0;
  border-radius: 25px;
}
.overlay::before,
.overlay::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #40e0d0;
}
.overlay::after {
  background-color: #fff;
}
.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}
.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #40e0d0;
}
.name {
  font-size: 25px;
  font-weight: 500;
  color: #333;
}
.description {
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button {
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  background-color: #40e0d0;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover {
  background: #40e0d0;
}

.swiper-navBtn {
  color: #40e0d0;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover {
  color: #40e0d0;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}
.swiper-navBtn {
  right: 0;
}
.swiper-navBtn {
  left: 0;
}
.swiper-pagination-bullet {
  background-color: #40e0d0;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #40e0d0;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
}
@media(max-width: 390px) {
  .testimonial-title h1 {
    margin-top: 15%;
    margin-bottom: 5%;
  }
  .swiper-button-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }
}

/* Call To Action */
.contact-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-title h1 {
  border-bottom: 3.5px solid #40e0d0;
  width: 200px;
  /* margin-bottom: 2px; */
  font-size: 39px;
}

/* contact */
.cta {
  margin: 50px auto;
  width: 80%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../../images/about.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  padding: 40px 0;
}
#form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
}
.field {
  margin-bottom: 10px;
  width: 90%;
}

.field label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  width: 100%;
}

.field input {
  display: block;
  line-height: 1.5;
  font-size: 14px;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
}
.field textarea {
  display: block;
  width: 100%;
  line-height: 1.5;
  font-size: 14px;
  padding: 30px;
  border-radius: 5px;
}

input[type="submit"] {
  display: block;
  padding: 6px 30px;
  font-size: 14px;
  background-color: #40e0d0;
  color: black;
  border: none;
}
@media (max-width: 390px) {
  .testimonial-title h1 {
    margin-top: 50px;
  }
  .field{
    padding: 10px;
  }
}

/* footer */
.social-links i {
  padding-right: 3px;
}
.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
}

.footer .footer-top .footer-links ul i {
  color: black;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #013289;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #4154f1;
}
/* end footer */

@media (max-width: 700px) {
  .text-box h1 {
    font-size: 40px;
  }
  .nav-links ul li {
    display: block;
  }

  nav {
    padding: 1% 10%;
  }
  .nav-links {
    position: fixed;
    background: #40e0d0;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -300px;
    text-align: left;
    z-index: 9;
    transition: 1s;
  }
  nav .fa-solid {
    display: block;
    color: #40e0d0;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
    font-size: 30px;
  }
  nav img {
    width: 70px;
    transition: 0.6s ease-in-out;
  }
  .row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .row-produk {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .produk-col {
    margin-top: 20px;
  }

  .contact h1 {
    color: #fff;
    font-size: 20px;
    padding: 10px;
  }
}



/* ---------------------------------- */
.main {
  height: 100vh;
  width: 100%;
}
.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  overflow: hidden;
}
.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slide .image-data {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}
.image-data span.text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.image-data h2 {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}
a.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  color: #333;
  background: #fff;
  text-decoration: none;
  margin-top: 25px;
  transition: all 0.3s ease;
}
a.button:hover {
  color: #fff;
  background-color: #40e0d0;
}

/* swiper button css */
.nav-btn {
  height: 50px;
  width: 50px;
  padding: 30px;
  font-size: 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
}
.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}
/* .swiper-button-next {
  right: 30px !important;
}
.swiper-button-prev {
  left: 30px !important;
} */
.nav-btn::before,
.nav-btn::after {
  font-size: 60px;
  color: #fff;
}
.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}
.swiper-pagination-bullet-active {
  background-color: #40e0d0;
}

@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
}
