@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400&display=swap");
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

video {
  max-width: 100%;
  max-height: 100%;
}

.title {
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.banner .hero-section {
  display: flex;
  padding-bottom: 3rem;
}
.banner .hero-section .left-hero-section {
  flex: 1;
  padding: 5rem;
}
.banner .hero-section .left-hero-section .changable-text .change-text-info {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: #1f1f1f;
  text-transform: uppercase;
  letter-spacing: 5px;
  word-spacing: 8px;
  line-height: 45px;
  position: relative;
}
@media (max-width: 700px) {
  .banner .hero-section .left-hero-section .changable-text .change-text-info {
    font-size: 1.5rem;
    letter-spacing: 1px;
    word-spacing: 4px;
    line-height: 30px;
  }
}
.banner .hero-section .left-hero-section .fixed-text {
  font-size: 14px;
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  letter-spacing: 4px;
  margin-top: 1.4rem;
  padding-right: 5rem;
  line-height: 1.3rem;
  text-transform: uppercase;
}
.banner .hero-section .left-hero-section .fixed-text.below {
  letter-spacing: 2px;
}
.banner .hero-section .right-hero-section {
  flex: 1;
  position: relative;
}
.banner .hero-section .right-hero-section .hero-image-container {
  overflow: hidden;
  width: 400px;
  height: 400px;
  border-radius: 50%;
}
@media (max-width: 900px) {
  .banner .hero-section .right-hero-section .hero-image-container {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 700px) {
  .banner .hero-section .right-hero-section .hero-image-container {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 500px) {
  .banner .hero-section .right-hero-section .hero-image-container {
    width: 300px;
    height: 300px;
  }
}
.banner .hero-section .right-hero-section .hero-image-container .hero-rotate-container .hero-person-details {
  font-family: "Nunito", sans-serif;
  color: #fff;
  position: relative;
}
.banner .hero-section .right-hero-section .hero-image-container .hero-rotate-container .hero-person-details .hero-absolute-text {
  display: none;
  position: absolute;
  right: 20px;
  top: calc(50% + 16px);
  transform: translateY(-50%);
}
.banner .hero-section .right-hero-section .hero-image-container .hero-rotate-container .hero-person-details .hero-absolute-text .her-title {
  font-weight: 500;
  font-size: 15px;
}
.banner .hero-section .right-hero-section .hero-image-container .hero-rotate-container .hero-person-details .hero-absolute-text .hero-subtitle {
  font-size: 13px;
}
.banner .hero-section .right-hero-section .hero-image-container .hero-rotate-container .hero-person-details .hero-images {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 900px) {
  .banner .hero-section {
    flex-direction: column;
  }
  .banner .hero-section .left-hero-section {
    order: 2;
    padding: 2rem;
  }
  .banner .hero-section .right-hero-section {
    order: 1;
    display: grid;
    place-items: center;
  }
}

.product-details-sec {
  margin: 2rem 0;
  padding: 0 2rem;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.product-details-sec .product-video {
  text-align: center;
}
.product-details-sec .product-video .video {
  max-width: 500px;
}
.product-details-sec .product-video h2 {
  text-align: center;
  margin-top: 10px;
}
.product-details-sec .product-img {
  text-align: center;
}
.product-details-sec .product-img img {
  width: 300px;
}
.product-details-sec .product-text {
  margin-left: 20px;
}
.product-details-sec .product-text h2 {
  margin-bottom: 10px;
}
.product-details-sec .product-text li {
  font-size: 16.5px;
  font-family: "Nunito", sans-serif;
  line-height: 1.5;
  margin-bottom: 10px;
}
.product-details-sec .product-text a {
  background-color: #11a3c4;
  font-family: "Nunito", sans-serif;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .product-details-sec {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
  .product-details-sec .product-video {
    text-align: center;
  }
  .product-details-sec .product-video .video {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .product-details-sec {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .product-details-sec .product-img img {
    width: 200px;
  }
}

.usecase-sec {
  margin-top: 5rem;
  padding: 0 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .usecase-sec {
    padding: 0 2rem;
  }
}
.usecase-sec .title {
  text-align: center;
  margin-bottom: 10px;
}
.usecase-sec .sub-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
}
.usecase-sec .card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
  justify-content: center;
}
.usecase-sec .card-container .usecase-card {
  background-color: rgba(230, 240, 237, 0.1);
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1), -2px -2px 10px rgba(0, 0, 0, 0.1);
}
.usecase-sec .card-container .usecase-card .usecase-video {
  width: 100%;
  height: auto;
}
.usecase-sec .card-container .usecase-card .card-img {
  width: auto;
  max-width: 100%;
  height: 200px;
  display: block;
  margin: 0 auto 20px;
}
.usecase-sec .card-container .usecase-card .card-title {
  font-family: "Montserrat", sans-serif;
  padding: 0 20px;
  font-size: 1.3rem;
  margin: 10px 0;
  font-weight: bolder;
}
.usecase-sec .card-container .usecase-card .card-text {
  padding: 0 20px 20px;
  font-size: 16.5px;
  font-family: "Nunito", sans-serif;
  line-height: 1.3;
  list-style-type: none;
}
.usecase-sec .card-container .usecase-card .card-text li {
  margin-top: 15px;
}
.usecase-sec .card-container .usecase-card .card-text li h4 {
  font-size: 1rem;
  font-weight: bolder;
}
@media screen and (max-width: 1180px) {
  .usecase-sec .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .usecase-sec .card-container {
    grid-template-columns: 1fr;
  }
  .usecase-sec .title {
    font-size: 1.2rem;
  }
}

.other-products {
  margin: 100px 0 30px;
  padding: 0 3rem;
  text-align: center;
}
.other-products .info-container {
  margin-top: 40px;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.other-products .info-container .info-box {
  width: 190px;
  padding: 1.3rem;
  transition: 0.3s;
  box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: filter(6px);
          backdrop-filter: filter(6px);
}
.other-products .info-container .info-box:hover {
  transition: 0.3s;
  box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}
.other-products .info-container .info-box .info-svg-container .info-box-icon {
  width: 40px;
  height: 40px;
  fill: #05c8da;
}
.other-products .info-container .info-box .main-info-container .info-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #000;
}
.other-products .info-container .info-box .main-info-container .info-details {
  font-family: "Nunito", sans-serif;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #6d6d6d;
}
.other-products .info-container .info-box .main-info-container .learn-more-container {
  display: flex;
  justify-content: center;
}
.other-products .info-container .info-box .main-info-container .learn-more-container .learn-more-txt {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #05c8da;
  display: flex;
  align-items: center;
}
.other-products .info-container .info-box .main-info-container .learn-more-container .learn-more-txt .learn-more-icon {
  margin-left: 5px;
  width: 20px;
  height: 20px;
  fill: #11a3c4;
}
@media screen and (max-width: 526px) {
  .other-products {
    padding: 0 1rem;
  }
  .other-products .info-container {
    margin-top: 40px;
    display: flex;
    gap: 1rem;
  }
  .other-products .info-container .info-box {
    width: 160px;
    padding: 1rem 0;
  }
}/*# sourceMappingURL=style.css.map */