.home-section-2 {
  padding: 80px 0 0;
  box-sizing: border-box;
}
.home-section-2 h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -1px;
  background: linear-gradient(91.24deg, #002236 1.06%, #8198A5 100.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 5px 0 30px;
}
.home-section-2 .product {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 400px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 16px 32px -8px rgba(0, 34, 54, 0.4);
  box-sizing: border-box;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.home-section-2 .product:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 34, 54, 0) 43.49%, #002236 100%);
  border-radius: 8px;
  z-index: 1;
}
.home-section-2 .product:hover {
  transform: scale(1.01);
}
.home-section-2 .product img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.home-section-2 .product .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}
.home-section-2 .product .content a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.home-section-2 .product .content a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.home-section-2 .product .content h3 {
  color: var(--color-3);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
.home-section-2 .product .content .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  background-color: rgba(217, 227, 234, 0.3019607843);
  border-radius: 60px;
}
.home-section-2 .product .content .icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-3);
}

.home-section-3 {
  padding: 80px 0 0;
  box-sizing: border-box;
}
.home-section-3 div.col-12.col-xl-6.order-2 {
  height: 100dvh;
}
.home-section-3 div.col-12 {
  max-height: 550px;
}
.home-section-3 .infos {
  padding: 80px calc(var(--bs-gutter-x) * 0.5);
}
.home-section-3 .infos h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -1px;
  background: linear-gradient(91.24deg, #002236 1.06%, #8198A5 100.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 5px 0 15px;
  text-wrap-style: pretty;
}
.home-section-3 .infos div {
  max-height: 300px;
  padding-right: 15px;
  overflow-x: auto;
}
.home-section-3 .infos div::-webkit-scrollbar {
  width: 5px;
}
.home-section-3 .infos div::-webkit-scrollbar-track {
  background: var(--color-4);
}
.home-section-3 .infos div::-webkit-scrollbar-thumb {
  background: var(--color-1);
}
.home-section-3 .infos div::-webkit-scrollbar-thumb:hover {
  background: var(--color-1);
}
.home-section-3 .infos div p {
  color: var(--color-1);
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 15px;
}
.home-section-3 .infos div p:last-child {
  margin-bottom: 0;
}
.home-section-3 .video-container {
  position: relative;
  width: auto;
  height: 100%;
  border-radius: 8px;
  border: 2px solid var(--light);
  overflow: hidden;
  box-shadow: 0px 16px 32px -8px rgba(0, 34, 54, 0.2);
}
.home-section-3 .video-container:hover .video-cover {
  transform: scale(1.1);
}
.home-section-3 .video-container:hover .play-button svg ellipse {
  fill: var(--color-2);
}
.home-section-3 .video-container:hover .play-button svg path {
  fill: var(--light);
}
.home-section-3 .video-container .video-cover {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.2s ease-out;
  object-fit: cover;
}
.home-section-3 .video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.2s ease-out;
}
.home-section-3 .video-container .video-iframe {
  display: none;
  width: 100%;
  height: 100%;
}
.home-section-3 img.img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 16px 32px -8px rgba(0, 34, 54, 0.2);
}

.home-section-4 {
  padding: 80px 0;
  box-sizing: border-box;
}
.home-section-4 h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -1px;
  background: linear-gradient(91.24deg, #002236 1.06%, #8198A5 100.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 5px 0 0;
  text-wrap-style: balance;
}
.home-section-4 p {
  color: var(--color-1);
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 15px;
}
.home-section-4 p:last-child {
  margin-bottom: 0;
}

.home-section-5 {
  padding: 0 0 80px;
  box-sizing: border-box;
}
.home-section-5 h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -1px;
  background: linear-gradient(91.24deg, #002236 1.06%, #8198A5 100.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 5px 0 0;
  text-wrap-style: balance;
}
.home-section-5 .infos {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: flex-end;
}
.home-section-5 .infos .address {
  display: flex;
  gap: 10px;
  align-items: center;
}
.home-section-5 .infos .address .icon {
  color: var(--color-2);
}
.home-section-5 .infos .address .icon svg {
  width: 25px;
  height: 25px;
}
.home-section-5 .infos .address p {
  color: var(--color-1);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 0;
}
.home-section-5 .infos .address p:last-child {
  font-weight: 600;
}
.home-section-5 .map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 8px;
  box-shadow: 0px 16px 32px -8px rgba(0, 34, 54, 0.2);
}

@media screen and (max-width: 768px) {
  .home-section-2 {
    padding: 50px 0 0;
  }
  .home-section-2 h2 {
    font-size: 28px;
    text-wrap-style: pretty;
    margin: 5px 0 20px;
  }
  .home-section-2 div[class^=row] {
    gap: 15px;
  }
  .home-section-2 .product {
    height: 300px;
  }
  .home-section-2 .product .content h3 {
    font-size: 22px;
  }
  .home-section-3 {
    padding: 50px 0 0;
  }
  .home-section-3 div.col-12.col-xl-6.order-2 {
    height: auto;
  }
  .home-section-3 div.col-12 {
    max-height: inherit;
  }
  .home-section-3 .infos {
    padding: 0 calc(var(--bs-gutter-x) * 0.5);
  }
  .home-section-3 .infos h2 {
    font-size: 28px;
    text-wrap-style: pretty;
    margin: 5px 0 10px;
  }
  .home-section-3 .infos div {
    margin-bottom: 15px;
  }
  .home-section-3 .infos div p {
    font-size: 16px;
  }
  .home-section-4 {
    padding: 50px 0;
  }
  .home-section-4 h2 {
    font-size: 28px;
    text-wrap-style: pretty;
    margin: 5px 0 10px;
  }
  .home-section-4 p {
    font-size: 16px;
  }
  .home-section-5 {
    padding: 0 0 50px;
  }
  .home-section-5 h2 {
    font-size: 28px;
    text-wrap-style: pretty;
  }
  .home-section-5 .infos {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
  }
  .home-section-5 .infos .address p {
    font-size: 16px;
  }
}