:root {
  --h-geo-section-max-width: 1360px;
}

.home_geo {
  display: flex;
  width: 100%;
  justify-content: center;
  background: #A1C854;
}

.home_geo_sz {
  display: flex;
  width: calc(100% - 20px);
  max-width: var(--h-geo-section-max-width);
  padding: 70px 0;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
}

.home_geo_left {
  display: flex;
  width: 45%;
  flex-direction: column;
  justify-content: center;
}

.home_geo_title {
  color: #004D33;
  font-family: 'Industry_Black', sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  padding-top: 20px;
  max-width: 500px;
  position: relative;
}

.home_geo_title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #FFFFFF;
  border-radius: 2px;
}

.home_geo_texte {
  color: #FFFFFF;
  font-family: 'Noto_Regular', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  margin-top: 20px;
  max-width: 500px;
}

.home_geo_right {
  position: relative;
  width: 55%;
  height: 450px;
  border-radius: 40px;
  overflow: hidden;
}

.home_geo_right_back {
  width: 100%;
  height: 100%;
}

.home_geo_right_back video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_geo_right_front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.home_geo_right_front_player {
  display: flex;
  width: 82px;
  height: 82px;
  justify-content: center;
  align-items: center;
  background: #FF7A00;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.home_geo_right_front_player:hover {
  transform: scale(1.05);
}

.home_geo_right_front_player svg {
  width: 20px;
  height: auto;
  fill: #FFFFFF;
  margin-left: 4px;
}

.home_geo_right.open .home_geo_right_front {
  display: none;
}

/* Version responsive */
@media (max-width: 1024px) {
  .home_geo_sz {
    flex-direction: column;
    gap: 40px;
    padding: 80px 0;
  }

  .home_geo_left,
  .home_geo_right {
    width: 100%;
    max-width: 600px;
  }

  .home_geo_title,
  .home_geo_texte {
    text-align: center;
    max-width: none;
  }

  .home_geo_title::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .home_geo_sz {
    padding: 60px 0;
  }

  .home_geo_right {
    height: 350px;
    border-radius: 40px;
  }

  .home_geo_title {
    font-size: 32px;
  }

  .home_geo_texte {
    font-size: 18px;
  }
}
