#information-information {
  display: none;
}

.section {
  padding: 70px 0;
}

/* Секция Ваша особиста програма винагород  */

.gg_hero {
  background-image: linear-gradient(
      to bottom,
      rgba(33, 33, 33, 0) 0%,
      rgba(33, 33, 33, 0.5) 50%,
      rgba(33, 33, 33, 1) 68%,
      rgba(33, 33, 33, 1) 100%
    ),
    url('/image/sculptor-club/hero_bg.jpg');

  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  margin-top: -35px;
}

.gg_hero__wrap {
  margin-top: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(36, 36, 36, 0);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px); /* поддержка Safari */
  color: white;
  border-top-left-radius: 5px;
  overflow: hidden;
  border-top-right-radius: 5px;
}

.gg_hero__title {
  max-width: 577px;
  width: 100%;
  font-size: 64px;
  font-weight: 400;
  line-height: 120%;
  margin: 0 auto;
  padding-top: 115px;
  margin-bottom: 32px;
  color: #f8f8f8;
  text-transform: uppercase;
}

.gg_hero__text {
  font-size: 16px;
  font-weight: 200;
  line-height: 120%;
  margin-bottom: 82px;
  color: #f8f8f8;
}

.gg_hero__subtext {
  max-width: 828px;
  width: 100%;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  margin: 0 auto;
  margin-bottom: 78px;
  color: #f8f8f8;
}

.gg_hero__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 121px;
  border: 1px solid rgb(248, 248, 248);
  border-radius: 20px;
  margin-bottom: 120px;
}

.gg_hero__icon {
  margin-top: 50px;
}
.gg_hero__icon {
  /* Чтобы трансформации работали от центра */
  transform-origin: center;
  /* Запускаем анимацию: движение вверх-вниз */
  animation: arrowFloat 1s ease-in-out infinite alternate;
}

@keyframes arrowFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}
.gg_hero__subtitle {
  font-size: 48px;
  font-weight: 400;
  line-height: 130%;

  text-transform: uppercase;
  padding-bottom: 75px;
  color: rgb(248, 248, 248);
}

.gg_hero__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  margin-bottom: 95px;
}

