.home-banner {
  position: relative;
}
.home-banner-text {
  width: 50.0730994152%;
  position: absolute;
  left: 48px;
  bottom: 36px;
  color: #e3e3e3;
}
.home-banner-button {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  font-family: "Unbounded", sans-serif;
}
.home-banner-button-wrap {
  position: absolute;
  background: #0d0d0d;
  width: 483px;
  height: 294px;
  right: -1px;
  bottom: -1px;
}
.home-banner-button-text {
  color: #525252;
  position: absolute;
  top: 22px;
  left: 40px;
  z-index: 1;
  letter-spacing: -0.5px;
}
.home-banner-button-block {
  background-color: #c7e954;
  border-radius: 15px;
  width: 443px;
  height: 255px;
  padding: 16px;
  overflow: hidden;
  font-family: sans-serif;
  color: #000;
  display: block;
}
.home-banner-button-image {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 361px;
  height: 158px;
  overflow: hidden;
  display: block;
}
.home-banner-button-title {
  font-size: 1.25rem;
  color: #111111;
  line-height: 1.3;
  position: absolute;
  bottom: 35px;
  left: 40px;
  width: 155px;
}
.home-banner-button-arrow {
  width: 84px;
  height: 40px;
  display: block;
  background: #39494c;
  border-radius: 15px;
  position: absolute;
  top: 0;
  right: 0;
}
.home-banner-button-arrow-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -9px 0 0 -10px;
}

.home-banner-button:hover {
  cursor: pointer;
}
.home-banner-button:hover .home-banner-button-img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.home-banner-button:hover .home-banner-button-arrow-svg {
  animation: bounce 0.8s infinite;
}

.video {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 0 0 30px;
}
.video-tag {
  font-family: "Unbounded", sans-serif;
  width: 182px;
  height: 40px;
  background: #39494c;
  font-weight: 300;
  letter-spacing: -0.03em;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  color: #fafafa;
}
.video-tag-wrap {
  overflow: hidden;
  position: absolute;
  top: -1px;
  left: 0;
  width: 212px;
  height: 71px;
  background: #0d0d0d;
  z-index: 2;
}
.video-title {
  font-family: "Unbounded", sans-serif;
  color: #c7e954;
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  width: 33%;
  position: relative;
  top: -10px;
  padding: 0 20px 0 0;
}
.video-image-wrap {
  width: 66%;
  position: relative;
  max-width: 905px;
  max-height: 396px;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
}
.video-image-wrap:hover .video-image-img {
  transform: scale(1.1);
  transition: 0.3s;
  cursor: pointer;
}
.video-image-wrap:hover .video-play {
  transition: 0.3s;
  fill: #c7e954;
  cursor: pointer;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -25px;
}

.faq-items {
  padding: 0 0 0 17%;
  width: 100%;
}
.faq-item {
  margin: 0 0 20px;
}
.faq-question {
  background: #39494c;
  border-radius: 10px;
  min-height: 97px;
  padding: 20px;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  color: #fafafa;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.25rem;
}
.faq-question-open {
  width: 70px;
  height: 31px;
  border: 1px solid #c7e954;
  background: #0d0d0d;
  border-radius: 10px;
  text-align: center;
  line-height: 30px;
  display: block;
  position: absolute;
  top: 0;
  right: 1px;
}
.faq-question-open:after, .faq-question-open:before {
  content: "";
  width: 1px;
  height: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #c7e954;
}
.faq-question-open:after {
  height: 1px;
  width: 13px;
  margin-left: -6px;
}
.faq-question-open:before {
  width: 1px;
  height: 13px;
  margin-top: -6px;
}
.faq-question-open-wrap {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 90px;
  height: 50px;
  background: #0d0d0d;
}
.faq-question-open:hover {
  background: #c7e954;
  cursor: pointer;
  transition: 0.3s;
}
.faq-question-open:hover:after, .faq-question-open:hover:before {
  background: #0d0d0d;
}
.faq-question-open.is-active:before {
  display: none;
}
.faq-answer {
  display: none;
  padding: 60px 40px;
  background: #252525;
  font-size: 1.25rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #8c8c8c;
  border-radius: 10px;
}
.faq-answer.is-active {
  display: block;
}
.faq-answer > ul {
  list-style: disc;
  padding: 0 0 0 20px;
}

