* {
  box-sizing: border-box;
}

.h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.main {
  background-color: #F4F4F9;
}

.banner {
  position: fixed;
  top: 0;
  width: calc((100vw - 1480px) / 2 - 0px);
  height: 100%;
}

@media (max-width: 1919px) {
  .banner {
    display: none;
  }
}
.banner img {
  width: 100%;
  height: 100%;
}

.banner-left {
  left: 0;
}

.banner-right {
  right: 0;
}

.mob-button {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  display: none;
}

.mob-button .hide {
  display: none;
}

.mob-button-active .show {
  display: none;
}

.mob-button-active .hide {
  display: block;
}

@media (max-width: 1200px) {
  .mob-button {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}
.bottom-submenu {
  background: #fff;
  flex-direction: column;
  gap: 8px;
  position: relative;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: none;
}

.bottom-submenu li {
  list-style: none;
}

.bottom-submenu__link {
  text-decoration: none;
  font-family: "Space Grotesk";
  padding: 10px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #191B1C;
  position: relative;
}

.bottom-submenu__link::after {
  content: "";
  opacity: 0.48;
  position: absolute;
  right: 16px;
  background: url("../image/arrow-link.svg");
  width: 7px;
  height: 10px;
}

.bottom-menu-active .bottom-menu__link {
  background: linear-gradient(180deg, #2C29FF -3.57%, #FEB552 207.14%);
  border-radius: 12px 12px 0px 0px;
}

.bottom-menu-active .bottom-menu__link svg {
  transform: rotate(180deg);
}

.bottom-menu-active .bottom-submenu {
  display: flex;
}

.bottom-menu {
  padding: 0;
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bottom-menu__link {
  background: linear-gradient(180deg, #2C29FF 0%, #37A0FF 162.5%);
  border-radius: 12px;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  display: flex;
  gap: 4px;
  width: 100%;
  position: relative;
  padding: 14px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.bottom-menu__link svg {
  position: absolute;
  transition: all 0.2s ease;
  right: 10px;
}

.bottom-menu__link:hover {
  color: #fff;
}

.overflow {
  overflow: hidden;
}

.mobile-menu {
  padding: 20px;
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  background: #F4F4F9;
  z-index: 404;
  height: calc(100% - 98px);
  overflow: auto;
}

.mobile-menu__top {
  background: #fff;
  padding: 8px;
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.mobile-menu .nav__link {
  width: 100%;
}

.mobile-menu .nav__link span {
  width: 100%;
  display: flex;
  align-items: center;
}

.mobile-menu .nav__link span::after {
  content: "";
  opacity: 0.48;
  position: absolute;
  right: 0;
  background: url("../image/arrow-link.svg");
  width: 7px;
  height: 10px;
}

.mobile-menu-active {
  display: block;
}

@-moz-document url-prefix() {
  .mobile-menu {
    top: 105px;
  }
}
.header {
  background-color: #fff;
  margin-top: 8px;
  border-radius: 20px;
  position: sticky;
  top: 8px;
  z-index: 50;
}

.header__top {
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 17px;
}

.header__auth {
  display: flex;
  gap: 9px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .header__auth {
    width: 100%;
  }
}
.header__bottom {
  height: 56px;
  background: linear-gradient(180deg, #2C29FF 0%, #37A0FF 162.5%);
  border-radius: 20px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  min-height: 56px;
  position: relative;
  padding-right: 0;
  z-index: 30;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .header__bottom {
    padding-right: 12px;
  }
}
.submenu {
  background: #fff;
  padding: 20px;
  display: flex;
  gap: 34px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 56px;
  width: 100%;
  display: none;
}

.submenu__column {
  width: 25%;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.submenu__link {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #191B1C;
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.submenu__link svg g {
  transition: all 0.3s ease;
}

.submenu__link:hover {
  color: #2C29FF;
}

.submenu__link:hover svg g {
  opacity: 1;
}

.wrap {
  max-width: 1480px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .wrap {
    padding: 0 16px;
  }
}
.search {
  position: relative;
  max-width: 312px;
  width: 100%;
  display: flex;
  align-items: center;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .search {
    flex-shrink: 2;
  }
}
.search svg {
  position: absolute;
  left: 14px;
}

.search input {
  background: rgba(25, 27, 28, 0.08);
  border-radius: 16px;
  font-family: "DM Sans";
  outline: none;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.01em;
  height: 30px;
  width: 100%;
  color: #191B1C;
  padding-left: 40px;
  border: 0;
}

.nav {
  display: flex;
  gap: 8px;
}

@media (max-width: 1200px) {
  .nav {
    display: none;
  }
}
.nav__link {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  line-height: 20px;
  letter-spacing: -0.01em;
  border-radius: 96px;
  color: #191B1C;
  text-decoration: none;
  width: fit-content;
  padding: 5px 16px;
  gap: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.nav__link span {
  position: relative;
  z-index: 1;
}

.nav__link::before {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 96px;
  height: 100%;
  left: 0;
  top: 0;
  box-shadow: 0px 1px 0px #FDDDD7, inset 0px 1px 0px #EED1C5;
  background-image: linear-gradient(180deg, #FEB552 -450%, #FDFDFD 116.67%);
  transition: all 0.3s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 96px;
  height: 100%;
  left: 0;
  top: 0;
  box-shadow: 0px 1px 0px #FDDDD7, inset 0px 1px 0px #EED1C5;
  background-image: linear-gradient(180deg, #F6694C 0%, #FEB552 114.84%);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav__link:hover {
  color: #fff;
}

.nav__link:hover::after {
  opacity: 1;
}

.nav__link:hover .nav__icon path {
  fill: #fff;
}

.nav__icon {
  width: 20px;
  height: 20px;
  z-index: 1;
  transition: all 0.3s ease;
}

.nav__icon path {
  fill: #2C29FF;
  transition: all 0.3s ease;
}

.header-btn {
  display: flex;
  cursor: pointer;
  gap: 4px;
  text-decoration: none;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #191B1C;
  border: 0;
  background: none;
}

.menu {
  display: flex;
  height: 100%;
  margin-left: 12px;
}

@media (max-width: 1200px) {
  .menu {
    display: none;
  }
}
.menu-link {
  height: 100%;
  position: relative;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
}

@media (max-width: 1480px) {
  .menu-link {
    font-size: 14px;
  }
}
@media (max-width: 1375px) {
  .menu-link {
    font-size: 12px;
    padding: 0 10px;
  }
}
.menu-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  top: 0;
  background: linear-gradient(180deg, #2C29FF -3.57%, #FEB552 207.14%);
  border-radius: 0px;
}

.menu-link:before {
  content: "";
  position: absolute;
  height: 56px;
  z-index: 4;
  left: 0;
  width: 1px;
  opacity: 0.32;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.64) 50%, rgba(255, 255, 255, 0) 100%);
}

.menu-link img {
  position: relative;
  z-index: 4;
}

.menu-link span {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 4;
}

.menu-link span svg {
  margin-left: 3px;
  transition: all 0.3s ease;
}

.menu-link:hover {
  color: #fff;
}

.menu-item {
  display: flex;
}

.menu-item:first-child a::before {
  display: none;
}

.menu-item:last-child a::after {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.menu-item:hover {
  color: #fff;
}

.menu-item:hover .submenu {
  display: flex;
}

.menu-item:hover a::after {
  opacity: 1;
}

.menu-item:hover span svg {
  transform: rotate(180deg);
}

.main-flex {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .main-flex {
    flex-direction: column;
  }
}
.main-sidebar {
  max-width: 346px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .main-sidebar {
    max-width: 100%;
  }
}
.main-body {
  width: 100%;
  max-width: calc(100% - 366px);
}

@media (max-width: 1024px) {
  .main-body {
    max-width: 100%;
  }
}
.main-title {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.01em;
  color: #191B1C;
}

@media (max-width: 767px) {
  .main-title {
    font-size: 20px;
    line-height: 24px;
  }
}
.subtitle {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: #191B1C;
}

.subtitle a {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: #191B1C;
  text-decoration: none;
}

.description {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #191B1C;
}

.read-more, .read-more-link {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #2C29FF;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 13px;
}

.read-more-link {
  margin-top: 12px;
}

.tag {
  border-radius: 6px;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 2px 8px;
  text-decoration: none;
}

.tag:hover {
  color: #FFFFFF;
}

.tag--yellow {
  background-color: #FEB552;
}

.tag--green {
  background-color: #18CC93;
}

.tag--red {
  background-color: #FD2E4A;
}

.tag--blue {
  background-color: #37A0FF;
}

.main-tag {
  height: 42px;
  position: relative;
  padding: 0 16px;
  display: flex;
  align-items: center;
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  gap: 8px;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: #FFFFFF;
  width: fit-content;
}

@media (max-width: 767px) {
  .main-tag {
    font-size: 20px;
  }
}
.main-tag span, .main-tag img {
  position: relative;
  z-index: 2;
}

.main-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2C29FF 0%, #37A0FF 162.5%);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-tag::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F6694C 0%, #FEB552 195.31%);
  border-radius: 8px;
  transition: all 0.3s ease;
}

a.main-tag:hover {
  color: #fff;
}

a.main-tag:hover::after {
  opacity: 0;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  min-height: 396px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #191B1C;
}

.card__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card .subtitle {
  margin-top: 8px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 31px;
}

.card .hero__bottom {
  margin-top: 0;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 17px;
}

.card__flex {
  display: flex;
  gap: 8px;
}

.card .description p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1.2rem;
}

.card .card__description p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.follow {
  display: flex;
  background: linear-gradient(180deg, #2C29FF 0%, #37A0FF 162.5%);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 12px;
  justify-content: space-between;
}

.follow__link {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  display: flex;
  gap: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.follow__link:hover {
  color: #fff;
}

.follow__logo {
  max-width: 71px;
}

.posts {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.posts__date {
  background: rgba(25, 27, 28, 0.08);
  border-radius: 6px;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  color: #191B1C;
  padding: 2px;
  text-align: center;
}

.posts__time {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 13px;
  margin-top: 7px;
  line-height: 17px;
  letter-spacing: -0.005em;
  color: rgba(25, 27, 28, 0.48);
}

.posts__title {
  text-decoration: none;
  cursor: pointer;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  display: flex;
  line-height: 20px;
  margin-top: 3px;
  letter-spacing: -0.01em;
  color: #191B1C;
}

.posts__content {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(25, 27, 28, 0.1);
}

.posts__content:last-child {
  padding: 0;
  border: 0;
}

.posts__link {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  display: flex;
  color: #2C29FF;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.hero {
  display: flex;
  padding: 12px;
  border-radius: 12px;
  gap: 20px;
  background: #fff;
}

@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
  }
}
.hero__image {
  width: 100%;
  max-width: 60%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .hero__image {
    max-width: 100%;
    max-height: 420px;
  }
}
.hero__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 40%;
}

@media (max-width: 1200px) {
  .hero__text {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero .description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.hero .subtitle, .hero .description {
  margin-top: 8px;
}

.hero__name {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #191B1C;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: #191B1C;
}

.hero__name a {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #191B1C;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: #191B1C;
}

.hero__date {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.005em;
  text-decoration: none;
  color: #191B1C;
}

.hero__flex {
  display: flex;
  gap: 8px;
}

.hero__bottom {
  display: flex;
  margin-top: 52px;
}

@media (max-width: 768px) {
  .hero__bottom {
    margin-top: 22px;
  }
}
.hero__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.hero__comment {
  display: flex;
  border: 1px solid rgba(25, 27, 28, 0.12);
  border-radius: 6px;
  align-items: center;
  margin-top: 12px;
  padding: 2px 8px;
  gap: 3px;
  text-decoration: none;
  width: fit-content;
}

.slider-button {
  position: relative;
  width: 48px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-button svg {
  position: relative;
  z-index: 2;
}

.slider-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2C29FF 0%, #37A0FF 162.5%);
  border-radius: 6px;
}

.slider-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #F6694C 0%, #FEB552 195.31%);
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.slider-button:hover::after {
  opacity: 0;
}

.banner-slider {
  max-width: 100%;
  margin-top: 31px;
  overflow: hidden;
  position: relative;
  position: relative;
}

.banner-slider__image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
}

@media (max-width: 1200px) {
  .banner-slider__image {
    height: 160px;
  }
}
@media (max-width: 767px) {
  .banner-slider__image {
    height: 72px;
  }
}
.banner-slider-next {
  z-index: 1;
  top: 50%;
  right: 19px;
  position: absolute;
  transform: translateY(-50%);
}

.banner-slider-prev {
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 19px;
  position: absolute;
}

.section-text {
  margin-top: 33px;
}

.section-text--top {
  margin-top: 48px;
}

.section-text .description {
  margin-top: 11px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-text .show-description {
  -webkit-line-clamp: none;
}

.section-text .read-more {
  margin-top: 12px;
}

.guides {
  margin-top: 32px;
}

.guides__grid {
  margin-top: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, calc(33.33% - 13px));
}

@media (max-width: 1200px) {
  .guides__grid {
    grid-template-columns: repeat(2, calc(50% - 10px));
  }
}
@media (max-width: 624px) {
  .guides__grid {
    grid-template-columns: 100%;
  }
}
.guides__grid .card:nth-child(2n) img {
  display: none;
}

.guides__grid .card:nth-child(2n-1) .description {
  display: none;
}

.subscribe {
  background: linear-gradient(180deg, #2C29FF 0%, #37A0FF 162.5%);
  border-radius: 12px;
  min-height: 173px;
  margin-top: 48px;
  padding-top: 29px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-bottom: 20px;
  align-items: center;
}

.subscribe__title {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .subscribe__title {
    font-size: 26px;
    line-height: 34px;
  }
}
.subscribe__left {
  position: absolute;
  left: 0;
  top: 0;
}

.subscribe__right {
  position: absolute;
  right: 0;
  top: 0;
}

.subscribe__form {
  display: flex;
  margin-top: 13px;
  gap: 8px;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .subscribe__form {
    flex-direction: column;
  }
}
.subscribe__button {
  height: 48px;
  background: linear-gradient(180deg, #A1D2FF 0%, #FFFFFF 100%);
  border-radius: 10px;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #191B1C;
  border: 0;
  padding: 0 32px;
}

@media (max-width: 767px) {
  .subscribe__button {
    background: linear-gradient(180deg, #F6694C 0%, #FEB552 195.31%);
    color: #fff;
  }
}
.subscribe__input {
  position: relative;
  width: 100%;
  max-width: 280px;
}

@media (max-width: 767px) {
  .subscribe__input {
    max-width: 100%;
  }
}
.subscribe__input img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 31px;
}

.subscribe__input input {
  width: 100%;
  padding-left: 63px;
  height: 48px;
  border: 0;
  border-radius: 10px;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: rgba(25, 27, 28, 0.64);
}

.gap {
  display: flex;
  gap: 8px;
}

.items {
  margin-top: 48px;
}

.items__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.items .card {
  flex-direction: row;
  gap: 20px;
}

.items .card .description {
  width: 50%;
  display: none;
}

.items .swiper-slide {
  width: calc(24.5% - 10px);
}

@media (max-width: 1200px) {
  .items .swiper-slide {
    width: auto;
  }
}
@media (max-width: 1200px) {
  .items .swiper-slide .card__wrap {
    width: 100%;
  }
}
.items .swiper-slide .card__hide {
  display: none;
}

.items .swiper-slide:nth-child(3n+1) {
  width: calc(51% - 20px);
}

@media (max-width: 1200px) {
  .items .swiper-slide:nth-child(3n+1) {
    width: auto;
  }
}
.items .swiper-slide:nth-child(3n+1) .card__wrap {
  width: 50%;
}

@media (max-width: 1200px) {
  .items .swiper-slide:nth-child(3n+1) .card__wrap {
    width: 100%;
  }
}
.items .swiper-slide:nth-child(3n+1) .card .description {
  display: block;
}

@media (max-width: 1200px) {
  .items .swiper-slide:nth-child(3n+1) .card .description {
    display: none !important;
  }
}
.items .swiper-slide:nth-child(3n) .card img {
  display: none;
}

@media (max-width: 1200px) {
  .items .swiper-slide:nth-child(3n) .card img {
    display: block;
  }
}
.items .swiper-slide:nth-child(3n) .card__description {
  width: 100%;
  display: block;
}

.items .swiper-slide:nth-child(3n) .card__hide {
  display: block;
}

@media (max-width: 1200px) {
  .items .swiper-slide:nth-child(3n) .card__hide {
    display: none;
  }
}
.slider {
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper .swiper-slide {
  height: auto;
}

.tactics {
  margin-top: 42px;
}

.tactics .swiper-slide {
  width: calc(24.5% - 10px);
}

@media (max-width: 1200px) {
  .tactics .swiper-slide {
    width: auto;
  }
}
@media (max-width: 1200px) {
  .tactics .swiper-slide .card__wrap {
    width: 100%;
  }
}
.tactics .swiper-slide .card__hide {
  display: block;
}

@media (max-width: 1200px) {
  .tactics .swiper-slide .card__hide {
    display: none;
  }
}
.tactics .swiper-slide .card img {
  display: none;
}

@media (max-width: 1200px) {
  .tactics .swiper-slide .card img {
    display: block;
  }
}
.tactics .swiper-slide:nth-child(3n+1) {
  width: calc(24.5% - 10px);
}

@media (max-width: 1200px) {
  .tactics .swiper-slide:nth-child(3n+1) {
    width: auto;
  }
}
.tactics .swiper-slide:nth-child(3n+1) .card__wrap {
  width: 100%;
}

@media (max-width: 1200px) {
  .tactics .swiper-slide:nth-child(3n+1) .card__wrap {
    width: 100%;
  }
}
.tactics .swiper-slide:nth-child(3n+1) .card__hide {
  display: none;
}

.tactics .swiper-slide:nth-child(3n+1) .card .description {
  display: none;
}

.tactics .swiper-slide:nth-child(3n+1) .card img {
  display: block;
}

.tactics .swiper-slide:nth-child(3n) {
  width: calc(51% - 20px);
}

.tactics .swiper-slide:nth-child(3n) .card__wrap {
  width: 50%;
}

@media (max-width: 1200px) {
  .tactics .swiper-slide:nth-child(3n) .card__wrap {
    width: 100%;
  }
}
.tactics .swiper-slide:nth-child(3n) .card img {
  display: block;
}

@media (max-width: 1200px) {
  .tactics .swiper-slide:nth-child(3n) .card img {
    display: block;
  }
}
.tactics .swiper-slide:nth-child(3n) .card__description {
  width: 100%;
  display: block;
}

.tactics .swiper-slide:nth-child(3n) .card__hide {
  display: none;
}

@media (max-width: 1200px) {
  .tactics .swiper-slide:nth-child(3n) .card__hide {
    display: none !important;
  }
}
.tactics .swiper-slide:nth-child(3n) .card .description {
  display: block;
}

@media (max-width: 1200px) {
  .tactics .swiper-slide:nth-child(3n) .card .description {
    display: none;
  }
}
.most-card {
  background: #fff;
  padding: 9px 12px;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.most-card__image {
  max-height: 140px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.most-card__title {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #191B1C;
  margin-top: 16px;
  text-decoration: none;
  display: block;
}

.most {
  margin-top: 47px;
}

.two-column {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 10px));
  gap: 20px;
}

@media (max-width: 767px) {
  .two-column {
    grid-template-columns: 100%;
  }
}
.promocode {
  margin-top: 47px;
}

.promocode-card {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.promocode-card__image {
  width: 100%;
  height: 108px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(25, 27, 28, 0.12);
  border-radius: 8px;
}

.promocode-card__image img {
  object-fit: contain;
}

.promocode-card__title {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  color: #191B1C;
  margin-top: 16px;
}

.promocode-card__copy {
  display: flex;
  margin-top: 12px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  width: 100%;
  background: linear-gradient(180deg, rgba(246, 105, 76, 0.08) 0%, rgba(254, 181, 82, 0.08) 195.31%);
  border: 1px dashed #FEB552;
  border-radius: 8px;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #191B1C;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}

.promocode-card .copy-btn {
  position: absolute;
  right: 5px;
  border: 0;
  background: none;
}

.promocode-card__description {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #191B1C;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 40px;
}

.promocode-card__button {
  width: 100%;
  position: relative;
  border-radius: 8px;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  position: relative;
  padding: 10px;
  text-decoration: none;
  display: block;
  margin-top: auto;
}

.promocode-card__button span {
  position: relative;
  z-index: 2;
}

.promocode-card__button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 8px;
  background-image: linear-gradient(180deg, #F6694C 0%, #FEB552 195.31%);
}

.promocode-card__button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #2C29FF 0%, #37A0FF 162.5%);
  opacity: 0;
  transition: all 0.3s ease;
}

.promocode-card__button:hover {
  color: #fff;
}

.promocode-card__button:hover::after {
  opacity: 1;
}

.promocode-card__link {
  text-align: center;
  display: block;
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 13px;
  margin-top: 16px;
  line-height: 17px;
  letter-spacing: -0.005em;
  text-decoration-line: underline;
  color: #191B1C;
  opacity: 0.64;
}

.promocode-card__message {
  background: #000;
  position: absolute;
  right: 0;
  top: -17px;
  border-radius: 8px;
  display: none;
  padding: 3px 8px;
  font-size: 14px;
  color: #fff;
}

.new-main {
  margin-bottom: 48px;
}

.footer {
  background: #fff;
  border-radius: 12px 12px 0px 0px;
  padding: 20px;
}
.footer__logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
  gap: 14px;
  margin-top: 16px;
}
.footer__descleimer {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #111111;
  text-decoration: none;
}

.footer__logo {
  max-width: 107px;
  margin-bottom: 20px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer__link {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #191B1C;
  text-decoration: none;
}

.footer__title {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #191B1C;
  margin-top: 5px;
  opacity: 0.48;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__copyright {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.005em;
  color: #191B1C;
  margin-top: 21px;
}

.footer__copyright a {
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.005em;
  color: #191B1C;
}

.footer__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, calc(25% - 15px));
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: repeat(2, calc(50% - 10px));
  }
}
.editor table {
  width: 100% !important;
  margin-bottom: 1rem !important;
  color: #212529 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.editor table td {
  padding: 0.75rem !important;
  vertical-align: top !important;
  border-top: 1px solid #dee2e6 !important;
}

.editor table td span,
.editor table td b,
.editor table td p,
.editor table td i,
.editor table td strong {
  padding: 0;
  margin: 0;
  border: 0;
}

.breadcrums {
  display: flex;
  margin-top: 24px;
  gap: 12px;
  margin-bottom: 17px;
}
.breadcrums a {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #191B1C;
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrums a:hover {
  color: #0a58ca;
}
.breadcrums span {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #191B1C;
}
.breadcrums span svg {
  margin-right: 8px;
}
.breadcrums span:first-child svg {
  display: none;
}
.breadcrums span:last-child {
  opacity: 0.64;
}

.main-subtitle {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.015em;
  color: #191B1C;
}

.top {
  margin-top: 12px;
}

.description--top {
  margin-top: 15px;
}

.disclaimer {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}
.disclaimer__title {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 15px;
  justify-content: space-between;
  line-height: 19px;
  color: #191B1C;
  gap: 8px;
}
.disclaimer__gap {
  display: flex;
  gap: 8px;
}
.disclaimer__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 6px 12px;
  gap: 16px;
  background: linear-gradient(180deg, #FEB552 -450%, #FDFDFD 116.67%);
  border-radius: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  width: fit-content;
}
.disclaimer__item {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  color: #191B1C;
  align-items: center;
  display: flex;
  gap: 6px;
}
.disclaimer__text {
  font-family: "DM Sans";
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.005em;
  color: #191B1C;
  margin-top: 9px;
  padding-bottom: 9px;
}
.disclaimer__text--border {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(25, 27, 28, 0.1);
}

.links-list {
  background: linear-gradient(180deg, rgba(44, 41, 255, 0.2) -54.17%, rgba(55, 160, 255, 0.2) 100%);
  border-radius: 12px;
  padding: 6px 0;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 1200px) {
  .links-list {
    flex-direction: column;
  }
}
.links-list a {
  padding: 8px 33px;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #191B1C;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.links-list a:last-child::after {
  display: none;
}
.links-list a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.64;
}
.links-list a:hover {
  background-color: #fff;
  color: #191B1C;
}

.promo__grid {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promo__grid--top {
  margin-top: 32px;
}

.promo-card {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  gap: 20px;
  padding: 16px;
}
.promo-card__rating-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-card__inner {
  display: flex;
  position: relative;
}
.promo-card__icon {
  flex-shrink: 0;
  margin-right: 0.25rem;
}
.promo-card__mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.promo-card__flex {
  display: flex;
}
.promo-card--head {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
  padding-top: 0;
}
.promo-card__align-rating {
  display: flex;
  align-items: center;
}
.promo-card--flex {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .promo-card--flex {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 1200px) {
  .promo-card {
    flex-direction: column;
    align-items: center;
  }
}
.promo-card__header {
  text-align: center;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  background: linear-gradient(180deg, #2C29FF 0%, #37A0FF 162.5%);
  border-radius: 0px 0px 8px 8px;
  padding: 8px;
}
.promo-card__rating {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #191B1C;
  display: flex;
  gap: 8px;
  margin-left: 4px;
}
.promo-card__read-more {
  font-family: "Space Grotesk";
  font-weight: 500;
  margin-top: 8px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  text-decoration-line: underline;
  color: #F6694C;
  display: block;
}
.promo-card__subtitle {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #191B1C;
}
.promo-card__logo {
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 8px;
  width: 100%;
  max-width: 240px;
  height: 123px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.promo-card__title {
  font-family: "Space Grotesk";
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #191B1C;
}
@media (max-width: 1360px) {
  .promo-card__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.promo-card__row {
  width: 100%;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .promo-card__row {
    max-width: 100%;
    padding: 0;
    border: 0;
  }
}
.promo-card__welcome {
  border-left: 1px solid rgba(25, 27, 28, 0.1);
  width: 100%;
  max-width: 240px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .promo-card__welcome {
    max-width: 100%;
    padding: 0;
    border: 0;
  }
}
.promo-card__welcome .promo-card__title {
  margin-top: 8px;
}
.promo-card__content {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #191B1C;
  padding-left: 16px;
  border-left: 1px solid rgba(25, 27, 28, 0.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}
@media (max-width: 1200px) {
  .promo-card__content {
    border: 0;
    padding: 0;
    width: 100%;
  }
}
.promo-card__content ul {
  padding-left: 19px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
}
.promo-card__code {
  min-height: 40px;
  padding-right: 20px;
  width: 100%;
  background: linear-gradient(180deg, rgba(246, 105, 76, 0.08) 0%, rgba(254, 181, 82, 0.08) 195.31%);
  border: 1px dashed #FEB552;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 8px;
}
.promo-card__code span {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #191B1C;
}
@media (max-width: 1360px) {
  .promo-card__code span {
    font-size: 16px;
  }
}
.promo-card__code svg {
  position: absolute;
  right: 14px;
}
.promo-card__button {
  font-family: "DM Sans";
  margin-top: 8px;
  width: 100%;
  height: 48px;
  background: linear-gradient(180deg, #F6694C 0%, #FEB552 114.84%);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-decoration: none;
}
@media (max-width: 1360px) {
  .promo-card__button {
    font-size: 14px;
  }
}
.promo-card__row--max {
  max-width: 280px;
}
@media (max-width: 1200px) {
  .promo-card__row--max {
    max-width: 100%;
  }
}

.promo-button {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  gap: 8px;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background: linear-gradient(180deg, #F6694C 0%, #FEB552 114.84%);
  border-radius: 8px;
  margin-top: 32px;
  padding: 0 20px;
}

.promo-center {
  display: flex;
  justify-content: center;
}

.table-radius {
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .table-radius {
    border-radius: 0;
  }
}

figure {
  margin: 0 !important;
}

.table-radius table, .editor table {
  width: 100%;
  border-collapse: separate;
  font-family: "DM Sans";
  margin-top: -4px;
  font-weight: 400;
  margin-top: 32px;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #111111;
  position: relative;
  border-spacing: 0 4px;
}
@media (max-width: 1200px) {
  .table-radius table, .editor table {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
}
.table-radius table tbody tr:first-child, .editor table tbody tr:first-child {
  clip-path: inset(0 round 10px 10px 0 0);
  background: linear-gradient(180deg, #F6694C 0%, #FEB552 195.31%);
  color: #fff;
}
.table-radius table tbody tr:first-child p, .editor table tbody tr:first-child p {
  color: #fff;
}
.table-radius table tbody tr:first-child p span, .editor table tbody tr:first-child p span {
  color: #fff !important;
}
@media (max-width: 1200px) {
  .table-radius table tbody tr:first-child, .editor table tbody tr:first-child {
    display: flex;
    border-radius: 8px;
    flex-direction: column;
  }
}
.table-radius table th, .editor table th {
  padding: 14px;
}
@media (max-width: 1200px) {
  .table-radius table tbody, .editor table tbody {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
  }
}
.table-radius table tbody tr, .editor table tbody tr {
  background: #fff;
}
@media (max-width: 1200px) {
  .table-radius table tbody tr, .editor table tbody tr {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
  }
}
.table-radius table tbody td, .editor table tbody td {
  padding: 14px;
  border: 0 !important;
}
.table-radius table a, .editor table a {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  text-decoration-line: underline;
}
.table-radius table a span, .editor table a span {
  color: #00a0fb !important;
}
.table-radius table:has(thead) thead tr, .editor table:has(thead) thead tr {
  clip-path: inset(0 round 10px 10px 0 0);
  background: linear-gradient(180deg, #F6694C 0%, #FEB552 195.31%);
  color: #fff;
}
@media (max-width: 1200px) {
  .table-radius table:has(thead) thead tr, .editor table:has(thead) thead tr {
    display: flex;
    border-radius: 8px;
    flex-direction: column;
  }
}
.table-radius table:has(thead) tbody tr:first-child, .editor table:has(thead) tbody tr:first-child {
  background: #fff;
  clip-path: none;
  color: #212529;
}

.editor p, .section-content p {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #191B1C;
}
.editor img, .section-content img {
  border-radius: 12px;
}
.editor h1, .section-content h1 {
  font-family: "Space Grotesk";
  font-weight: 500 !important;
  font-size: 46px !important;
  line-height: 44px !important;
  letter-spacing: -0.015em;
  color: #191B1C;
  margin: 12px 0 !important;
}
.editor h2, .section-content h2 {
  font-family: "Space Grotesk";
  font-weight: 500 !important;
  font-size: 36px !important;
  line-height: 44px !important;
  letter-spacing: -0.015em;
  color: #191B1C;
  border-bottom: 1px solid rgba(25, 27, 28, 0.08);
  padding-bottom: 8px !important;
  margin: 12px 0 !important;
}
.editor h3, .section-content h3 {
  font-family: "Space Grotesk";
  font-weight: 500 !important;
  font-size: 26px !important;
  line-height: 34px !important;
  letter-spacing: -0.01em;
  color: #222222;
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.editor h4, .section-content h4 {
  font-family: "Space Grotesk";
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 22px !important;
  letter-spacing: -0.01em;
  color: #222222;
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.editor img, .section-content img {
  margin-top: 18px;
}
.editor .flex, .section-content .flex {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 10px));
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .editor .flex, .section-content .flex {
    display: flex;
    flex-direction: column;
  }
}
.editor .border-bottom, .section-content .border-bottom {
  border-bottom: 1px solid rgba(25, 27, 28, 0.1);
  padding-bottom: 8px;
}
.editor ol, .section-content ol {
  counter-reset: item;
  padding-left: 0;
  display: flex;
  margin-top: 4px;
  flex-direction: column;
  gap: 8px;
}
.editor ol li, .section-content ol li {
  counter-increment: item;
  list-style: none !important;
  padding-left: 28px;
  position: relative;
}
.editor ol li::before, .section-content ol li::before {
  content: counter(item);
  width: 20px;
  position: absolute;
  left: 0;
  height: 20px;
  background: linear-gradient(180deg, #F6694C 0%, #FEB552 195.31%);
  border-radius: 4px;
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.editor ul, .section-content ul {
  margin-top: 4px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc !important;
  font-family: "DM Sans";
}
.editor ul li, .section-content ul li {
  padding-left: 0 !important;
  background: none;
}

.section-content__image {
  width: 100%;
}

.quote {
  border-radius: 12px;
  background: #fff;
  padding: 32px;
  padding-top: 40px;
  position: relative;
  margin-top: 42px;
}
.quote__logo {
  position: absolute;
  top: -23px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: fit-content;
}
.quote__title {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #191B1C;
}
@media (max-width: 768px) {
  .quote__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.quote__subtitle {
  text-align: center;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #191B1C;
  margin-top: 20px;
  opacity: 0.64;
}

.flex img {
  width: 100%;
}

.faq {
  margin-top: 37px;
}
.faq__main {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.01em;
  color: #191B1C;
}
.faq__subtitle {
  display: flex;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  cursor: pointer;
  color: #191B1C;
  justify-content: space-between;
  padding-bottom: 8px;
}
.faq__item {
  border-bottom: 1px solid rgba(25, 27, 28, 0.1);
  padding-bottom: 8px;
}
.faq__list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease;
}

.author {
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
  margin-top: 32px;
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .author {
    flex-direction: column;
  }
}
.author__icon {
  height: 96px;
  max-width: 96px;
  width: 100%;
  border-radius: 50%;
}
.author__title {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #191B1C;
  margin-top: 8px;
  text-decoration: none;
}
.author__flex {
  display: flex;
  gap: 12px;
}
.author__verify {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  color: #FFFFFF;
  background: #18CC93;
  border-radius: 6px;
  padding: 2px 13px;
  margin-top: 6px;
  gap: 4px;
  display: flex;
  align-items: center;
}
.author--top {
  margin-top: 6px;
}
.author__content {
  border-left: 1px solid rgba(25, 27, 28, 0.1);
  display: flex;
  align-items: center;
  padding-left: 10px;
  flex-shrink: 22;
  width: 80%;
}
@media (max-width: 1024px) {
  .author__content {
    border: 0;
    padding: 0;
    width: 100%;
  }
}

.publish {
  display: flex;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  align-items: center;
  margin-top: 21px;
  color: #191B1C;
  justify-content: flex-end;
}

.promo-grid {
  display: flex;
  gap: 20px;
}
@media (max-width: 1280px) {
  .promo-grid {
    flex-direction: column;
  }
}

.promo-sidebar {
  width: 100%;
  max-width: 345px;
}
@media (max-width: 1280px) {
  .promo-sidebar {
    max-width: 100%;
  }
}

.promo-content {
  width: 100%;
  max-width: calc(100% - 365px);
  position: relative;
}
@media (max-width: 1280px) {
  .promo-content {
    max-width: 100%;
  }
}

.promocode-card--center {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}

.promocode-card__title--top {
  margin-top: 47px;
}

.promocode-card__content {
  margin-top: 22px;
}
.promocode-card__content p {
  margin-bottom: 2px;
}

.promocode-card__description--height {
  min-height: auto;
}

.promo-sidebar .promocode-card__button {
  margin-top: 11px;
  padding: 14px 10px;
}
.promo-sidebar .author {
  flex-direction: column;
  margin-top: 24px;
  gap: 11px;
}
.promo-sidebar .author .author__content {
  border: 0;
}
.promo-sidebar .author__content {
  width: 100%;
  bottom: 0;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo-sidebar .author__title {
  margin-top: 22px;
}

.promo-information {
  display: flex;
  justify-content: space-between;
}

.promo-information {
  border-top: 1px solid rgba(25, 27, 28, 0.1);
  margin-top: 17px;
  padding-top: 12px;
}
.promo-information .publish {
  gap: 8px;
  margin-top: 0;
}

.banner-slider--top {
  margin-top: 25px;
}

.description--max-top {
  margin-top: 24px;
}

.promo-content table thead tr, .promo-content table thead tr {
  background: linear-gradient(180deg, #2C29FF 0%, #37A0FF 162.5%) !important;
}

.promo-content table a {
  color: #F6694C !important;
}
.promo-content table a span {
  color: #F6694C !important;
}

.recommend {
  margin-top: 32px;
}
.recommend__title {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.01em;
  color: #191B1C;
}
.recommend__grid {
  margin-top: 15px;
}
.recommend__grid ol {
  flex-direction: row;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .recommend__grid ol {
    grid-template-columns: 1fr;
  }
}
.recommend__grid ol li {
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #191B1C;
  padding-left: 45px;
}
.recommend__grid ol li::before {
  left: 16px;
}
.recommend__grid ol li a {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #191B1C;
  text-decoration: none;
}

.promo-cards {
  margin-top: 46px;
}
.promo-cards .promocode-card__content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.promo-cards .promocode-card__image {
  height: 160px;
}
.promo-cards .promocode-card__title {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #191B1C;
}
.promo-cards .promocode-card__content {
  margin-top: 10px;
  line-height: 18px;
}
.promo-cards .promo-card__subtitle {
  text-align: center;
}
.promo-cards .promocode-card__copy {
  margin-top: 6px;
}

.promocode-card__border {
  border: 1px solid #F4F4F9;
  border-radius: 8px;
  margin-top: 11px;
  padding: 7px;
}

.promo-card__bonus {
  font-family: "Space Grotesk";
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #2C29FF;
  margin-top: 5px;
}

.promo-card__subtitle--top {
  margin-top: 12px;
}

.promo-cards__grid {
  display: grid;
  margin-top: 23px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .promo-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .promo-cards__grid {
    grid-template-columns: 1fr;
  }
}
.promo-cards .promocode-card {
  height: 100%;
}
.promo-cards .promocode-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.sidebar-container {
  position: sticky;
  top: 120px;
}

.promo-card-hide {
  display: none;
}