* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #fff;
  --secondary-color: #071f46;
  --main-background: #002347;
  --secondary-background: #033c78;
  --main-button-background: #054588;
  --border-color: #428cdc;
  --accent-color: #f9ba15;
  --link-hover-color: #fa4d00;
  --utils-color: #fff;
  --arrow-background: right center url("/template/arrow-down.svg") no-repeat;
  --accented-button-color: linear-gradient(180deg, #e8692c 0%, #e75b28 100%);
  --accented-button-shadow: 0 10px 30px rgb(250 65 0 / 40%);
  --border-radius-main: 40px;
}

html,
body {
  font-family: Verdana, sans-serif;
  background: #07224d;
}

body {
  overflow-x: hidden;
  position: relative;
}

li {
  list-style: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #ffb801;
}

input,
button {
  font-family: Verdana, sans-serif;
  border: none;
  box-shadow: none;
  transition: 0.3s;
  cursor: pointer;
}

input {
  outline: none;
}

button {
  background-color: transparent;
}

span {
  cursor: default;
}

p,
span,
li,
a {
  line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  padding: 15px 0;
  color: var(--main-color);
}

h1 {
  font-size: 26px;
  line-height: 1.15;
}

h2 {
  font-size: 22px;
  line-height: 1.4;
}

h3 {
  font-size: 20px;
  line-height: 1.5;
}

h4 {
  font-size: 18px;
  line-height: 1.5;
}

h5,
h6 {
  font-size: 16px;
  line-height: 1.6;
}

p,
span,
li,
h1,
h2,
h3,
a,
b,
i,
label,
input,
button,
td,
tr {
  color: var(--main-color);
}

@media (max-width: 600px) {
  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5,
  h6 {
    font-size: 15px;
  }
}


.wrapper {
  height: 100%;
  margin: auto;
  max-width: 1720px;
  width: calc(100vw - 40px);
}

.accented_button {
  text-transform: uppercase;
  background: var(--accented-button-color);
}

.accented_button:hover {
  background-image: linear-gradient(0deg, #fa8100 0, #fa8100);
}

@media screen and (max-width: 1450px) {
  .wrapper {
    width: calc(100vw - 20px);
  }
}

@media screen and (max-width: 1250px) {
  .wrapper {
    width: calc(100vw - 20px);
  }
}

.header {
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, rgb(0 50 102 / 0%) 0, #003266 100%, #0a519e 100%);
  background-color: #0a519e;
  z-index: 6;
}

.header button,
.header span {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--main-color);
}

.header__container {
  padding: 16px 0;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas: "logo . auth burger";
  align-items: center;
  column-gap: 15px;
}

.header__auth {
  grid-area: auth;
  display: flex;
  gap: 10px;
}

.header__auth button {
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 15px 32px;
  border-radius: var(--border-radius-main);
}

.header__reg-btn.accented_button {
  margin-right: 0;
}

