:root {
  --bg-color-1: #0d131c;
  --bg-color-2: #31343C;
  --action-color: #ec016e;
  --action-color-2: #74f131;
  --text-color: #ffffff;
  --text-color-2: #9ba0ae;
  --text-color-3: #9DA2AF;
  --main-color: #76d5fd;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg-color-1);
  color: var(--text-color);
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-top: 82px;
  position: relative;
  overflow-x: hidden;
}

.main-gradient {
  position: fixed;
  width: 2375px;
  height: 2155px;
  left: -278px;
  top: 219px;
  background: radial-gradient(50% 50% at 50% 50%, #4069fc 0%, rgba(13, 19, 28, 0) 100%);
  opacity: 0.45;
  pointer-events: none;
}

.wrapper {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    padding: 0 20px;
  }
}

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

.main__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--action-color);
  color: var(--text-color);
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 60px;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .main__button {
    padding: 12px 24px;
  }
}
.main__button:hover {
  opacity: 0.8;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
}

.affiliate_button {
  cursor: pointer;
}

.secondary__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  gap: 9px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 36px;
  border: 3px solid var(--action-color-2);
  border-radius: 8px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .secondary__button {
    padding: 9px 16px;
  }
}
.secondary__button:hover {
  opacity: 0.8;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
}
.secondary__button-icon {
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 1024px) {
  .secondary__button-icon {
    width: 20px;
    height: 20px;
  }
}

.header {
  background-color: var(--bg-color-1);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1480px) {
  .header__content {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header__content {
    gap: 16px;
  }
}
.header__logo {
  width: 204px;
  margin-top: 10px;
}
@media screen and (max-width: 1480px) {
  .header__logo {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 120px;
  }
}
@media screen and (max-width: 576px) {
  .header__logo {
    width: 80px;
  }
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 576px) {
  .header__buttons .main__button {
    padding: 6px 12px;
    font-size: 12px;
  }
  .header__buttons .secondary__button {
    padding: 4px 8px;
    font-size: 12px;
  }
}

.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  margin-right: 10px;
}
@media screen and (max-width: 576px) {
  .burger-menu {
    margin-right: 4px;
    width: 36px;
    height: 36px;
  }
}

.nav {
  display: flex;
  position: fixed;
  padding-top: 120px;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color-1);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
