@import url("https://fonts.googleapis.com/css2?family=Italianno&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Lora", serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(174deg, #88CDFF 1.38%, #264E62 97.57%);
}

[class*=__container] {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 200px;
}

.h2 {
  color: #149CFF;
  font-family: Italianno;
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 400;
  line-height: 80%;
}

[class*=__text] {
  color: #5E5E5E;
  font-family: Lora;
  font-size: 24px;
  font-weight: 400;
  line-height: 90%;
}
[class*=__text] a {
  color: #5E5E5E;
}

.btn {
  color: #FFF;
  font-family: Lora;
  font-size: 26px;
  font-weight: 400;
  line-height: 80%;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(174deg, #88CDFF 1.38%, #264E62 97.57%);
  box-shadow: 6px 7px 6.6px 0 rgba(22, 64, 99, 0.51);
  padding: 20px 80px;
}
@media (max-width: 767px) {
  .btn {
    padding: 20px 40px;
  }
}

.white {
  color: #fff !important;
}

.text-center {
  text-align: center;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  border-bottom: 1px solid #88CDFF;
  background: #FFF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 40;
  color: #000;
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  line-height: 80%;
}
.header__logo_active {
  color: #FFF;
}

@media (max-width: 767px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #149CFF;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
    background: #fff;
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
    background: #fff;
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
    background: #fff;
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 480px;
    padding: 100px 15px 0;
    border-radius: 0 0 80px 80px;
    background: linear-gradient(174deg, #88CDFF 1.38%, #264E62 97.57%), #FFD617;
    transition: top 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    top: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .menu__item {
    width: 100%;
  }
}
.menu__link {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 80%;
  border-radius: 100px;
  border: 2px solid #149CFF;
  background: rgba(20, 156, 255, 0.1);
  padding: 14px 40px;
  display: inline-block;
}
.menu__link_mob {
  display: none;
  color: #FFF;
  font-size: 26px;
  font-weight: 400;
  line-height: 80%;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(174deg, #88CDFF 1.38%, #264E62 97.57%);
  box-shadow: 6px 7px 6.6px 0 rgba(22, 64, 99, 0.51);
  padding: 20px 80px;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 36px auto 0;
}
@media (max-width: 767px) {
  .menu__link_mob {
    display: block;
  }
}
@media (max-width: 767px) {
  .menu__link {
    color: #fff;
    width: 100%;
  }
}

.footer {
  border-top: 1px solid #FFF;
  background: #264E62;
  padding: 40px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 40px;
  font-weight: 400;
  line-height: 90%;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 95px;
}
.footer__menu a {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 991px) {
  .footer__menu {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.footer__address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer__address a,
.footer__address p {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
.footer__subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer__subrow {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__txt {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 60px 40px;
  width: 100%;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  color: #FFF;
  font-size: 26px;
  font-weight: 400;
  line-height: 80%;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #88CDFF;
  box-shadow: 6px 7px 6.6px 0 rgba(22, 64, 99, 0.51);
  padding: 20px 60px;
}
@media (max-width: 767px) {
  .cookies__btn {
    width: 100%;
  }
}
.cookies__link {
  text-align: center;
  color: #FFF;
  font-size: 26px;
  font-weight: 400;
  line-height: 80%;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #264E62;
  box-shadow: 6px 7px 6.6px 0 rgba(22, 64, 99, 0.51);
  padding: 20px 60px;
}
@media (max-width: 767px) {
  .cookies__link {
    width: 100%;
  }
}

.hero {
  margin: 95px 0 60px;
  padding: 80px 0 22px;
  border-radius: 0 0 80px 80px;
  background: #FFF;
  box-shadow: 13px 15px 20.9px 0 rgba(22, 64, 99, 0.5);
  position: relative;
}
.hero__title {
  color: #88CDFF;
  text-align: center;
  font-size: clamp(80px, 18vw, 250px);
  font-weight: 400;
  line-height: 80%;
  margin: 12px 0 0;
}
.hero__img {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .hero__img {
    position: static;
    transform: none;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.hero__row {
  display: flex;
  gap: 16px;
  position: absolute;
  left: 0;
  bottom: 100px;
  animation: marquee 40s linear infinite;
}
@media (max-width: 991px) {
  .hero__row {
    position: static;
    transform: none;
    margin: 60px 0 20px;
  }
}
.hero__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__txt {
  color: #5E5E5E;
  font-size: 26.667px;
  font-style: italic;
  font-weight: 500;
  line-height: 80%;
}
.hero__link {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 190px auto 0;
}
@media (max-width: 991px) {
  .hero__link {
    margin: 20px auto 0;
  }
}

.about {
  margin: 60px 0;
  padding: 80px 0;
  border-radius: 80px;
  background: #FFF;
}
@media (max-width: 767px) {
  .about {
    padding: 40px 0;
  }
}
.about__text {
  margin-top: 20px;
}

.info {
  margin: 0 0 60px;
}
.info__item {
  background: url(/wp-content/themes/brodavix/img/bg-1.svg) no-repeat center/cover;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 45px;
}
@media (max-width: 991px) {
  .info__item {
    border-radius: 40px;
    background: #FFF;
    box-shadow: 10.111px 11.667px 16.256px 0 rgba(22, 64, 99, 0.5);
  }
}
@media (max-width: 767px) {
  .info__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }
}
.info__title {
  color: #88CDFF;
  font-size: clamp(40px, 7vw, 72px);
  font-style: italic;
  font-weight: 600;
  line-height: 80%;
}
.info__row {
  margin-top: 145px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .info__row {
    flex-direction: column;
    margin-top: 20px;
  }
}
.info__text {
  color: #FFF;
}
.info__text:last-child {
  margin-top: auto;
}
.info__link {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 57px auto 0;
}

.benefits {
  padding: 80px 0;
  background: #264E62;
  border-radius: 80px 80px 0 0;
}
@media (max-width: 767px) {
  .benefits {
    padding: 40px 0;
  }
}
.benefits__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .benefits__content {
    gap: 20px;
  }
}
.benefits__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 991px) {
  .benefits__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .benefits__row {
    gap: 20px;
  }
}
.benefits__num {
  color: #149CFF;
  font-size: 80px;
  font-style: italic;
  font-weight: 700;
  line-height: 90%;
}
.benefits__name {
  color: #FFF;
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  line-height: 90%;
  text-transform: uppercase;
  max-width: 379px;
  min-width: 379px;
}
@media (max-width: 991px) {
  .benefits__name {
    min-width: 100%;
  }
}
.benefits__text {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 90%;
  max-width: 568px;
}
@media (max-width: 991px) {
  .benefits__text {
    max-width: 100%;
  }
}

.catallog {
  margin: 155px 0 60px;
  padding: 80px 0;
  border-radius: 80px;
  background: #FFF;
}
@media (max-width: 767px) {
  .catallog {
    padding: 40px 0;
  }
}
.catallog__row {
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .catallog__row {
    flex-direction: column;
    align-items: center;
  }
}
.catallog__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .catallog__column {
    flex-direction: row;
  }
}

.game {
  margin: 95px 0 60px;
  padding: 80px 0;
  border-radius: 0 0 80px 80px;
  background: #FFF;
  box-shadow: 13px 15px 20.9px 0 rgba(22, 64, 99, 0.5);
}
@media (max-width: 767px) {
  .game {
    margin: 89px 0 60px;
    padding: 40px 0;
  }
}
.game__content {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media (max-width: 767px) {
  .game__content {
    flex-direction: column;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy {
  margin: 95px 0 0;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .privacy {
    margin: 89px 0 0;
  }
}
.privacy__title {
  color: #FFF;
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 43px;
}
@media (max-width: 767px) {
  .privacy__title {
    margin-bottom: 20px;
  }
}
.privacy__text {
  color: #fff;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10%);
  }
}