.header__login-btn {
  background: linear-gradient(180deg, #6398e4 0%, #568bd6 100%);
}

.header__login-btn:hover {
  background-image: linear-gradient(0deg, #1667c1 0, #509aea 97%, #509aea);
}

.header__dropdown {
  grid-area: burger;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 47px;
  justify-content: center;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header__dropdown input,
.header__dropdown nav {
  display: none;
}

.header__burger {
  cursor: pointer;
  z-index: 6;
  position: relative;
  width: 35px;
  height: 25px;
}

.header__dropdown:hover input ~ .header__burger {
  cursor: pointer;
  opacity: 0.8;
}

.header__dropdown nav {
  z-index: 2;
  width: 40vw;
  position: absolute;
  right: -10px;
  top: -10px;
  margin: 0;
  border-radius: 10px;
  background-color: #003266;
}

.header__dropdown nav ul {
  padding: 40px 0 15px;
}

.header__dropdown li {
  text-align: center;
}

.header__dropdown span {
  text-transform: uppercase;
  color: var(--main-color);
  font-family: Verdana;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}

.header__dropdown ul li:hover span {
  color: var(--link-hover-color);
}

.header__dropdown .active span {
  color: var(--link-hover-color);
}

.header__burger span {
  position: absolute;
  display: block;
  width: 31px;
  height: 4px;
  background-color: #428cdc;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.header__burger span:nth-child(1) {
  top: 0;
}

.header__burger span:nth-child(2) {
  top: 40%;
}

.header__burger span:nth-child(3) {
  bottom: 40%;
}

.header__burger span:nth-child(4) {
  bottom: 0px;
}

.header__dropdown :checked ~ .header__burger span:nth-child(1) {
  transform: scaleX(0);
}

.header__dropdown :checked ~ .header__burger span:nth-child(2) {
  transform: rotate(45deg);
}

.header__dropdown :checked ~ .header__burger span:nth-child(3) {
  transform: rotate(-45deg);
}

.header__dropdown :checked ~ .header__burger span:nth-child(4) {
  transform: scaleX(0);
}

.header__dropdown :checked ~ nav {
  display: inline-block;
}

.header__logo {
  grid-area: logo;
  z-index: 1;
  position: relative;
  width: 230px;
  height: 38px;
}

.header__logo_dropdown {
  display: none;
}

.header__logo img {
  height: 100%;
  width: 100%;
}

.header__logo button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1250px) {
  .header__logo_dropdown {
    display: block;
    left: 20px;
    top: 20px;
  }

  .header__dropdown nav {
    width: calc(100vw + 10px);
    top: -16px;
    border-radius: 0 0 40px 40px;
  }

  .header__dropdown span {
    color: var(--main-color);
  }
}

@media screen and (max-width: 900px) {
  .header {
    height: 70px;
  }

  .header__container {
    padding: 10px 0;
  }

  .header__auth button {
    padding: 10px 20px;
  }

  .header__logo {
    width: 160px;
    height: 30px;
  }
}

@media screen and (max-width: 600px) {
  .header {
    height: 60px;
  }

  .header__logo {
    width: 130px;
    height: 26px;
  }

  .header__auth button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .header__logo {
    width: 114px;
  }
}

@media screen and (max-width: 380px) {
  .header__auth button:first-of-type {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  #fix-button.footer-block-btn {
    display: block;
  }

  .header .header__auth {
    display: none;
  }

  .footer {
    padding-bottom: 80px;
  }

  main {
    padding-top: 70px;
  }
}


main {
  padding: 80px 0 60px;
  min-height: calc(100vh - 80px - 355px);
  background: #0a519e;
  font-family: Verdana, sans-serif;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main ol,
main ul {
  margin: 0 auto;
  width: calc(100% - 50px);
  max-width: 1400px;
}

main ol,
main ul {
  margin: 20px auto;
}

.content .general-ol {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto 20px auto;
  max-width: 1400px;
  counter-reset: counter-ol;
  padding-left: 20px;
  padding-top: 10px;
}

.content .general-ol li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  counter-increment: counter-ol;
  line-height: 1.35;
}

.content .general-ol li::before {
  position: absolute;
  content: counter(counter-ol) ".";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  top: -2px;
  left: -26px;
  font-size: 18px;
  background: #E50539;
}

.content .general-ul {
  margin-left: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 auto 20px auto;
  max-width: 1400px;
}

.content .general-ul li {
  position: relative;
  padding-bottom: 10px;
  padding-left: 35px;
  line-height: 30px;
}

.content .general-ul li::before {
  content: no-open-quote;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 5px;
  background: url("/template/soccer.svg") no-repeat;
  background-size: cover;
}

.button-block {
  padding: 24px 16px;
  text-align: center;
  margin: 10px 0;
  background-color: rgb(0 0 0 / 0%);
}

.button-block button {
  position: relative;
  overflow: hidden;
  width: 600px;
  max-width: 100%;
  padding: 16px 34px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  border-radius: 8px;
  background: #fb4d00;
  box-shadow: 0 0 12px 0 rgb(11 54 0 / 16%);
}

.button-block button::after,
.button-block button::before {
  position: absolute;
  content: no-open-quote;
  background-repeat: no-repeat;
  background-size: cover;
}

.button-block button::after {
  width: 78px;
  height: 52px;
  background-image: url("/circle_1.svg");
  left: 0;
  top: 0;
}

.button-block button::before {
  width: 135px;
  height: 68px;
  background-image: url("/circle_2.svg");
  right: -30px;
  bottom: 0;
}

.button-block button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 900px) {
  main {
    padding-top: 70px;
  }
}

@media screen and (max-width: 800px) {
  main {
    padding-top: 70px;
  }
}

@media screen and (max-width: 600px) {
  main {
    padding-top: 60px;
  }

  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6,
  main p,
  main ol,
  main ul {
    width: calc(100% - 32px);
  }

  .button-block button {
    font-size: 15px;
  }

  .content .general-ol li,
  main p {
    font-size: 14px;
    line-height: 1.2;
  }
}

.footer {
  background-color: #07224d;
  padding: 30px 0;
  text-align: center;
}

.footer-title {
  cursor: default;
  width: max-content;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.31px;
  text-align: left;
  color: #fff;
  padding: 10px 0 10px 0;
}

.footer__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 50px;
  margin: auto;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.footer__column_logo img {
  width: 262px;
  height: 44px;
  cursor: pointer;
}

.footer__column {
  text-align: left;
}

.footer__column h3 {
  cursor: default;
  width: max-content;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.31px;
  text-align: left;
}

.footer__column h3:nth-of-type(2) {
  margin-top: 20px;
}

.footer__column ul {
  display: flex;
  flex-flow: column wrap;
  height: 150px;
}

.footer__column button {
  font-size: 16px;
  font-weight: 400;
}

.footer__column li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  width: fit-content;
}

