.hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1200ms ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-bg,
.hero-slide-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-section .burger-line {
  background-color: var(--main-text-color);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 41, 44, 0.5);
}

.hero-slide-overlay.is-clear {
  background: none;
}

.hero-title-wrap {
  position: absolute;
  top: 18vh;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: clamp(72px, 7.5vw, 120px);
  font-family: "Buduj Regular-Height", sans-serif;
  color: rgba(241, 196, 0, 1);
  text-transform: uppercase;
  letter-spacing: -6px;
}

.hero-subtitle {
  font-size: clamp(56px, 6.5vw, 100px);
  font-family: "Futura Bold", sans-serif;
  color: transparent;
  text-transform: uppercase;
  margin-top: -20px;
  background-color: #fff;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 59.13%,
    rgba(42, 61, 68, 0.5) 89.42%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-content {
  position: absolute;
  bottom: 20vh;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-buttons {
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.hero-btn {
  padding: 15px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Buduj Bold", sans-serif;
  box-shadow: 0 2px 8px #222;
  text-align: center;
}

.hero-btn-primary {
  background-color: var(--bright-accent-color);
  color: var(--main-text-color);
  border: 2px solid var(--bright-accent-color);
}

.hero-btn-outline {
  color: var(--tertiary-color);
  border: 2px solid var(--tertiary-color);
  background-color: rgba(0, 0, 0, 0.25);
}

.values-section {
  width: 100%;
  background-color: var(--alt-main-color);
  padding: 60px 14vw;
}

.values-title,
.values-subtitle {
  font-size: 120px;
  color: var(--tertiary-color);
  text-transform: uppercase;
  font-family: "Buduj Bold-Height", sans-serif;
  text-align: center;
}

.values-subtitle {
  font-size: 80px;
  color: var(--bright-accent-color);
}

.values-row {
  display: flex;
  gap: 60px;
  margin-top: 70px;
}

.values-col-left {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.values-col-right {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.values-image-main {
  width: 100%;
  height: auto;
}

.values-text {
  color: #fff;
  font-family: "Futura Medium", sans-serif;
  font-size: 20px;
  text-align: justify;
  margin: 5px 0;
}

.values-text:first-child {
  margin-top: 0;
}

.values-text strong {
  font-family: "Futura Bold", sans-serif;
}

.values-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 20px;
}

.values-images img {
  width: 100%;
  object-fit: cover;
}

.path-section {
  width: 100vw;
  height: 100vh;
  display: flex;
  gap: 20px;
}

.path-title-wrap {
  width: 12vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.path-title {
  font-size: 10.2vh;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--secondary-color);
  font-family: "Buduj Bold-Height", sans-serif;
}

.path-map-wrap {
  width: calc(3 * 100vh / 4);
  position: relative;
}

.path-map-img,
.path-map-overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-map-overlay {
  position: absolute;
  inset: 0;
  transition: background 0.2s ease-in-out;
}

.path-point {
  width: 120px;
  height: 120px;
  position: absolute;
  z-index: 2;
}

.path-list-wrap {
  width: calc(100% - (3 * 100vh / 4) - 12vw - 40px);
}

.path-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  padding: 20px;
  padding-right: 30px;
  overflow-y: scroll;
  overflow-x: hidden;
  list-style: none;
  direction: rtl;
  scroll-behavior: smooth;
}

.path-list li {
  text-align: left;
  animation: pathFadeIn 0.7s ease;
}

.path-list li:first-child {
  margin-top: auto;
}

.path-list::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
}

.path-list::-webkit-scrollbar {
  width: 6px;
}

.path-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--main-text-color);
}

.path-list-title {
  font-size: 44px;
  font-family: "Buduj Bold", sans-serif;
  text-transform: uppercase;
  color: var(--main-text-color);
}

.path-list-text {
  font-size: 20px;
  font-family: "Futura Bold", sans-serif;
  color: var(--secondary-color);
}

.path-map-finger {
  position: absolute;
  z-index: 1;
  width: 14%;
  top: 88.6%;
  left: 61.1%;
  transition: opacity 0.2s;
}