.gg_hero__item {
  max-width: 940px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.gg_hero__box {
  max-width: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.gg_hero__number {
  font-size: 64px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(225, 102, 137);
}

.gg_hero__description {
  font-size: 16px;
  font-weight: 100;
  line-height: 120%;
  color: #f8f8f8;
}

.gg_hero__line {
  margin-bottom: 28px;
  border: 1px solid #f8f8f8;
}

.gg_hero__textrow {
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;

  text-align: center;
  padding-bottom: 150px;
  color: #f8f8f8;
}

/* Секция ЯК КЕ ПРАЦЮЕ?  */

.gg_benefist {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.gg_benefist__subtitle {
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 130px;
  padding-top: 190px;
  text-align: center;
}

.gg_benefist__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 150px;
}

.gg_benefist__item {
  width: 33%;
}

/*.gg_benefist__item>.name2{
	display: none;
}
.gg_benefist__item:hover>.name1{
	display: none;
}
.gg_benefist__item:hover>.name2{
	display: block;
}*/

.gg_benefist__item {
  display: grid; /* накладаємо обидві дитини одну на одну */
  overflow: hidden; /* ховаємо усе, що виходить за межі */
  height: 670px; /* <-- поставте сюди вашу максимальну висоту */
}

.gg_benefist__item > .name1,
.gg_benefist__item > .name2 {
  grid-area: 1 / 1; /* обидва встають в одну клітинку */
  transition: opacity 0.3s ease, /* плавний fade */ transform 0.3s ease; /* плавний slide */
}

/* Стартові стани */
.gg_benefist__item > .name1 {
  opacity: 1;
  transform: translateY(0);
}
.gg_benefist__item > .name2 {
  opacity: 0;
  transform: translateY(20px); /* трохи знизу, щоб «з’їхало» вгору */
}

/* При ховері — міняємо ролі */
.gg_benefist__item:hover > .name1 {
  opacity: 0;
  transform: translateY(-20px); /* їде вгору */
}
.gg_benefist__item:hover > .name2 {
  opacity: 1;
  transform: translateY(0);
}

.gg_benefist__wrapcontent {
  display: flex;
  flex-direction: column;
  max-width: 368px;
  width: 100%;
  height: 654px;
  border: 1px solid white;
  border-radius: 5px;
  background: rgba(248, 248, 248, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 60px;
}

.gg_benefist__iconwrap {
  display: flex;
  align-items: flex-end;
  height: 64px;
}

.gg_benefist__icon {
  max-height: 100%;
  object-fit: contain;
}

.gg_benefist__wrap-text {
  margin-top: 85px;
}

.gg_benefist__title-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;

  text-transform: uppercase;
  margin-bottom: 35px;
}

.gg_benefist__text-info {
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  width: 245px;
}

.gg_benefist__btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  padding: 22px 55px;
  text-transform: uppercase;
  color: rgb(248, 248, 248);
  background-color: #000;
  cursor: pointer;
  border-radius: 5px;
  margin-top: auto;
  text-decoration: none;
}

/* hovereffect */

.gg_benefist__hovereffect-wrapcontent {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 368px;
  width: 100%;
  height: 654px;
  border: 1px solid white;
  border-radius: 5px;
  background: rgba(248, 248, 248, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 60px;
  border: 1px solid rgb(33, 33, 33);
  background-color: #f8f8f8;
  font-weight: 200;
  font-size: 16px;
}

.gg_benefist__hovereffect-wraptext {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.gg_benefist__hovereffect-title {
  font-weight: 500;
  line-height: 1px;
  margin-bottom: 0;
}

.gg_benefist__hovereffect-span {
  display: block;
}

.gg_benefist__hovereffect-span::before {
  content: '•';
  color: rgb(0, 0, 0);
  margin-right: 6px;
  font-size: 8px;
  line-height: 1;
  margin-left: 8px;
}

.gg_benefist__hovereffect-btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  padding: 22px;
  text-transform: uppercase;
  color: rgb(248, 248, 248);
  background-color: #000;
  cursor: pointer;
  border-radius: 5px;
  margin-top: auto;
  text-decoration: none;
}

.gg_benefist__hovereffect-btn:hover,
.gg_skulptorclub__button:hover {
  color: #fff;

  box-shadow: 0px 4px 8px 0px rgba(0, 1, 5, 0.16);
}

/* Секция ЯК ВИКОРИСТАТИ КЕШБЕК? */

.gg_cashback {
  margin-top: 70px;
}

.gg_cashback__subtitle {
  font-size: 48px;
  font-weight: 400;
  line-height: 130%;

  text-transform: uppercase;
  text-align: center;
  margin-bottom: 70px;
}

.gg_cashback__text b {
  font-weight: 500;
}

.gg_cashback__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 80px;
}

.gg_cashback__item {
  position: relative;
  flex: 1;
}

.gg_cashback__item--n2::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 55%;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: rgb(145, 145, 145);
}

.gg_cashback__item--n3::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 55%;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: rgb(145, 145, 145);
}

.gg_cashback__item-example p {
  margin-bottom: 0;
}

.gg_cashback__number {
  font-size: 32px;
  line-height: 47px;
  color: rgb(225, 102, 137);
  margin-bottom: 14px;
}

.gg_cashback__text {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  width: 300px;
  margin-left: 35px;
}

.gg_cashback__text-span {
  display: block;
  margin-top: 10px;
}

.gg_cashback__span-wrap {
  margin-top: 20px;
  display: block;
}

.gg_cashback__span {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
}

.gg_cashback__span::before {
  content: '•';
  color: black;
  margin-right: 8px;
  font-size: 15px;
  line-height: 1;
}

.gg_cashback__line {
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgb(145, 145, 145);
}

.gg_cashback__example {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
  padding: 25px 0 25px;
  overflow: hidden;
  border-top: 1px solid rgb(145, 145, 145);
  border-bottom: 1px solid rgb(145, 145, 145);
}

.gg_cashback__text-guide {
  font-size: 32px;
  font-weight: 400;
  line-height: 47px;
  text-transform: uppercase;
}

.gg_cashback__list-example {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gg_cashback__list-example > .gg_cashback__line {
  width: 1000%;
}

.gg_cashback__item-example {
  display: flex;
  gap: 10px;
}

.gg_cashback__discount-example {
  color: rgb(225, 102, 137);
}

.gg_cashback__price-example {
  font-weight: 600;
}

/* Секция ЯК ЗАСТОСУВАТИ? */

.gg_cashback-guide {
  margin-top: 20px;
  margin-bottom: 120px;
}

.gg_cashback-guide__subtitle {
  font-size: 48px;
  font-weight: 400;
  line-height: 130%;

  text-transform: uppercase;
  text-align: center;
  margin-bottom: 35px;
}

.gg_cashback__guide-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 35px;
}