.footer__column a {
  color: var(--main-color);
  min-width: max-content;
}

.footer__column a:hover,
.footer__column button:hover {
  text-decoration: underline;
}

.footer__column span:hover {
  cursor: pointer;
}

.email-link {
  text-transform: lowercase;
  text-decoration: underline;
}

.email-link:hover {
  opacity: 0.8;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer__bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.footer__payment-icons {
  display: flex;
  gap: 10px;
}

.footer__column .social-icons a:hover,
.footer__payment-icons li:hover img {
  opacity: 0.8;
}

.footer__column_contacts button:hover {
  opacity: 0.8;
}

.footer_licence {
  margin-top: 20px;
}

.footer_licence p {
  text-align: left;
}

.footer_licence p:first-child {
  padding-bottom: 20px;
}

@media screen and (max-width: 1450px) {
  .footer__container {
    width: 100%;
    gap: 60px;
    grid-template-areas:
      "logo sports about"
      "contacts sports about";
  }

  .footer__column_about {
    grid-area: about;
  }

  .footer__column_sports {
    grid-area: sports;
  }

  .footer__column_contacts {
    grid-area: contacts;
  }

  .footer__column_logo {
    grid-area: logo;
  }
}

@media screen and (max-width: 1250px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
      "logo sports"
      "contacts sports"
      "contacts about";
  }
}