.path-map-finger.hide {
  opacity: 0;
}

.poklyk-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px 0;
}

.poklyk-title {
  font-size: 120px;
  font-family: "Buduj Black-Height", sans-serif;
  text-transform: uppercase;
  color: var(--alt-main-color);
  letter-spacing: -6px;
}

.poklyk-title span {
  font-size: 100px;
  color: var(--secondary-color);
}

.numbers-list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0 20px;
}

.numbers-item {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.numbers-value {
  font-size: 64px;
  color: var(--alt-main-color);
  font-family: "Buduj Bold", sans-serif;
  text-align: center;
}

.numbers-desc,
.numbers-bottom {
  font-size: 26px;
  color: var(--alt-main-color);
  font-family: "Futura Bold", sans-serif;
  text-align: center;
  text-transform: uppercase;
  line-height: 35px;
}

.numbers-bottom {
  text-transform: none;
  margin-top: 20px;
}

.feedbacks-wrap {
  background-color: var(--alt-main-color);
  padding: 40px;
}

.feedbacks-grid {
  display: flex;
  gap: 20px;
  height: 90vh;
}

.feedbacks-left {
  width: 60%;
  background-image: url("../../img/feedbacks/bg.webp");
  background-size: cover;
  background-position: right;
  transform: scaleX(-1);
  border-radius: 30px;
  position: relative;
}

.feedbacks-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../img/feedbacks/bg-layer.png");
  background-size: cover;
  background-position: right;
}

.feedbacks-title-box {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
  transform: scaleX(-1);
  background-color: var(--alt-main-color);
  border-radius: 0 0 30px 0;
  padding: 20px;
  box-shadow: inset -3px -3px 5px rgba(0, 0, 0, 0.2);
}

.feedbacks-title {
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: var(--dark-accent-color);
  font-family: "Buduj Black", sans-serif;
}

.feedbacks-title span {
  display: block;
  color: var(--tertiary-color);
  font-size: 40px;
  line-height: 30px;
}

.feedbacks-right {
  width: 40%;
  position: relative;
  overflow: hidden;
}

.feedbacks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 110%;
}

.feedback-item {
  background-color: var(--secondary-color);
  border-radius: 30px;
  padding: 20px 30px;
}

.feedback-text {
  color: #fff;
  font-family: "Futura Bold", sans-serif;
}