.gg_cashback__guide-item {
  width: 350px;
  position: relative;
}

.gg_cashback__guide-subtext {
  font-size: 16px;
  font-weight: 200;
  line-height: 130%;

  text-align: center;
  margin-bottom: 80px;
}

.gg_cashback__guide-number {
  font-size: 180px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 2.5px;
  display: flex;
  align-items: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  color: #f8f8f8;
  background-color: #eceff6;
  margin-bottom: 0;
}

.gg_cashback__guide-text {
  position: absolute;
  top: 60px;
  left: 37%;
}

.gg_cashback__b {
  font-weight: 500;
}

/* Секция supportinfo */

.gg_container_wrap {
  position: relative;
}

.gg_supportinfo__img {
  padding-top: 65px;
}

.gg_supportinfo__content {
  max-width: 685px;
  width: 100%;
  color: #f8f8f8;
  z-index: 100;
  position: absolute;
  top: 150px;
  left: 74%;
  transform: translateX(-50%);
}

.gg_supportinfo__subtitle {
  font-size: 48px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  max-width: 491px;
  width: 100%;
  margin: 0 auto 85px;
}

.gg_supportinfo__text-info {
  font-weight: 200;
  line-height: 140%;

  text-align: center;
  margin-bottom: 50px;
}

.gg_supportinfo__text {
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;

  padding: 20px 33px;
  background: rgba(248, 248, 248, 0.2); /* полупрозрачный фон */
  backdrop-filter: blur(10px); /* размытие фона позади */
  -webkit-backdrop-filter: blur(10px); /* для Safari */
  border-radius: 5px;
  border: 1px solid rgb(255, 255, 255);
  margin-bottom: 45px;
}

.gg_supportinfo__text-wrap {
  margin-bottom: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gg_supportinfo__span {
  max-width: 308px;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  display: block;
}

.gg_supportinfo__span::before {
  content: '•';
  color: rgb(255, 255, 255);
  margin-right: 8px;
  font-size: 15px;
  line-height: 1;
}

.gg_supportinfo__text-bonus {
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  padding-left: 40px;
}

/* Секция Ваша історія кешбеку */

.gg_history__content {
  color: #f8f8f8;
  padding: 150px 0 160px;
}

.gg_history__subtitle {
  font-size: 48px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}

.gg_history__text {
  max-width: 635px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  font-weight: 200;
  line-height: 140%;
  margin-bottom: 60px;
}

.gg_history__text-info {
  font-size: 16px;
  font-weight: 200;
  line-height: 140%;
  margin-bottom: 0;
}

.gg_history__info {
  font-size: 28px;
  font-weight: 500;
  line-height: 1px;

  margin-bottom: 60px;
  text-align: center;
}

.gg_history__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 95px;
}

.gg_history__item {
  width: 270px;
}

.gg_history__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 20px 22px 34px;
  background: rgba(248, 248, 248, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(248, 248, 248);
  border-radius: 5px;
}

.gg_history__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 62px;
  padding: 25px 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.gg_history__priority {
  font-size: 32px;
  font-weight: 400;
  line-height: 47px;

  text-transform: uppercase;
}

.gg_history__warning {
  font-weight: 200;
}

/* Секция Автоматичні знижки */

.gg_discount {
  padding-top: 100px;
  padding-bottom: 140px;
}

.gg_discount__subtitle {
  font-size: 48px;
  font-weight: 400;
  line-height: 130%;

  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 40px;
}

.gg_discount__text {
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 60px;
  font-weight: 200;
}

.gg_discount__subtitle-info {
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;

  text-align: center;
  margin: 0 auto;
  max-width: 650px;
  width: 100%;
  margin-bottom: 30px;
}

.gg_discount__list {
  padding: 30px 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgb(145, 145, 145);
  border-bottom: 1px solid rgb(145, 145, 145);
  margin-bottom: 60px;
}

.gg_discount__item {
  position: relative;
}

.gg_discount__item--border::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -130px;
  border-left: 1px solid rgb(145, 145, 145);
  height: 46px;
}

.gg_discount__item--border::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -116px;
  border-left: 1px solid rgb(145, 145, 145);
  height: 46px;
}

.gg_discount__text-info {
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  line-height: 140%;
  max-width: 395px;
  width: 100%;
  font-weight: 200;
}

/* Секция SCULPTOR CLUB */