@media (max-width: 1280px) {
  .video-title {
    font-size: 2rem;
  }
}
@media (max-width: 1024px) {
  .home-h1 {
    width: calc(100% - 147px);
    bottom: 125px;
    left: 16px;
    font-size: 28px;
    line-height: 40px;
  }
  .home-banner {
    height: 150vw;
  }
  .home-banner-image {
    display: block;
  }
  .home-banner-image-img {
    border-radius: 0;
    width: 100vw;
    height: 150vw;
  }
  .home-banner-button {
    height: 100%;
    width: 100%;
  }
  .home-banner-button-block {
    clip-path: none !important;
    width: 28vw;
    height: 25vw;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 10px;
  }
  .home-banner-button-wrap {
    clip-path: none !important;
    background: transparent;
    width: 28vw;
    height: 25vw;
    right: 16px;
    bottom: 64px;
  }
  .home-banner-button-title {
    padding: 33px 7px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 3.2vw;
  }
  .home-banner-button-arrow {
    width: 17px;
    height: 13px;
    top: 6px;
    right: 6px;
  }
  .home-banner-button-arrow-svg {
    margin: -4px 0 0 -4px;
    width: 8px;
    height: auto;
  }
  .home-banner-text {
    left: 15px;
    bottom: 50px;
    width: 59vw;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: "TT Firs Neue", sans-serif;
    line-height: 1.1;
  }
  .video {
    flex-direction: column;
    margin: 0 0 24px;
  }
  .video-title {
    font-size: 1.125rem;
    width: 100%;
    order: 1;
    top: 0;
  }
  .video-tag {
    font-size: 0.625rem;
    width: 95px;
    height: 20px;
    padding: 4px 10px;
  }
  .video-tag-wrap {
    clip-path: url(#video-clip-m) !important;
  }
  .video-image-wrap {
    width: 100%;
    order: 2;
    border-radius: 0 20px 20px 20px;
    max-height: calc(100vw - 32px);
  }
  .video-image-img {
    height: calc(100vw - 32px);
  }
  .video-play {
    width: 22px;
    height: 25px;
    margin: -12px 0 0 -11px;
  }
  .video-slider {
    display: flex;
    flex-direction: column;
  }
  .video-slider .glide__track {
    padding: 0;
  }
  .faq-items {
    margin: 20px 0 0;
    padding: 0;
  }
  .faq-item {
    margin: 0 0 7px;
  }
  .faq-question {
    font-size: 0.75rem;
    padding: 13px 49px 14px 23px;
    min-height: 59px;
    line-height: 1.3;
  }
  .faq-question-open {
    width: 38px;
    height: 19px;
    border-radius: 4px;
  }
  .faq-question-open:before {
    height: 9px;
    margin-top: -4px;
  }
  .faq-question-open:after {
    width: 9px;
    margin-left: -4px;
  }
  .faq-question-open-wrap {
    width: 50px;
    height: 30px;
    clip-path: url(#faq-clip-m) !important;
  }
  .faq-answer {
    font-size: 0.75rem;
    line-height: 1.3;
    border-radius: 7px;
    padding: 8px;
    color: #e8e8e8;
    background: #525252;
    margin: 2px 0 0 0;
  }
}
@media (min-width: 471px) and (max-width: 1024px) {
  .home-h1 {
    width: calc(100% - 23vw - 48px);
    font-size: 7vw;
    line-height: 10vw;
  }
  .home-banner-button-wrap {
    width: 23vw;
    height: 23vw;
  }
  .home-banner-button-block {
    width: 23vw;
    height: 23vw;
  }
  .why-us-item {
    width: auto;
    min-height: auto;
  }
  .why-us-item-wrap {
    padding: 7vw 2vw 2vw;
    margin: 0 15vw;
  }
  .why-us-item-wrap:hover .why-us-item-bg, .why-us-item-wrap .why-us-item-bg {
    width: calc(100% - 4vw);
  }
}
@media (max-width: 320px) {
  h1,
  .h1 {
    bottom: 117px;
  }
  .home-banner-text {
    bottom: 30px;
  }
}
/*# sourceMappingURL=home.css.map */