@media screen and (max-width: 900px) {
  .footer__container {
    padding-left: 10px;
    padding-bottom: 5px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas:
      "logo"
      "contacts"
      "sports"
      "about";
  }

  .footer__column ul {
    flex-direction: column;
  }

  .footer__column_contacts {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .footer__column h3:nth-of-type(2) {
    margin-top: 0;
  }

  .footer__column_sports ul {
    height: 148px;
    display: flex;
    flex-flow: column wrap;
    width: fit-content;
    column-gap: 20px;
  }

  .footer__column_sports li {
    width: fit-content;
  }

  .footer__column_about ul {
    height: auto;
  }
}

@media (max-width: 600px) {
  .footer__column a {
    font-size: 14px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 450px) {
  .footer__column_contacts {
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .footer__column_sports ul {
    height: 135px;
  }

  .footer__column_logo img {
    width: 204px;
    height: 34px;
  }

  .footer__column h3 {
    margin-bottom: 5px;
    line-height: 21.88px;
    font-size: 18px;
  }

  .footer__column li,
  .footer__column button {
    font-size: 14px;
  }

  .footer__bottom span {
    font-size: 14px;
    line-height: 17.01px;
  }
}

.general-table-wrapper {
    overflow-x: auto;
    margin: 20px auto;
}

.general-table {
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #0d3870;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(7, 34, 77, 0.5);
}

.general-table tr {
    border-bottom: 1px solid rgba(8, 81, 158, 0.3);
}

.general-table tr:last-child {
    border-bottom: none;
}

.general-table tr:hover {
    background: rgba(232, 101, 43, 0.05);
}

.general-table tr td {
  font-weight: 500;
  padding: 30px;
}

.general-table tr td:first-child {
  border-right: 1px solid #428cdc58;
}

.general-table tr th {
  padding: 20px;
}

main figure {
    max-width: 1400px;
    width: 96%;
}

.horizontal {
    margin: 20px auto;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.general-image {
    display: block;
    border-radius: 15px;
    max-height: 500px;
    max-width: 96%;
    width: auto;
    height: auto;
    margin: 0 auto 10px auto;
}

@media screen and (max-width: 970px) {
  main figure {
    width: 100%;
  } 
}

.faq-container {
  margin: 0 auto;
  width: calc(100% - 50px);
  max-width: 1400px;
}

.faq-container .faq-item {
  border: 2px solid #003266;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
  background-color: #003266;
  border-radius: 10px;
  transition: all 0.4s ease;
  padding: 20px;
}

.faq-container .faq-item:hover .icon::before,
.faq-container .faq-item:hover .icon::after {
  background: #fff;
}

.faq-container .faq-item:hover {
  border-color: #fff;
}

.faq-container .faq-question {
  color: #fff;
  position: relative;
  padding-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  padding-right: 25px;
  border-left: none;
  background-color: transparent;
  border-radius: 0px;
  margin-bottom: 0px;
  width: 100%;
}

.faq-container .faq-answer {
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  top: 10px;
  color: #fff;
  border-left: none;
  padding-left: 0;
}

.faq-container .icon {
  height: 18px;
  position: absolute;
  width: 18px;
  right: 25px;
  top: 25px;
  z-index: 2;
}

.faq-container .icon::before,
.faq-container .icon::after {
  background: #fff;
  content: no-open-quote;
  height: 4px;
  right: 0;
  position: absolute;
  top: 0;
  width: 18px;
  transition: transform 0.4s ease;
}

.faq-container .toggle {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 3;
}

.faq-container .bg-active {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
}

.faq-container .toggle:checked ~ .bg-active {
  opacity: 1;
}

.faq-container .toggle:checked ~ .icon::before,
.faq-container .toggle:checked ~ .icon::after {
  background: #fff;
}

.faq-container .toggle:checked ~ .faq-question {
  color: #fff;
}

.faq-container .toggle:not(:checked) ~ .icon::before {
  transform: rotate(180deg);
}

.faq-container .toggle:not(:checked) ~ .icon::after {
  transform: rotate(90deg);
}

.faq-container .toggle:checked ~ .faq-answer {
  height: auto;
  opacity: 1;
  z-index: 2;
  padding: 10px 0px;
}

.header__dropdown :checked ~ nav {
  display: none;
}


.footer-block-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #003266 0%, #0a519e 100%);
  padding: 10px 15px;
  z-index: 100;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.footer-block-btn .header__auth {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.footer-block-btn .header__auth button {
  flex: 1;
  max-width: 200px;
  padding: 12px 20px;
  font-size: 14px;
}

#fix-button.footer-block-btn {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  align-items: center;
  padding-right: 15px;
  padding-left: 15px;
  justify-content: center;
}

.footer-block-btn--1 {
  padding: 20px 10px;
  background: #0F1010;
  display: flex;
  align-items: center;
  padding-right: 15px;
  padding-left: 15px;
  justify-content: center;
}


.banner {
  padding-top: 15px;
  display: flex;
  gap: 20px;
  max-width: 90%;
  margin: 0 auto 20px auto;
}

.banner__main {
  position: relative;
  width: 100%;
  height: 100%;
  background: 40% 0 url(/template/banner_bg.webp) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.banner__content {
  max-width: 590px;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
  z-index: 3;
  margin-left: 20px;
}

.banner__title {
  text-transform: uppercase;
  font-size: 38px;
  font-weight: 700;
  line-height: 38.89px;
  text-align: left;
}

.banner_text {
  font-family: Tahoma, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffff6b 0%, #fdfd56 50%, #f6f62b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px hsla(60, 100%, 61%, 0.751));
}

.banner__description {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 29.17px;
  text-align: left;
}

.banner__button.accented_button {
  margin-top: 25px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.31px;
  text-align: center;
  width: fit-content;
  padding: 15px 60px;
}

.banner__image {
  height: auto;
  width: 50%;
}

@media (max-width: 1450px) {
  .banner__title {
    font-size: 28px;
  }

  .banner__description {
    font-size: 20px;
  }
}

@media screen and (max-width: 1250px) {
  .banner {
    display: flex;
    flex-direction: column;
  }

  .banner__main {
    overflow: hidden;
    position: relative;
    height: 320px;
    justify-content: flex-start;
  }

  .banner__image {
    width: 40%;
  }
}

@media (max-width: 1153px) {
  .banner__title {
    font-size: 24px;
  }

  .banner__description {
    font-size: 18px;
  }

  .banner__button.accented_button {
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 16px;
  }
}

@media (max-width: 840px) {
  .banner__title {
    font-size: 24px;
  }

  .banner__description {
    font-size: 16px;
  }

  .banner_text {
    font-size: 27px;
  }

  .banner__button.accented_button {
    padding: 15px;
    font-size: 16px;
  }

  .banner__main img {
    position: absolute;
    right: -265px;
    z-index: 1;
  }

  .banner__image {
    width: 70%;
  }

  .banner__content {
    gap: 0px;
    padding: 10px;
  }
}

@media screen and (max-width: 650px) {
  .banner__title {
    font-size: 18px;
  }

  .banner_text {
    font-size: 20px;
    font-weight: 700;
  }

  .banner__description {
    font-size: 16px;
  }

  .banner__main img {
    right: -160px;
  }
}


html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

.wrapper {
  overflow-x: hidden;
}