.announcement-bar {
  display: none !important;
}

#lang-dropdown-container {
  display: block !important;
}

.about-banner {
  margin-top: 0;
}

.video-block {
  height: 400px;
}

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

.video-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.meet-content-top {
  padding-left: 0;
}

.meet-content-top p {
  font-size: 20px;
}

.meet-content-bottom {
  padding-right: 0;
}

.meet-content-bottom p {
  font-size: 20px;
}

.kiss-icon {
  position: absolute;
  left: 60%;
  top: 20%;
  display: flex;
  animation: moveBounce-about 4s linear infinite;
  width: 140px;
}

.marquee {
  --duration: 10s;
  display: flex;
  gap: var(--gap);
  overflow: hidden;
  white-space: nowrap;
}

.marquee:hover .marquee__wrapper {
  animation-play-state: paused;
}

.marquee__wrapper {
  display: flex;
  flex-shrink: 0;
  gap: var(--gap);
  justify-content: space-around;
  min-width: 100%;
}

.marquee__wrapper--a {
  animation: var(--duration) slide-1 1 linear, calc(var(--duration) * 2) slide-2 var(--duration) infinite linear;
}

.marquee__wrapper--b {
  animation: calc(var(--duration) * 2) slide-3 infinite linear;
}

.marquee p {
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.act-gina {
  padding-right: 10px;
}

.act-gina h6 {
  font-size: 12px;
  letter-spacing: 0.2em;
}

.act-gina p {
  font-size: 16px;
}

.become-affiliate-content {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1200px;
  display: flex;
  align-items: center;
  padding-bottom: 100px;
  z-index: 99;
  transform: translateX(-50%);
}

.become-affiliate-content .content-wrap {
  padding: 90px 65px;
  width: 65%;
}

.become-affiliate-content .content-wrap p {
  font-size: 20px;
}

.join p {
  color: #858688;
  font-size: 20px;
  font-style: italic;
}

.join a {
  color: #000;
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .become-affiliate-content {
    left: 0;
    width: 100%;
    padding-bottom: 30px;
    transform: none;
  }
  .become-affiliate-content .content-wrap {
    padding: 0 30px;
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .meet-content-top {
    padding-left: 30px;
  }
  .meet-content-bottom {
    padding-right: 30px;
  }
  .act-gina {
    padding-right: 0;
  }
  .gallery-wrap {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 767px) {
  .meet-content-top {
    padding-left: 0;
  }
  .meet-content-bottom {
    padding-right: 0;
    flex-wrap: wrap-reverse;
  }
  .act-gina {
    padding-right: 0;
  }
  .become-affiliate-block img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .become-affiliate-content {
    padding-bottom: 30px;
  }
  .become-affiliate-content .content-wrap {
    width: 100%;
    padding: 0 45px;
  }
}
@keyframes moveBounce-about {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(150px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes slide-1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide-2 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slide-3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

.mobile-menu {
  top: 160px;
}