.nav.open {
  transform: translateY(0);
}
.nav__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--text-color);
  transition: all 0.3s;
  margin-bottom: 1rem;
}
.nav__link:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  padding-top: 48px;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 28px;
  }
}
.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 68px 86px 40px;
  background-image: url("../img/hero-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .hero__content {
    flex-direction: column;
    align-items: center;
  }
}
.hero__texts {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .hero__texts {
    align-items: center;
  }
}
.hero__title {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  width: 100%;
  max-width: 650px;
}
@media screen and (max-width: 1480px) {
  .hero__title {
    font-size: 42px;
    line-height: 54px;
  }
}
@media screen and (max-width: 1024px) {
  .hero__title {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .hero__title {
    font-size: 36px;
    line-height: 42px;
  }
}
.hero__subtitle {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: flex;
}
.hero__subtitle-shadow {
  position: absolute;
  font-size: 86px;
  line-height: 115px;
  font-weight: bold;
  color: #000;
  text-shadow: -4px 4px 4px rgba(0, 0, 0, 0.77);
  z-index: 1;
}
@media screen and (max-width: 1480px) {
  .hero__subtitle-shadow {
    font-size: 42px;
    line-height: 54px;
  }
}
.hero__subtitle-item {
  font-size: 86px;
  line-height: 115px;
  font-weight: bold;
  background: linear-gradient(90deg, #faddb0 0%, #bc8835 50%, #faddb0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1480px) {
  .hero__subtitle-item {
    font-size: 42px;
    line-height: 54px;
  }
}
.hero__text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 28px;
  line-height: 35px;
  margin-top: 16px;
  margin-bottom: 32px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .hero__text {
    text-align: center;
  }
}
.hero__image {
  display: flex;
  width: 100%;
  max-width: 709px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
  border-radius: 30px;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.heroBanner {
  position: relative;
  padding-top: 48px;
}
@media screen and (max-width: 768px) {
  .heroBanner {
    padding-top: 28px;
  }
}
.heroBanner__logo-mob {
  display: none;
}
@media screen and (max-width: 1024px) {
  .heroBanner__logo-mob {
    display: block;
    width: 100%;
    max-width: 74px;
    margin-bottom: 16px;
  }
}
.heroBanner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 68px 86px 40px;
  background-image: url("../img/hero-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .heroBanner__content {
    flex-direction: column;
    align-items: center;
    padding: 48px 63px 40px;
    background-image: url("../img/hero-banner_mob.png");
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__content {
    padding: 14px 24px 16px;
  }
}
.heroBanner__texts {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .heroBanner__texts {
    align-items: center;
  }
}
.heroBanner__title {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  width: 100%;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 1480px) {
  .heroBanner__title {
    font-size: 42px;
    line-height: 54px;
  }
}
@media screen and (max-width: 1024px) {
  .heroBanner__title {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .heroBanner__title {
    font-size: 22px;
    line-height: 28px;
  }
}
.heroBanner_items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .heroBanner_items {
    gap: 10px;
    padding: 24px 0;
  }
}
@media screen and (max-width: 576px) {
  .heroBanner_items {
    gap: 10px;
    padding: 16px 0;
  }
}
.heroBanner__subtitle {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(217, 217, 217, 0.1);
  -webkit-backdrop-filter: blur(2.7px);
          backdrop-filter: blur(2.7px);
  border-radius: 25px;
  box-shadow: 1.35px 2.7px 5.4px rgba(0, 0, 0, 0.76);
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .heroBanner__subtitle {
    gap: 6px;
  }
}
.heroBanner__subtitle-shadow, .heroBanner__subtitle-item {
  line-height: 120%;
  font-weight: bold;
  white-space: nowrap;
  font-size: 36px;
}
@media screen and (max-width: 1024px) {
  .heroBanner__subtitle-shadow, .heroBanner__subtitle-item {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__subtitle-shadow, .heroBanner__subtitle-item {
    font-size: 20px;
  }
}
.heroBanner__subtitle-shadow.big, .heroBanner__subtitle-item.big {
  font-size: 56px;
}
@media screen and (max-width: 1024px) {
  .heroBanner__subtitle-shadow.big, .heroBanner__subtitle-item.big {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__subtitle-shadow.big, .heroBanner__subtitle-item.big {
    font-size: 24px;
  }
}
.heroBanner__subtitle-shadow {
  position: absolute;
  color: #000;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.77);
  z-index: 1;
  margin-top: -42px;
}
@media screen and (max-width: 1024px) {
  .heroBanner__subtitle-shadow {
    margin-top: -32px;
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__subtitle-shadow {
    margin-top: -22px;
  }
}
.heroBanner__subtitle-item {
  background: linear-gradient(90deg, #faddb0 0%, #bc8835 50%, #faddb0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
.heroBanner__subtitle-text {
  line-height: 120%;
  font-weight: bold;
  white-space: nowrap;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .heroBanner__subtitle-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__subtitle-text {
    font-size: 12px;
  }
}
.heroBanner__subtitle-text.big {
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  .heroBanner__subtitle-text.big {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__subtitle-text.big {
    font-size: 16px;
  }
}
.heroBanner__subtitle:nth-child(1), .heroBanner__subtitle:nth-child(3) {
  width: 100%;
  max-width: 195px;
  height: 178px;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .heroBanner__subtitle:nth-child(1), .heroBanner__subtitle:nth-child(3) {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__subtitle:nth-child(1), .heroBanner__subtitle:nth-child(3) {
    padding: 10px;
  }
}
.heroBanner__subtitle:nth-child(2) {
  width: 100%;
  max-width: 275px;
  height: 252px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .heroBanner__subtitle:nth-child(2) {
    padding: 20px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__subtitle:nth-child(2) {
    padding: 10px;
  }
}
.heroBanner__image {
  display: flex;
  width: 100%;
  max-width: 709px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
  border-radius: 30px;
}
.heroBanner__image img {
  width: 100%;
  height: auto;
  display: block;
}

.banner {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 24px 32px;
  border-radius: 16px;
  margin: 48px 0 40px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
  background: rgba(118, 213, 253, 0.1);
}
@media screen and (max-width: 768px) {
  .banner {
    margin: 20px 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .banner {
    padding: 6px 18px;
  }
}
.banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.banner__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 54px;
  text-align: center;
  color: var(--main-color);
}
.banner__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .banner__text {
    font-size: 12px;
    line-height: 16px;
  }
}

.bannerImage {
  width: 100%;
  margin-bottom: 40px;
}
.bannerImage__image {
  width: 100%;
  height: auto;
}

.games {
  margin: 16px 0 24px;
}
.games__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games__content {
    gap: 8px;
  }
}
.games__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin: 44px 0;
}
@media screen and (max-width: 1024px) {
  .games__title {
    font-size: 22px;
    line-height: 32px;
    margin: 24px 0;
  }
}
.games__slots, .games__games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games__slots, .games__games {
    gap: 8px;
  }
}
.games__slots-item, .games__games-item {
  width: calc(12.5% - 12.25px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .games__slots-item, .games__games-item {
    width: calc(25% - 6px);
  }
}
.games__slots-item::after, .games__games-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  background: rgba(40, 40, 40, 0.67);
  background-image: url("../img/play-button.svg");
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
.games__slots-item:hover::after, .games__games-item:hover::after {
  opacity: 1;
  background-size: 60px;
}
.games__slots-item img, .games__games-item img {
  width: 100%;
  height: auto;
  display: block;
}

.games2 {
  margin: 40px 0 24px;
}
.games2__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games2__content {
    gap: 8px;
  }
}
.games2__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin: 44px 0;
}
@media screen and (max-width: 1024px) {
  .games2__title {
    font-size: 22px;
    line-height: 32px;
    margin: 24px 0;
  }
}
.games2__subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}
.games2__subtitle img {
  width: 20px;
  height: 20px;
}
.games2__subtitle span {
  font-size: 18px;
  line-height: 24px;
}
.games2__subtitle-link {
  background: var(--bg-color-2);
  border-radius: 65.5px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-color-2);
  text-decoration: none;
  margin-left: auto;
  transition: all 0.3s;
}
.games2__subtitle-link:hover {
  background: var(--bg-color-1);
  color: var(--action-color-2);
}
.games2__categories {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games2__categories {
    flex-direction: column-reverse;
  }
}
.games2__categories-items {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--text-color-2) var(--bg-color-2);
  scrollbar-gutter: stable;
}
@media screen and (max-width: 1024px) {
  .games2__categories-items {
    padding: 0 20px;
    margin: 0 -20px;
  }
}
.games2__categories-item {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-color-2);
  font-weight: 400;
}
.games2__categories-item:first-child {
  background: #0D0D0D;
  color: var(--action-color-2);
}
.games2__categories-item:hover {
  background: #0D0D0D;
  color: var(--action-color-2);
}
.games2__slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games2__slots {
    gap: 8px;
  }
}
.games2__slots-item {
  width: calc(12.5% - 12.25px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .games2__slots-item {
    width: calc(25% - 6px);
  }
}
.games2__slots-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  background: rgba(40, 40, 40, 0.67);
  background-image: url("../img/play-button.svg");
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
.games2__slots-item:hover::after {
  opacity: 1;
  background-size: 60px;
}
.games2__slots-item img {
  width: 100%;
  height: auto;
  display: block;
}
.games2__providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games2__providers {
    gap: 8px;
  }
}
.games2__providers-item {
  width: calc(14.2% - 12.25px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .games2__providers-item {
    width: calc(25% - 6px);
  }
}
.games2__providers-item:hover {
  transform: scale(1.05);
}
.games2__providers-item img {
  width: 100%;
  height: auto;
  display: block;
}

.markupText {
  position: relative;
}
.markupText:not(.title),
.markupText p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}
.markupText .title,
.markupText .title-h2,
.markupText .title-h3,
.markupText .title-h4,
.markupText h1,
.markupText h2,
.markupText h3,
.markupText h4,
.markupText h5,
.markupText h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
}
.markupText .center-text {
  text-align: center;
}
.markupText .title-h2,
.markupText h2 {
  font-size: 24px;
}
.markupText .title-h3,
.markupText h3 {
  font-size: 20px;
}
.markupText .title-h4,
.markupText h4 {
  font-size: 18px;
}
.markupText ul,
.markupText ol {
  margin-left: 24px;
  margin-top: 12px;
  margin-bottom: 24px;
}
.markupText ul li,
.markupText ol li {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.markupText .centered {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.markupText table {
  border-collapse: collapse;
  width: 100%;
  margin: 36px 0;
}
.markupText table td,
.markupText table th {
  padding: 13px 20px;
  border: 1px solid #b9b9b9;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  min-width: 300px;
}
@media screen and (max-width: 768px) {
  .markupText table td,
  .markupText table th {
    padding: 2px 4px;
    font-size: 12px;
    min-width: auto;
  }
}
.markupText table th {
  text-align: left;
  background-color: #04aa6d;
  color: white;
  background: rgba(242, 242, 245, 0.19);
}
.markupText table tr:nth-child(even) {
  background-color: rgba(242, 242, 245, 0.19);
}
.markupText table a {
  color: var(--main-color);
  text-decoration: underline;
}
.markupText__counter {
  max-width: 1042px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin: 74px 0 0px;
}
@media screen and (max-width: 1024px) {
  .markupText__counter {
    margin: 26px 0 18px;
  }
}
.markupText__counter-title {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid #76d5fd;
  border-radius: 15px 15px 0px 0px;
  font-size: 35px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .markupText__counter-title {
    font-size: 22px;
    border-radius: 10px 10px 0px 0px;
  }
}
@media screen and (max-width: 768px) {
  .markupText__counter-title {
    font-size: 14px;
  }
}
.markupText__counter-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  border: 1px solid #76d5fd;
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .markupText__counter-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .markupText__counter-item {
    min-height: 64px;
    font-size: 12px;
  }
}
.markupText__counter-item:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.markupText__counter-item:last-child {
  border-radius: 0px 0px 27px 27px;
}
@media screen and (max-width: 1024px) {
  .markupText__counter-item:last-child {
    border-radius: 0px 0px 10px 10px;
  }
}
.markupText__counter-left, .markupText__counter-right {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 50%;
  padding: 10px;
  flex: 1;
}
.markupText__counter-right {
  border-left: 1px solid #76d5fd;
}

.footer {
  padding-top: 42px;
  padding-bottom: 20px;
  position: relative;
}
.footer__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    gap: 10px;
  }
}
.footer__banner {
  width: 100%;
  margin-bottom: 12px;
}
.footer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  flex: 1;
  color: var(--text-color-2);
}
.footer a {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
  transition: all 0.3s;
}
.footer a:hover {
  opacity: 0.8;
}/*# sourceMappingURL=styles.css.map */