.feedback-person {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.feedback-avatar {
  width: 48px;
  height: 48px;
}

.feedback-name {
  color: #fff;
  font-size: 18px;
  font-family: "Buduj Black-Height", sans-serif;
}

.feedback-role {
  color: var(--tertiary-color);
  font-size: 15px;
  font-family: "Buduj Bold", sans-serif;
}

.feedback-gradient {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 200px;
  width: 100%;
  background: linear-gradient(
    0deg,
    rgba(42, 61, 68, 1) 40%,
    rgba(42, 61, 68, 0.95) 50%,
    rgba(42, 61, 68, 0.8) 60%,
    rgba(255, 230, 0, 0) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-link {
  color: var(--tertiary-color);
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Buduj Black-Height", sans-serif;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
}

.feedback-link svg {
  width: 60px;
  height: 60px;
}

@keyframes pathFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 1680px) {
  .values-title {
    font-size: 100px;
  }

  .values-subtitle {
    font-size: 60px;
  }
}

@media screen and (max-width: 1440px) {
  .values-title {
    font-size: 90px;
  }

  .values-subtitle {
    font-size: 50px;
  }

  .values-text {
    font-size: 18px;
  }

  .path-list {
    gap: 20px 0;
  }

  .path-list-title {
    font-size: 36px;
  }

  .path-list-text {
    font-size: 18px;
    text-align: justify;
  }
}

@media screen and (max-width: 1280px) {
  .values-title {
    font-size: 80px;
  }

  .values-subtitle {
    font-size: 40px;
  }

  .values-section {
    padding: 60px 8vw;
  }

  .feedback-text {
    font-family: "Futura Heavy", sans-serif;
  }

  .feedback-link {
    font-size: 20px;
  }

  .feedback-link svg {
    width: 40px;
    height: 40px;
  }

  .feedbacks-left,
  .feedbacks-right {
    width: 50%;
  }

  .feedbacks-title {
    font-size: 50px;
    line-height: 50px;
  }

  .feedbacks-title span {
    font-size: 30px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1160px) {
  .path-section {
    display: none;
  }
  .feedbacks-wrap {
    padding: 20px;
  }
  .feedbacks-grid {
    flex-direction: column;
    height: auto;
  }
  .feedbacks-left,
  .feedbacks-right {
    width: 100%;
  }
  .feedbacks-left {
    min-height: 240px;
  }
  .feedbacks-title {
    font-size: 40px;
    line-height: 40px;
  }
  .feedbacks-title span {
    font-size: 30px;
    line-height: 10px;
  }
  .feedbacks-left,
  .feedbacks-left::after {
    background-position-x: center;
  }
}

@media screen and (max-width: 868px) {
  .hero-buttons {
    width: 95%;
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-btn {
    padding: 10px 30px;
    font-size: 18px;
  }
  .values-section {
    padding: 40px 30px;
  }
  .values-row {
    margin-top: 40px;
  }
  .values-col-left {
    display: none;
  }
  .values-col-right {
    width: 100%;
  }
  .values-title {
    font-size: 60px;
  }
  .values-subtitle {
    font-size: 30px;
  }
  .poklyk-title {
    font-size: 55px;
    letter-spacing: -2px;
  }
  .poklyk-title span {
    font-size: 40px;
  }
  .numbers-list {
    gap: 10px;
  }
  .numbers-value {
    font-size: 38px;
  }
  .numbers-desc,
  .numbers-bottom {
    font-size: 18px;
    line-height: 28px;
  }
}

@media screen and (max-width: 650px) {
  .hero-title {
    font-size: clamp(42px, 9vw, 70px);
  }
  .hero-subtitle {
    font-size: clamp(28px, 7vw, 50px);
    margin-top: -10px;
  }
  .numbers-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .numbers-item {
    max-width: calc(50% - 10px);
  }
  .feedbacks-wrap {
    padding: 20px;
  }
  .feedbacks-title {
    font-size: 40px;
    line-height: 40px;
  }
  .feedbacks-title span {
    font-size: 30px;
    line-height: 20px;
  }
  .feedback-link {
    font-size: 20px;
  }
}

@media screen and (max-width: 500px) {
  .hero-title {
    font-size: clamp(36px, 11vw, 60px);
    letter-spacing: -2px;
  }

  .hero-subtitle {
    font-size: clamp(24px, 8.5vw, 40px);
    margin-top: 0;
  }
}

@media screen and (max-width: 425px) {
  .hero-title {
    font-size: clamp(30px, 12vw, 50px);
  }

  .hero-subtitle {
    font-size: clamp(20px, 8.5vw, 30px);
    margin-top: 0;
  }
}

@media screen and (max-width: 2560px) {
  .hero-slide-bg,
  .hero-slide-layer {
    object-position: center -25vh;
  }
}

@media screen and (max-width: 1920px) {
  .hero-slide-bg,
  .hero-slide-layer {
    object-position: center -8vh;
  }
}

@media screen and (max-width: 1680px) {
  .hero-slide-bg,
  .hero-slide-layer {
    object-position: top;
  }
}

@media screen and (max-width: 768px) {
  .feedbacks-left,
  .feedbacks-left::after {
    background: none;
    transform: none;
  }

  .feedbacks-title-box {
    transform: none;
    width: 100%;
    position: static;
    box-shadow: none;
  }

  .feedbacks-title {
    font-size: 60px;
    line-height: 60px;
    text-align: center;
  }

  .feedbacks-title span {
    font-size: 40px;
    line-height: normal;
  }

  .feedback-gradient {
    height: 250px;
  }
}

@media screen and (max-width: 425px) {
  .feedback-item {
    padding: 10px 20px;
  }

  .feedback-text {
    text-align: justify;
    font-family: "Futura Demi", sans-serif;
  }

  .feedback-role {
    font-size: 14px;
  }
}
