/*!********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[3]!./src/blocks/video-tab/style.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************/
/*
@mixin fsz($size) {
    $fontOutput: calculateRem($size);
    font-size: $fontOutput + rem;
}
*/
.video-tab {
  position: relative;
  width: 100%;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .video-tab {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .video-tab {
    padding: 40px 0;
  }
}

.video-tab__title {
  font-size: var(--fs-48);
  font-family: var(--ff-secondary);
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  margin-bottom: 64px;
  color: rgb(var(--neutral-600));
}
@media screen and (max-width: 1024px) {
  .video-tab__title {
    font-size: var(--fs-40);
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .video-tab__title {
    font-size: var(--fs-32);
    margin-bottom: 30px;
  }
}

.video-tab__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .video-tab__nav {
    gap: 8px;
    margin-bottom: 20px;
  }
}

.video-tab__nav-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid rgb(var(--neutral-700));
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.02);
  color: rgb(var(--neutral-700));
  padding: 8px 24px;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-tab__nav-btn.is-active, .video-tab__nav-btn:hover {
  background: rgba(var(--success-500), 1);
  color: rgba(var(--neutral-000), 1);
  border-color: rgba(var(--success-500), 1);
}
@media screen and (max-width: 1024px) {
  .video-tab__nav-btn {
    padding: 6px 16px;
    font-size: 14px;
  }
}

.video-tab__row {
  display: grid;
  grid-template-columns: 1fr 495px;
  gap: 60px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .video-tab__row {
    gap: 30px;
    grid-template-columns: 400px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .video-tab__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.video-tab__col {
  position: relative;
}

.video-tab__col--video {
  position: relative;
}

.video-tab__video-wrap {
  position: relative;
  width: 100%;
  height: 395px;
  overflow: hidden;
  box-shadow: 0 20px 30px -10px rgba(var(--neutral-400), 1);
  background: rgb(var(--neutral-600));
}
@media screen and (max-width: 1024px) {
  .video-tab__video-wrap {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .video-tab__video-wrap {
    height: auto;
    aspect-ratio: 16/9;
  }
}

.video-tab__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
}
.video-tab__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.17) 0%, rgba(0, 0, 0, 0.17) 100%);
  z-index: 1;
  pointer-events: none;
}

.video-tab__video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-tab__video-html5 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-tab__play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgb(var(--neutral-000));
  transition: opacity 0.2s ease;
}
.video-tab__play-overlay:hover {
  opacity: 0.95;
  color: rgb(var(--neutral-000));
}

.video-tab__play-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--neutral-000), 1);
  transition: transform 0.2s ease;
}
.video-tab__play-overlay:hover .video-tab__play-icon {
  transform: scale(1.05);
  color: rgba(var(--brand-100), 1);
}
.video-tab__play-icon .icon {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 1024px) {
  .video-tab__play-icon {
    width: 64px;
    height: 64px;
  }
  .video-tab__play-icon .icon {
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 768px) {
  .video-tab__play-icon {
    width: 48px;
    height: 48px;
  }
  .video-tab__play-icon .icon {
    width: 48px;
    height: 48px;
  }
}

.video-tab__col--content {
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .video-tab__col--content {
    padding-top: 0;
  }
}

.video-tab__fancy {
  display: flex;
  align-items: center;
  gap: 49px;
}
.video-tab__fancy:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .video-tab__fancy {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .video-tab__fancy {
    gap: 20px;
  }
}

.video-tab__fancy-number {
  color: rgba(16, 16, 16, 0.17);
  font-size: 104px;
  font-weight: 700;
  line-height: normal;
  font-family: var(--ff-primary);
}
@media screen and (max-width: 1024px) {
  .video-tab__fancy-number {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .video-tab__fancy-number {
    font-size: 64px;
  }
}

.video-tab__fancy-info {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--success-500), 1);
  letter-spacing: 1.12px;
  line-height: 1.57;
  position: relative;
  z-index: 2;
}
.video-tab__fancy-info::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 72px;
  background: rgba(var(--success-500), 1);
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .video-tab__fancy-info::before {
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  .video-tab__fancy-info::before {
    width: 40px;
  }
}

.video-tab__description {
  padding-left: 20px;
  position: relative;
}
.video-tab__description::before {
  position: absolute;
  content: "";
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 1px;
  background: rgb(var(--neutral-1100));
}
.video-tab__description:not(:last-child) {
  margin-bottom: 48px;
}
@media screen and (max-width: 1024px) {
  .video-tab__description:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .video-tab__description:not(:last-child) {
    margin-bottom: 30px;
  }
}
.video-tab__description .entry-content {
  margin-bottom: 0;
  color: rgb(var(--neutral-600));
  font-size: var(--fs-16);
  line-height: 1.5;
  letter-spacing: -0.16px;
}
.video-tab__description .entry-content p:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=index.css.map*/