.gg_skulptorclub {
  margin-bottom: 100px;
}

.gg_skulptorclub__content {
  border-radius: 5px;
  padding: 80px 0px 70px 0;
  text-align: center;
  background: linear-gradient(90deg, rgb(225, 102, 137), rgb(235, 168, 152));
}

.gg_skulptorclub__subtitle {
  font-size: 32px;
  font-weight: 400;
  line-height: 47px;

  text-transform: uppercase;
  max-width: 699px;
  width: 100%;
  color: rgb(248, 248, 248);
  margin: 0 auto 30px;
}

.gg_skulptorclub__text {
  font-size: 16px;
  font-weight: 200;
  line-height: 140%;

  color: rgb(248, 248, 248);
  margin-bottom: 45px;
  font-weight: 200;
}

.gg_discount_2 {
  text-align: center;
}

.gg_discount_2 .gg_skulptorclub__button i {
  margin-right: 5px;
  font-size: 20px;
}

.gg_skulptorclub__button {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;

  padding: 22px 65px 22px 65px;
  text-transform: uppercase;
  color: rgb(248, 248, 248);
  background-color: #000;
  cursor: pointer;
  border-radius: 5px;
}

/* 1) Базова підготовка */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

/* 2) Активний стан */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 3) Затримки для трьох сусідніх елементів 
   Припустимо, у вас є контейнер .reveal-row, 
   в якому лежать три .reveal елементи в рядку. */
.reveal-row .reveal:nth-child(1) {
  transition-delay: 0s;
}
.reveal-row .reveal:nth-child(2) {
  transition-delay: 0.3s;
}
.reveal-row .reveal:nth-child(3) {
  transition-delay: 0.6s;
}
.reveal-row .reveal:nth-child(4) {
  transition-delay: 0.9s;
}
.gg_supportinfo {
  background-color: #212121;
}
.gg_history {
  background-color: #e0678a;
}

@media screen and (max-width: 1200px) {
  .gg_benefist__wrapcontent,
  .gg_benefist__hovereffect-wrapcontent {
    max-width: 100%;
    padding: 20px 15px;
  }

  .gg_cashback__text {
    width: 100%;
    margin-left: 0px;
  }
  .gg_cashback__guide-item {
    width: 30%;
  }

  .gg_cashback__guide-list {
    gap: 1%;
  }

  .gg_supportinfo__content {
    max-width: 67%;
    left: inherit;
    right: 0;
    transform: none;
  }

  .gg_supportinfo__subtitle {
    margin: 0 auto 70px;
  }

  .gg_history__info {
    line-height: inherit;
  }

  .gg_history__list {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }

  .gg_hero__title {
    font-size: 60px;
  }

  .gg_hero__text {
    margin-bottom: 70px;
  }

  .gg_hero__subtitle {
    padding-bottom: 60px;
  }

  .gg_hero__list {
    gap: 5px;
    margin-bottom: 50px;
  }

  .gg_hero__item {
    gap: 20px;
    justify-content: space-around;
  }

  .gg_hero__textrow {
    padding-bottom: 130px;
  }

  .gg_benefist__subtitle {
    padding-top: 170px;
    margin-bottom: 115px;
  }

  .gg_benefist__list {
    flex-direction: column;
    padding-bottom: 140px;
  }

  .gg_benefist__item {
    width: 100%;
  }

  .gg_benefist__wrapcontent,
  .gg_benefist__hovereffect-wrapcontent {
    max-width: 100%;
    padding: 40px;
	  height: auto;
  }

  .gg_history__content {
    padding: 130px 0 140px;
  }

  .gg_history__subtitle {
    margin-bottom: 50px;
  }

  .gg_history__text {
    margin-bottom: 50px;
  }

  .gg_history__info {
    margin-bottom: 50px;
  }

  .gg_history__list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .gg_supportinfo__subtitle {
    text-align: center;
    font-size: 44px;
    margin: 0 auto 60px;
  }

  .gg_supportinfo__text-info {
    margin-bottom: 40px;
  }
	.gg_benefist__item{
		height: auto;
	}

  .gg_supportinfo__text {
    font-size: 22px;
    margin-bottom: 35px;
  }

  .gg_supportinfo__text-wrap {
    gap: 15px;
  }

  .gg_discount__item--border::before,
  .gg_discount__item--border::after {
    display: none;
    content: none;
  }
	
	.gg_cashback {
    margin-top: 30px;
}
	.gg_cashback-guide {
    margin-top: 0px;
	}
	.gg_skulptorclub {
    margin-bottom: 50px;
}
	
}

