html {
  scroll-behavior: smooth;
}
/* Parallax Background */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.YoutubePlayer1{
  position: absolute;
  top: 600px;
  left: 1030px;
}
/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
  opacity: 1;
}

.fade-in-up {
  transform: translateY(50px);
}

.fade-in-up.visible {
  transform: translateY(0);
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-left.visible {
  transform: translateX(0);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in-right.visible {
  transform: translateX(0);
}

.zoom-in {
  transform: scale(0.8);
}

.zoom-in.visible {
  transform: scale(1);
}
/* Секція новин */
body{
  background-color: #0d0f23;
}
.news-section {
  padding: 80px 40px;
  background: linear-gradient(180deg, rgb(18.28, 26.43, 47.39) 0%, rgb(18.5, 42.29, 52.49) 100%);
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #24d9d9, transparent);
}

.news-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-section-title {
  font-family: "Goldman", Helvetica;
  font-size: 48px;
  color: #addeff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glow 3s ease-in-out infinite;
}

.news-section-subtitle {
  font-family: "Inter", Helvetica;
  font-size: 20px;
  color: #ffffff;
  opacity: 0.8;
}

/* Контейнер для новин */
#news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Картка новини */
.news-item {
  background: rgba(76, 57, 192, 0.1);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(36, 217, 217, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.news-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(36, 217, 217, 0.3);
}

.news-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-item:hover .news-image {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(36, 217, 217, 0.9);
  color: #121a2f;
  padding: 8px 15px;
  border-radius: 20px;
  font-family: "Inter", Helvetica;
  font-size: 14px;
  font-weight: 600;
}

.news-content {
  padding: 25px;
}

.news-title {
  font-family: "Goldman", Helvetica;
  font-size: 22px;
  color: rgba(52, 188, 161, 1);
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-description {
  font-family: "Inter", Helvetica;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0.9;
}

/* ============================================
 СЕКЦІЯ РОЗСИЛКИ
 ============================================ */

.newsletter-section {
  background: rgba(76, 57, 192, 0.2);
  padding: 60px 40px;
  border-radius: 30px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid rgba(36, 217, 217, 0.5);
}

.newsletter-title {
  font-family: "Goldman", Helvetica;
  font-size: 36px;
  color: #24d9d9;
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: glow 3s ease-in-out infinite;
}

.newsletter-description {
  font-family: "Inter", Helvetica;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 15px 25px;
  border-radius: 30px;
  border: 2px solid rgba(36, 217, 217, 0.5);
  background: rgba(18, 26, 47, 0.8);
  color: #ffffff;
  font-family: "Inter", Helvetica;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(36, 217, 217, 0.5);
}

.newsletter-form button {
  padding: 15px 40px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #24d9d9, #4c39c0);
  color: #ffffff;
  font-family: "Inter", Helvetica;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.newsletter-form button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.newsletter-form button:hover::before {
  width: 300px;
  height: 300px;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

.newsletter-social {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(36, 217, 217, 0.3);
}

.newsletter-social-title {
  font-family: "Inter", Helvetica;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(36, 217, 217, 0.1);
  border: 2px solid rgba(36, 217, 217, 0.5);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(36, 217, 217, 0.3);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(36, 217, 217, 0.3);
}

.social-link img {
  width: 24px;
  height: 24px;
}

/* Анімація свічення */
@keyframes glow {
  0%, 100% {
      text-shadow: 0 0 5px #24d9d9, 0 0 10px #24d9d9;
  }
  50% {
      text-shadow: 0 0 20px #24d9d9, 0 0 30px #24d9d9, 0 0 40px #24d9d9;
  }
}

/* ============================================
 АДАПТИВНІСТЬ
 ============================================ */

/* Планшети */
@media (max-width: 1024px) {
  .news-section-title {
      font-size: 36px;
  }
  
  #news-container {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
  }
  
  .newsletter-title {
      font-size: 28px;
  }
}

/* Мобільні */
@media (max-width: 768px) {
  .news-section {
      padding: 60px 20px;
  }
  
  .news-section-title {
      font-size: 28px;
  }
  
  .news-section-subtitle {
      font-size: 16px;
  }
  
  #news-container {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .newsletter-section {
      padding: 40px 20px;
  }
  
  .newsletter-title {
      font-size: 24px;
  }
  
  .newsletter-description {
      font-size: 16px;
  }
  
  .newsletter-form {
      flex-direction: column;
  }
  
  .newsletter-form input[type="email"],
  .newsletter-form button {
      width: 100%;
  }
}

/* Малі мобільні */
@media (max-width: 480px) {
  .news-section-title {
      font-size: 24px;
  }
  
  .news-title {
      font-size: 18px;
  }
  
  .news-description {
      font-size: 14px;
  }
}
  .newsletter-title {
      font-size: 20px;
  }
:hover.text-wrapper-10{
  text-shadow:  0 0 5px #00d0ff;
}
:hover.text-wrapper-11{
  text-shadow:  0 0 5px #00d0ff;
}
:hover.text-wrapper-12{
  text-shadow:  0 0 5px #00d0ff;
}
:hover.text-wrapper-13{
  text-shadow:  0 0 5px #00d0ff;
}
:hover.text-wrapper-15{
  text-shadow:  0 0 5px #00d0ff;
}

:hover.text-wrapper-17{
  text-shadow:  0 0 5px #00d0ff;
}
:hover.text-wrapper-4{
  text-shadow:  0 0 5px #00d0ff;
}
:hover.text-wrapper-3{
  text-shadow:  0 0 5px #00d0ff;
}
:hover.kh{
  color: #00e0ff;
}
:hover.kh1{
  color: #00e0ff;
}

.Intro{
  position: absolute;
  top: 0px;
  left: 0px;
}
.instagram-media{
  position: absolute;
  top: 650px;
  left: 0px;
}
.YoutubePlayer{
  position: absolute;
  top: 260px;
  left: 1030px;
}
.DivtextGame{
  position: absolute;
  width: 900px;
  top: 2520px;
  left: 80px;
  color: white;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 24px;
  
}
.Youtube{
  position: absolute;
  left: 1310px;
  right: 0px;
  top: 56px;
  width: 32px;
}
.TikTok{
  position: absolute;
  left: 1360px;
  right: 0px;
  top: 58px;
  width: 27px;
}
.kharkiv-city {
  background-color: #0d0f23;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 1905px;
}
.kharkiv-city .div {
  background-color: #0d0f23;
  overflow: hidden;
  width: 1905px;
  height: 3892px;
  position: relative;
}
.kharkiv-city .navbar {
  position: absolute;
  width: 1905px;
  height: 99px;
  top: 0;
  left: 0;
  background-color: #050111;
}

.kharkiv-city .overlap {
  position: absolute;
  width: 1905px;
  height: 580px;
  top: 99px;
  left: 0;
  background-size: cover;
  background-position: 50% 50%;
}

.kharkiv-city .text-wrapper {
  position: absolute;
  top: 272px;
  left: 302px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.kharkiv-city .frame {
  position: absolute;
  width: 462px;
  height: 305px;
  top: 87px;
  left: 700px;
}

.kharkiv-city .overlap-group {
  position: relative;
  width: 461px;
  height: 303px;
  top: 1px;
  left: 6px;
}

.kharkiv-city .KHARKIV {
  position: absolute;
  width: 461px;
  top: 0;
  left: 0;
  font-family: "Gotham Ultra-Regular", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 55px;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .span {
  color: #ffffff;
}

.kharkiv-city .text-wrapper-2 {
  color: rgba(52, 188, 161, 1);
}
.lang{
  position: absolute;
  width: 49px;
  height: 23px;
  color: #ffffff;
  background-color: #060e37;
  top: 61px;
  left: 1765px;
  font-size: 18px;
  border-radius: 3.5px;
}
.kharkiv-city .div-wrapper {
  position: absolute;
  width: 172px;
  height: 52px;
  top: 200px;
  left: 22px;
  background-image: url("/svg/rectangle-13.png");
  background-size: 100% 100%;
}
.overlap-99 {
  position: absolute;
  width: 67px;
  height: 18px;
  top: 90px;
  left: 1105px;
  transition: all 0.5s;
}
.kh{
  position: absolute;
  top: 195px;
  left: 1px;
  font-size: 18px;
  color: white;
}
.kharkiv-city .text-wrapper-3 {
  position: absolute;
  width: 138px;
  top: 12px;
  left: 15px;
  transition: all 0.5s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .frame-2 {
  position: absolute;
  width: 172px;
  height: 52px;
  top: 200px;
  left: 243px;
  background-image: url("/svg/rectangle-13.png");
  background-size: 100% 100%;
}

.kharkiv-city .text-wrapper-4 {
  position: absolute;
  width: 99px;
  top: 12px;
  left: 36px;
  transition: all 0.5s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .overlap-2 {
  position: absolute;
  width: 1502px;
  height: 929px;
  top: 679px;
  left: 0;
}

.kharkiv-city .rectangle {
  height: 400px;
  top: 529px;
  background-color: #13152a;
  position: absolute;
  width: 1905px;
  left: 0;
}

.kharkiv-city .frame-3 {
  position: absolute;
  width: 1905px;
  height: 398px;
  top: 531px;
  left: 0;
}

.kharkiv-city .MINIMUM-OS-windows {
  position: absolute;
  width: 646px;
  top: 89px;
  left: 82px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 22px;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .RECOMMENDED-OS {
  position: absolute;
  width: 651px;
  top: 35px;
  left: 1100px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 22px;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .OVERVIEW {
  position: absolute;
  width: 1500px;
  height: 577px;
  top: 0px;
  left: 0;
}

.kharkiv-city .overlap-3 {
  position: relative;
  height: 579px;
  width: 1989px;
  top: -2px;
  background-color: #181a2c;
}

.kharkiv-city .OVERVIEW-kharkivcity {
  position: absolute;
  width: 584px;
  top: 91px;
  left: 85px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 22px;
  text-align: justify;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .pay-games {
  position: absolute;
  width: 397px;
  height: 517px;
  top: 32px;
  left: 1100px;
}
.kharkiv-city .pay-games1 {
  position: absolute;
  width: 397px;
  height: 517px;
  top: 322px;
  left: 1100px;
}
.kharkiv-city .overlap-group-2 {
  position: relative;
  width: 377px;
  height: 507px;
  top: 3px;
  left: 8px;
  background-image: url("/svg/rectangle-198.png");
  background-size: cover;
  background-position: 50% 50%;
}

.kharkiv-city .overlap-4 {
  position: absolute;
  width: 369px;
  height: 52px;
  top: 393px;
  left: 4px;
  background: linear-gradient(180deg, rgba(36.77, 217.37, 217.37, 0.35) 26.91%, rgba(19.52, 115.37, 115.37, 0.35) 100%);
}

.kharkiv-city .overlap-5 {
  position: absolute;
  width: 165px;
  height: 52px;
  top: 0;
  left: 9px;
  background-image: url("/svg/rectangle-13.png");
  background-size: 100% 100%;
}

.kharkiv-city .text-wrapper-5 {
  position: absolute;
  width: 82px;
  top: 12px;
  left: 40px;
  transition: all 0.2s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.kharkiv-city .overlap-6 {
  position: absolute;
  width: 173px;
  height: 52px;
  top: 0;
  left: 192px;
  background-image: url("/svg/rectangle-13.png");
  background-size: 100% 100%;
}

.kharkiv-city .text-wrapper-6 {
  position: absolute;
  width: 165px;
  top: 12px;
  left: 8px;
  transition: all 0.2s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.kharkiv-city .text-wrapper-7 {
  position: absolute;
  width: 47px;
  top: 350px;
  left: 173px;
  font-family: "Geologica", Helvetica;
  font-weight: 900;
  color: #ffffff;
  font-size: 32px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.kharkiv-city .overlap-7 {
  position: absolute;
  width: 294px;
  height: 83px;
  top: 18px;
  left: 38px;
}

.kharkiv-city .kharkivv {
  position: absolute;
  width: 294px;
  height: 59px;
  top: 0;
  left: 0;
  object-fit: cover;
}

.kharkiv-city .element {
  position: absolute;
  width: 77px;
  top: 50px;
  left: 189px;
  font-family: "Gotham Ultra-Regular", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 24px;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .image {
  position: absolute;
  width: 157px;
  height: 39px;
  top: 348px;
  left: 5px;
  object-fit: cover;
}

.kharkiv-city .frame-wrapper {
  position: absolute;
  width: 1989px;
  height: 792px;
  top: 1608px;
  left: 0;
  background-color: #0d0f23;
}

.kharkiv-city .frame-4 {
  position: relative;
  height: 592px;
}

.kharkiv-city .INSOMING-GAMES {
  position: absolute;
  width: 667px;
  height: 1000px;
  top: 32px;
  left: 78px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 24px;
  text-align: justify;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .text-wrapper-8 {
  color: rgba(52, 188, 161, 1);
}

.kharkiv-city .overlap-8 {
  position: absolute;
  width: 640px;
  height: 386px;
  top: 30px;
  left: 1104px;
}

.kharkiv-city .text-wrapper-9 {
  position: absolute;
  width: 301px;
  top: 0;
  left: 0;
  font-family: "Goldman", Helvetica;
  font-weight: 400;
  color: rgba(52, 188, 161, 1);
  font-size: 32px;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .frame-5 {
  position: absolute;
  width: 640px;
  height: 383px;
  top: 3px;
  left: 0;
}

.screenshot {
  top: 70px;
  left: 7px;
  position: absolute;
  width: 252px;
  height: 118px;
  object-fit: cover;
  transition: all 0.2s;
}

.kharkiv-city .img {
  top: 70px;
  left: 388px;
  position: absolute;
  width: 252px;
  height: 118px;
  object-fit: cover;
  transition: all 0.2s;
}
.screenshot-2:hover{
  width: 270px;
  height: 130px;
}
.screenshot-3:hover{
  width: 270px;
  height: 130px;
}
.screenshot:hover{
  width: 270px;
  height: 130px;
}
.img:hover{
  width: 270px;
  height: 130px;
}
.screenshot-2 {
  top: 223px;
  left: 7px;
  position: absolute;
  width: 252px;
  height: 118px;
  transition: all 0.2s;
}

.screenshot-3 {
  top: 223px;
  left: 388px;
  position: absolute;
  width: 252px;
  height: 118px;
  transition: all 0.2s;
}

.kharkiv-city .rectangle-2 {
  height: 492px;
  top: 2400px;
  background-color: #0d0f23;
  position: absolute;
  width: 1905px;
  left: 0;
}

.kharkiv-city .INSOMING-GAMES-2 {
  position: absolute;
  width: 183px;
  top: 18px;
  left: 72px;
  font-family: "Gotham Ultra-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 32px;
  letter-spacing: 0;
  line-height: normal;
  color: transparent;
  background-image: url(https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExaGNxc2RuY2EzZjNyNnl5OTc0cWV2YTMzZnB4dDA3NnVuamYxdDZuYSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/dB66K4Kywc8gPVh6A7/giphy-downsized-large.gif);
  background-clip: text;
  
}

.text-wrapper-10 {
  position: absolute;
  width: 60px;
  top: 62px;
  left: 323px;
  transition: all 0.2s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #00c3ff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.kharkiv-city .text-wrapper-11 {
  position: absolute;
  width: 0px;
  top: 0;
  left: 0px;
  transition: all 0.2s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.kharkiv-city .overlap-9 {
  position: absolute;
  width: 67px;
  height: 18px;
  top: 62px;
  left: 445px;
}

.kharkiv-city .text-wrapper-12 {
  position: absolute;
  width: 64px;
  top: 62px;
  left: 542px;
  transition: all 0.2s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.kharkiv-city .text-wrapper-13 {
  position: absolute;
  width: 95px;
  top: 62px;
  left: 1215px;
  transition: all 0.2s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}



.kharkiv-city .text-wrapper-15 {
  position: absolute;
  width: 87px;
  top: 62px;
  left: 1120px;
  transition: all 0.2s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}



.kharkiv-city .text-wrapper-17 {
  position: absolute;
  width: 132px;
  top: 62px;
  left: 1547px;
  transition: all 0.2s ease;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}
.kharkiv-city .pay-games1 {
  position: absolute;
  width: 397px;
  height: 517px;
  top: 1px;
  left: 1100px;
}
.disp{
  display: none;
}
.kh1{
  position: absolute;
  top: 200px;
  left: 380px;
  font-size: 18px;
  color: white;
  transition: all 0.3s;
}







@media (max-width:1536px){
  .kharkiv-city {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 1521px;
  }
  .Intro{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1900px;
    height: 600px;
  }
  .kharkiv-city .div {
    background-color: #0d0f23;
    overflow: hidden;
    width: 1920px;
    height: 3092px;
    position: relative;
  }
  .kharkiv-city .navbar {
    position: absolute;
    width: 1920px;
    height: 99px;
    top: 0;
    left: 0;
    background-color: #050111;
  }
  
  .kharkiv-city .overlap {
    position: absolute;
    width: 1518px;
    height: 580px;
    top: 99px;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
  }
  
  .kharkiv-city .text-wrapper {
    position: absolute;
    top: 272px;
    left: 302px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 670px;
  }
  
  .kharkiv-city .overlap-group {
    position: relative;
    width: 461px;
    height: 303px;
    top: 1px;
    left: 6px;
  }
  
  .kharkiv-city .KHARKIV {
    position: absolute;
    width: 461px;
    top: 0;
    left: 0;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 55px;
    letter-spacing: 0;
    line-height: normal;
  }
  .lang{
    position: absolute;
    width: 49px;
    height: 23px;
    color: #ffffff;
    background-color: #060e37;
    top: 61px;
    left: 1365px;
    font-size: 18px;
    border-radius: 3.5px;
  }
  .kharkiv-city .text-wrapper-12 {
    position: absolute;
    width: 64px;
    top: 62px;
    left: 542px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  .kharkiv-city .text-wrapper-13 {
    position: absolute;
    width: 89px;
    top: 62px;
    left: 1240px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  
  
  .kharkiv-city .text-wrapper-15 {
    position: absolute;
    width: 87px;
    top: 62px;
    left: 1120px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  

  
  .kharkiv-city .text-wrapper-17 {
    position: absolute;
    width: 132px;
    top: 62px;
    left: 700px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .overlap-8 {
    position: absolute;
    width: 640px;
    height: 386px;
    top: 30px;
    left: 804px;
  }
  .kharkiv-city .RECOMMENDED-OS {
    position: absolute;
    width: 651px;
    top: 35px;
    left: 804px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 22px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .pay-games {
    position: absolute;
    width: 397px;
    height: 517px;
    top: 32px;
    left: 904px;
  }
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 550px;
  }
  .overlap-99 {
    position: absolute;
    width: 67px;
    height: 18px;
    top: 40px;
    left: 805px;
  }
  .kh{
    position: absolute;
    top: 200px;
    left: 1px;
    font-size: 18px;
    color: white;
    transition: all 0.3s;
  }
  .kh1{
    position: absolute;
    top: 200px;
    left: 380px;
    font-size: 18px;
    color: white;
    transition: all 0.3s;
  }
  .kharkiv-city .pay-games1 {
    position: absolute;
    width: 397px;
    height: 517px;
    top: 1px;
    left: 1100px;
  }
  .disp{
    display: none;
  }
}





























/* For Iphone 12/13/14/15/16pro-max  */

@media (max-width:431px){
  .kharkiv-city {
    background-color: #0d0f23;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 430px;
  }
  .Intro{
    position: absolute;
    top: 0px;
    left: -605px;
  }
  .kharkiv-city .div {
    background-color: #0d0f23;
    overflow: hidden;
    width: 430px;
    height: 2992px;
    position: relative;
  }
  .kharkiv-city .navbar {
    position: absolute;
    width: 1920px;
    height: 99px;
    top: 0;
    left: 0;
    background-color: #050111;
  }
  
  .DivtextGame{
    position: absolute;
    width: 900px;
    top: 2520px;
    left: 80px;
    color: white;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    font-size: 24px;
    display: none;
    
  }
  .kharkiv-city .overlap {
    position: absolute;
    width: 1518px;
    height: 580px;
    top: 99px;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
  }
  
  .kharkiv-city .INSOMING-GAMES-2 {
    position: absolute;
    width: 183px;
    top: 18px;
    left: 18px;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 0;
    line-height: normal;
    color: transparent;
    background-image: url(https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExaGNxc2RuY2EzZjNyNnl5OTc0cWV2YTMzZnB4dDA3NnVuamYxdDZuYSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/dB66K4Kywc8gPVh6A7/giphy-downsized-large.gif);
    background-clip: text;
    
  }
  .kharkiv-city .text-wrapper {
    position: absolute;
    top: 272px;
    left: 302px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 670px;
  }
  
  .kharkiv-city .overlap-group {
    position: relative;
    width: 461px;
    height: 303px;
    top: 1px;
    left: 6px;
  }
  
  .kharkiv-city .KHARKIV {
    position: absolute;
    width: 461px;
    top: 0;
    left: 0;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 55px;
    letter-spacing: 0;
    line-height: normal;
  }
  .lang{
    position: absolute;
    width: 49px;
    height: 23px;
    color: #ffffff;
    background-color: #060e37;
    top: 61px;
    left: 1365px;
    font-size: 18px;
    border-radius: 3.5px;
  }
  .kharkiv-city .text-wrapper-12 {
    position: absolute;
    width: 64px;
    top: 62px;
    left: 542px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  .kharkiv-city .text-wrapper-13 {
    position: absolute;
    width: 89px;
    top: 62px;
    left: 1240px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  
  
  .kharkiv-city .text-wrapper-15 {
    position: absolute;
    width: 87px;
    top: 62px;
    left: 1120px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  
  
  .kharkiv-city .text-wrapper-17 {
    position: absolute;
    width: 132px;
    top: 62px;
    left: 700px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .overlap-8 {
    position: absolute;
    width: 640px;
    height: 386px;
    top: 30px;
    left: 804px;
  }
  .kharkiv-city .RECOMMENDED-OS {
    position: absolute;
    width: 651px;
    top: 35px;
    left: 804px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 22px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .pay-games {
    position: absolute;
    width: 397px;
    height: 517px;
    top: 1122px;
    left: -2px;
  }
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 550px;
  }
  .overlap-99 {
    position: absolute;
    width: 67px;
    height: 18px;
    top: 40px;
    left: 805px;
  }
  .kh{
    position: absolute;
    top: 200px;
    left: 1px;
    font-size: 18px;
    color: white;
    transition: all 0.3s;
  }
  .kh1{
    position: absolute;
    top: 200px;
    left: 380px;
    font-size: 18px;
    color: white;
    transition: all 0.3s;
  }
  .text-wrapper-10 {
    position: absolute;
    width: 60px;
    top: 62px;
    left: 153px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #00c3ff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  .kharkiv-city .overlap-9 {
    position: absolute;
    width: 67px;
    height: 18px;
    top: 62px;
    left: 245px;
  }
  .kharkiv-city .text-wrapper-11 {
    position: absolute;
    width: 0px;
    top: 0;
    left: 0px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  .lang{
    position: absolute;
    width: 49px;
    height: 23px;
    color: #ffffff;
    background-color: #060e37;
    top: 60px;
    left: 299px;
    font-size: 16px;
    border-radius: 3.5px;
  }
  .kharkiv-city .rectangle-2 {
    height: px;
    top: 2100px;
    background-color: #0d0f23;
    position: absolute;
    width: 0px;
    left: 0;
  }
  .kharkiv-city .INSOMING-GAMES {
    position: absolute;
    width: 337px;
    height: 1000px;
    top: 60px;
    left: 35px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 23px;
    text-align: justify;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .frame-wrapper {
    position: absolute;
    width: 1989px;
    height: 1992px;
    top: 2309px;
    left: 0;
    background-color: #0d0f23;
  }
  .kharkiv-city .MINIMUM-OS-windows {
    position: absolute;
    width: 646px;
    top: 109px;
    left: 20px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 15x;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .RECOMMENDED-OS {
    position: absolute;
    width: 651px;
    top: 325px;
    left: 20px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 24px;
  }
  .kharkiv-city .KHARKIV {
    position: absolute;
    width: 361px;
    top: 0;
    left: 0;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 40px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .div-wrapper {
    position: absolute;
    width: 143px;
    height: 43px;
    top: 180px;
    left: 10px;
    background-image: url("/svg/rectangle-13.png");
    background-size: 100% 100%;
  }
  .kharkiv-city .text-wrapper-3 {
    position: absolute;
    width: 128px;
    top: 12px;
    left: 15px;
    transition: all 0.5s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }

  .kharkiv-city .frame-2 {
    position: absolute;
    width: 143px;
    height: 43px;
    top: 180px;
    left: 173px;
    background-image: url("/svg/rectangle-13.png");
    background-size: 100% 100%;
  }
  .kharkiv-city .text-wrapper-4 {
    position: absolute;
    width: 99px;
    top: 12px;
    left: 36px;
    transition: all 0.5s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .OVERVIEW-kharkivcity {
    position: absolute;
    width: 324px;
    top: 20px;
    left: 40px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .rectangle {
    height: 600px;
    top: 529px;
    background-color: #13152a;
    position: absolute;
    width: 40px;
    left: 0;
  }
  .kharkiv-city .frame-3 {
    position: absolute;
    width: 430px;
    height: 700px;
    top: 531px;
    left: 0;
  }
}
















/* For Iphone 12/pro 13/pro */

@media (max-width:390px){
  .kharkiv-city {
    background-color: #0d0f23;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 390px;
  }
  .Intro{
    position: absolute;
    top: 0px;
    left: -605px;
  }
  .kharkiv-city .div {
    background-color: #0d0f23;
    overflow: hidden;
    width: 390px;
    height: 2992px;
    position: relative;
  }
  .kharkiv-city .navbar {
    position: absolute;
    width: 1920px;
    height: 99px;
    top: 0;
    left: 0;
    background-color: #050111;
  }
  
  .kharkiv-city .overlap {
    position: absolute;
    width: 1518px;
    height: 580px;
    top: 99px;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
  }
  
  .kharkiv-city .INSOMING-GAMES-2 {
    position: absolute;
    width: 183px;
    top: 18px;
    left: 18px;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 0;
    line-height: normal;
    color: transparent;
    background-image: url(https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExaGNxc2RuY2EzZjNyNnl5OTc0cWV2YTMzZnB4dDA3NnVuamYxdDZuYSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/dB66K4Kywc8gPVh6A7/giphy-downsized-large.gif);
    background-clip: text;
    
  }
  .kharkiv-city .text-wrapper {
    position: absolute;
    top: 272px;
    left: 302px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 670px;
  }
  
  .kharkiv-city .overlap-group {
    position: relative;
    width: 461px;
    height: 303px;
    top: 1px;
    left: 6px;
  }
  
  .kharkiv-city .KHARKIV {
    position: absolute;
    width: 461px;
    top: 0;
    left: 0;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 55px;
    letter-spacing: 0;
    line-height: normal;
  }
  .lang{
    position: absolute;
    width: 49px;
    height: 23px;
    color: #ffffff;
    background-color: #060e37;
    top: 61px;
    left: 1365px;
    font-size: 18px;
    border-radius: 3.5px;
  }
  .kharkiv-city .text-wrapper-12 {
    position: absolute;
    width: 64px;
    top: 62px;
    left: 542px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  .kharkiv-city .text-wrapper-13 {
    position: absolute;
    width: 89px;
    top: 62px;
    left: 1240px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  
  
  .kharkiv-city .text-wrapper-15 {
    position: absolute;
    width: 87px;
    top: 62px;
    left: 1120px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  

  
  .kharkiv-city .text-wrapper-17 {
    position: absolute;
    width: 132px;
    top: 62px;
    left: 700px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .overlap-8 {
    position: absolute;
    width: 640px;
    height: 386px;
    top: 30px;
    left: 804px;
  }
  .kharkiv-city .RECOMMENDED-OS {
    position: absolute;
    width: 651px;
    top: 35px;
    left: 804px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 22px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .pay-games {
    position: absolute;
    width: 397px;
    height: 517px;
    top: 1122px;
    left: -2px;
  }
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 550px;
  }
  .overlap-99 {
    position: absolute;
    width: 67px;
    height: 18px;
    top: 40px;
    left: 805px;
  }
  .kh{
    position: absolute;
    top: 200px;
    left: 1px;
    font-size: 18px;
    color: white;
    transition: all 0.3s;
  }
  .kh1{
    position: absolute;
    top: 200px;
    left: 380px;
    font-size: 18px;
    color: white;
    transition: all 0.3s;
  }
  .text-wrapper-10 {
    position: absolute;
    width: 60px;
    top: 62px;
    left: 153px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #00c3ff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  .kharkiv-city .overlap-9 {
    position: absolute;
    width: 67px;
    height: 18px;
    top: 62px;
    left: 245px;
  }
  .kharkiv-city .text-wrapper-11 {
    position: absolute;
    width: 0px;
    top: 0;
    left: 0px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  .lang{
    position: absolute;
    width: 49px;
    height: 23px;
    color: #ffffff;
    background-color: #060e37;
    top: 60px;
    left: 299px;
    font-size: 16px;
    border-radius: 3.5px;
  }
  .kharkiv-city .rectangle-2 {
    height: px;
    top: 2100px;
    background-color: #0d0f23;
    position: absolute;
    width: 0px;
    left: 0;
  }
  .kharkiv-city .INSOMING-GAMES {
    position: absolute;
    width: 337px;
    height: 1000px;
    top: 102px;
    left: 18px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .frame-wrapper {
    position: absolute;
    width: 1989px;
    height: 1992px;
    top: 2309px;
    left: 0;
    background-color: #0d0f23;
  }
  .kharkiv-city .MINIMUM-OS-windows {
    position: absolute;
    width: 646px;
    top: 129px;
    left: 20px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 15x;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .RECOMMENDED-OS {
    position: absolute;
    width: 651px;
    top: 305px;
    left: 20px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 24px;
  }
  .kharkiv-city .KHARKIV {
    position: absolute;
    width: 361px;
    top: 0;
    left: 0;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 40px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .div-wrapper {
    position: absolute;
    width: 143px;
    height: 43px;
    top: 180px;
    left: 10px;
    background-image: url("/svg/rectangle-13.png");
    background-size: 100% 100%;
  }
  .kharkiv-city .text-wrapper-3 {
    position: absolute;
    width: 128px;
    top: 12px;
    left: 15px;
    transition: all 0.5s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }

  .kharkiv-city .frame-2 {
    position: absolute;
    width: 143px;
    height: 43px;
    top: 180px;
    left: 173px;
    background-image: url("/svg/rectangle-13.png");
    background-size: 100% 100%;
  }
  .kharkiv-city .text-wrapper-4 {
    position: absolute;
    width: 99px;
    top: 12px;
    left: 36px;
    transition: all 0.5s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .OVERVIEW-kharkivcity {
    position: absolute;
    width: 324px;
    top: 30px;
    left: 20px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .rectangle {
    height: 600px;
    top: 529px;
    background-color: #13152a;
    position: absolute;
    width: 390px;
    left: 0;
  }
  .kharkiv-city .frame-3 {
    position: absolute;
    width: 390px;
    height: 700px;
    top: 531px;
    left: 0;
  }
}


























/* For Samsung flip 3/4/5/6 */

@media (max-width:360px){
  .kharkiv-city {
    background-color: #0d0f23;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 360px;
  }
  
  .kharkiv-city .div {
    background-color: #0d0f23;
    overflow: hidden;
    width: 360px;
    height: 2992px;
    position: relative;
  }
  .kharkiv-city .navbar {
    position: absolute;
    width: 1920px;
    height: 99px;
    top: 0;
    left: 0;
    background-color: #050111;
  }
  .DivtextGame{
    position: absolute;
    width: 900px;
    top: 2520px;
    left: 80px;
    color: white;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    font-size: 24px;
    display: none;
    
  }
  .Intro{
    position: absolute;
    top: 0px;
    left: -605px;
  }
  .kharkiv-city .overlap {
    position: absolute;
    width: 1518px;
    height: 580px;
    top: 99px;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
  }
  
  .kharkiv-city .INSOMING-GAMES-2 {
    position: absolute;
    width: 183px;
    top: 18px;
    left: 18px;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 0;
    line-height: normal;
    color: transparent;
    background-image: url(https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExaGNxc2RuY2EzZjNyNnl5OTc0cWV2YTMzZnB4dDA3NnVuamYxdDZuYSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/dB66K4Kywc8gPVh6A7/giphy-downsized-large.gif);
    background-clip: text;
    
  }
  .kharkiv-city .text-wrapper {
    position: absolute;
    top: 272px;
    left: 302px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 670px;
  }
  
  .kharkiv-city .overlap-group {
    position: relative;
    width: 461px;
    height: 303px;
    top: 1px;
    left: 6px;
  }
  
  .kharkiv-city .KHARKIV {
    position: absolute;
    width: 461px;
    top: 0;
    left: 0;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 55px;
    letter-spacing: 0;
    line-height: normal;
  }
  .lang{
    position: absolute;
    width: 49px;
    height: 23px;
    color: #ffffff;
    background-color: #060e37;
    top: 61px;
    left: 1365px;
    font-size: 18px;
    border-radius: 3.5px;
  }
  .kharkiv-city .text-wrapper-12 {
    position: absolute;
    width: 64px;
    top: 62px;
    left: 542px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  .kharkiv-city .text-wrapper-13 {
    position: absolute;
    width: 89px;
    top: 62px;
    left: 1240px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  
  
  .kharkiv-city .text-wrapper-15 {
    position: absolute;
    width: 87px;
    top: 62px;
    left: 1120px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  

  
  .kharkiv-city .text-wrapper-17 {
    position: absolute;
    width: 132px;
    top: 62px;
    left: 700px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .overlap-8 {
    position: absolute;
    width: 640px;
    height: 386px;
    top: 30px;
    left: 804px;
  }
  .kharkiv-city .RECOMMENDED-OS {
    position: absolute;
    width: 651px;
    top: 35px;
    left: 804px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 22px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .pay-games {
    position: absolute;
    width: 397px;
    height: 517px;
    top: 1122px;
    left: -15px;
  }
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 550px;
  }
  .overlap-99 {
    position: absolute;
    width: 67px;
    height: 18px;
    top: 40px;
    left: 805px;
  }
  .kh{
    position: absolute;
    top: 200px;
    left: 1px;
    font-size: 18px;
    color: white;
    transition: all 0.3s;
  }
  .kh1{
    position: absolute;
    top: 200px;
    left: 380px;
    font-size: 18px;
    color: white;
    transition: all 0.3s;
  }
  .text-wrapper-10 {
    position: absolute;
    width: 60px;
    top: 62px;
    left: 153px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #00c3ff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  .kharkiv-city .overlap-9 {
    position: absolute;
    width: 67px;
    height: 18px;
    top: 62px;
    left: 245px;
  }
  .kharkiv-city .text-wrapper-11 {
    position: absolute;
    width: 0px;
    top: 0;
    left: 0px;
    transition: all 0.2s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
  .lang{
    position: absolute;
    width: 49px;
    height: 23px;
    color: #ffffff;
    background-color: #060e37;
    top: 60px;
    left: 299px;
    font-size: 16px;
    border-radius: 3.5px;
  }
  .kharkiv-city .rectangle-2 {
    height: px;
    top: 2100px;
    background-color: #0d0f23;
    position: absolute;
    width: 0px;
    left: 0;
  }
  .kharkiv-city .INSOMING-GAMES {
    position: absolute;
    width: 337px;
    height: 1000px;
    top: 102px;
    left: 18px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .frame-wrapper {
    position: absolute;
    width: 1989px;
    height: 1992px;
    top: 2309px;
    left: 0;
    background-color: #0d0f23;
  }
  .kharkiv-city .MINIMUM-OS-windows {
    position: absolute;
    width: 646px;
    top: 129px;
    left: 20px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 15x;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .RECOMMENDED-OS {
    position: absolute;
    width: 651px;
    top: 335px;
    left: 20px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .frame {
    position: absolute;
    width: 462px;
    height: 305px;
    top: 87px;
    left: 24px;
  }
  .kharkiv-city .KHARKIV {
    position: absolute;
    width: 361px;
    top: 0;
    left: 0;
    font-family: "Gotham Ultra-Regular", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 40px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .div-wrapper {
    position: absolute;
    width: 143px;
    height: 43px;
    top: 180px;
    left: 10px;
    background-image: url("/svg/rectangle-13.png");
    background-size: 100% 100%;
  }
  .kharkiv-city .text-wrapper-3 {
    position: absolute;
    width: 128px;
    top: 12px;
    left: 15px;
    transition: all 0.5s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
  }

  .kharkiv-city .frame-2 {
    position: absolute;
    width: 143px;
    height: 43px;
    top: 180px;
    left: 173px;
    background-image: url("/svg/rectangle-13.png");
    background-size: 100% 100%;
  }
  .kharkiv-city .text-wrapper-4 {
    position: absolute;
    width: 99px;
    top: 12px;
    left: 36px;
    transition: all 0.5s ease;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .OVERVIEW-kharkivcity {
    position: absolute;
    width: 324px;
    top: 30px;
    left: 20px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0;
    line-height: normal;
  }
  .kharkiv-city .rectangle {
    height: 600px;
    top: 529px;
    background-color: #13152a;
    position: absolute;
    width: 390px;
    left: 0;
  }
  .kharkiv-city .frame-3 {
    position: absolute;
    width: 390px;
    height: 700px;
    top: 531px;
    left: 0;
  }
}