@media screen and (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .gg_hero__title {
    font-size: 40px;
  }

  .gg_hero__text {
    font-size: 20px;
    margin-bottom: 60px;
  }

  .gg_hero__subtext {
    margin-bottom: 65px;
	font-size: 24px;
  }

  .gg_hero__subtitle {
    padding-bottom: 60px;
  }

  .gg_hero__btn {
    margin-bottom: 100px;
  }
	.gg_hero__subtitle {
    font-size: 32px;
	}

  .gg_hero__textrow {
    padding-bottom: 125px;
  }

  .gg_benefist__subtitle {
        padding-top: 70px;
        margin-bottom: 60px;
        font-size: 40px;
    }

  .gg_benefist__list {
    padding-bottom: 130px;
  }

  .gg_cashback__subtitle {
    font-size: 40px;
    margin-bottom: 55px;
  }
	
	.gg_hero__description {
    font-size: 18px;
	}
	.gg_hero__description br{
		display: none;
	}

  .gg_cashback__list {
    margin-bottom: 65px;
    flex-direction: column;
    align-content: center;
    align-items: initial;
  }

  .gg_cashback__example {
    flex-direction: column;
    gap: 35px;
  }

  .gg_cashback-guide {
    margin-bottom: 100px;
  }

  .gg_cashback-guide__subtitle {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .gg_cashback__guide-subtext {
    margin-bottom: 60px;
  }

  .gg_cashback__guide-list {
    gap: 23px;
    flex-direction: column;
    align-items: center;
  }

  .gg_cashback__guide-item {
    max-width: 341px;
    width: 100%;
  }

  .gg_history__content {
    padding: 110px 0 120px;
  }

  .gg_history__subtitle {
    font-size: 44px;
    margin-bottom: 30px;
  }

  .gg_history__text {
    margin-bottom: 40px;
  }

  .gg_history__info {
    margin-bottom: 40px;
  }

  .gg_history__list {
    margin-bottom: 70px;
    flex-direction: column;
  }

  .gg_history__item {
    width: 100%;
  }

  .gg_history__box {
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
  }

  .gg_supportinfo__content {
    right: 33px;
  }

  .gg_supportinfo__subtitle {
    font-size: 40px;
	          margin-bottom: 30px;
  }

  .gg_supportinfo__text {
    margin-bottom: 25px;
	          text-align: center;
  }
	
	.gg_discount__text{
		font-size: 18px;
	}

  .gg_supportinfo__text-wrap {
    margin-bottom: 20px;
  }

  .gg_discount {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .gg_discount__subtitle {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .gg_discount__text {
    margin-bottom: 50px;
  }

  .gg_discount__list {
    flex-direction: column;
    padding: 15px 0;
    gap: 20px;
  }
	
	.gg_supportinfo__img {
    padding-top: 20px;
		order: 2;
	}
	
.gg_supportinfo__content {
        position: static;
        max-width: 100%;
        margin: 0;
        padding: 0;
        right: inherit;
        transform: none;
        margin-top: 40px;
}
	
	.gg_container_wrap>div.row{
		display: flex;
		        flex-direction: column;
	}
	    .gg_discount {
        padding-top: 70px;
        padding-bottom: 70px;
    }
	
	.gg_skulptorclub__content {
    border-radius: 5px;
    padding: 30px 0px 50px 0;
		
	}
	
	.gg_skulptorclub__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 33px;
		    margin: 0 auto 20px;
	}
	
}

@media screen and (max-width: 576px) {
  .gg_hero__subtitle {
    padding-bottom: 35px;
  }

  .gg_hero__textrow {
    padding-bottom: 100px;
  }

  .gg_benefist__list {
    padding-bottom: 100px;
  }

  .gg_cashback__example {
    padding: 20px 0 20px;
    gap: 25px;
  }

  .gg_cashback-guide {
    margin-bottom: 80px;
  }

  .gg_history__content {
            padding: 50px 0 75px;
  }

  .gg_history__subtitle {
    margin-bottom: 30px;
	          font-size: 40px;
  }

  .gg_history__text {
    margin-bottom: 30px;
  }

  .gg_history__info {
    margin-bottom: 30px;
  }

  .gg_history__list {
    margin-bottom: 60px;
  }

  .gg_history__box {
    gap: 20px;
  }

  .gg_supportinfo__text-wrap {
    gap: 10px;
  }

 
}
