@font-face {
  font-family: "Circe 200";
  src: url("/fonts/Circe-Light.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circe 400";
  src: url("/fonts/Circe-Regular.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circe 700";
  src: url("/fonts/Circe-Bold.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy 800";
  src: url("/fonts/Gilroy-Extrabold.woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy 600";
  src: url("/fonts/Gilroy-Bold.woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy 300";
  src: url("/fonts/Gilroy-Light.woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova 400";
  src: url("/fonts/ProximaNova-Regular.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/IBM_Plex_Sans/IBMPlexSans-Medium.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  box-sizing: border-box;
}

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

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class] {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
}

:root {
  color-scheme: light only;
}

html,
body {
  font-family: "Circe 400", sans-serif;
  font-weight: 400;
  height: 100%;
  background: #f4f7ff;
  color: #18313F;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 135px auto 0 auto;
  background: #f4f7ff;
  overflow-x: hidden;
}

.main {
  flex: 1 0 auto;
}
.footer {
  flex: 0 0 auto;
}

a, a:visited {
  text-decoration: none;
  color: #18313F;
}

a:active {
  text-decoration: underline;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

h1, .like-h1 {
  font-family: "Gilroy 800", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 48px;
  line-height: 90%;
}

button {
  border: none;
  padding: 0;
  outline: none;
  text-decoration: none;
}
button:hover, button:active, button:visited {
  text-decoration: none;
}

.desktop-block {
  display: block;
}

.mobile-block {
  display: none;
}

.mobile-flex {
  display: none !important;
}

@media (min-width: 768px) {
  h1, .like-h1 {
    font-size: 56px;
  }
}
@media (min-width: 940px) {
  h1, .like-h1 {
    font-size: 72px;
  }
}
@media (max-width: 940px) {
  .mobile-flex {
    display: flex !important;
  }

  .desktop-block {
    display: none !important;
  }

  .mobile-block {
    display: block;
  }
}
.button {
  font-family: "Circe 700", sans-serif;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  border-radius: 8px;
  border: none;
  padding: 16px 30px;
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: 0 14px 28px rgba(47, 128, 237, 0.25);
  outline: none;
}
.button:active {
  transform: translateY(2px);
}
.button:hover, .button:active, .button:visited {
  text-decoration: none;
}
.button.red {
  color: #FFFFFF;
  background: #FB524E;
}
.button.red:hover {
  background: #DA3531;
}
.button.blue {
  color: #FFFFFF;
  background: #2f80ed;
}
.button.blue:hover {
  background: #1d539f;
}

.header {
  padding: 16px 24px 16px 24px;
  width: 100%;
  z-index: 4;
  position: fixed;
  background-color: transparent;
  box-shadow: none;
  margin: 0 auto;
  left: 0;
  top: 0;
  display: block;
  transition: all 0.5s;
}
.header.show {
  background-color: white;
  box-shadow: 0 5px 5px -5px rgba(34, 60, 80, 0.19);
}
.header-wrap {
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left img {
  width: 196px;
  height: 27px;
}
.header-right {
  display: flex;
  align-items: center;
}
.header-right-button {
  font-family: "Circe 700", sans-serif;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF !important;
  background: #FB524E;
  border-radius: 8px;
  border: none;
  padding: 16px 65px;
  cursor: pointer;
  margin-right: 23px;
  display: none;
  transition: all 0.5s;
  box-shadow: 2px 5px 7px rgba(47, 128, 237, 0.25);
}
.header-right-button.show {
  animation: show-header-button-animation 1s;
  display: block;
}
.header-right-button:active {
  transform: translateY(2px);
}
.header-right-button:hover {
  transition: all 0.3s;
  background: #DA3531;
}
.header-right-phone {
  font-family: "Gilroy 800", sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin-right: 25px;
  display: none;
}

.header-comments {
  background: transparent;
  cursor: pointer;
  outline: none;
  margin-right: 10px;
  display: none;
}
.header-comments-wrap {
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 4px 8px;
}
.header-comments-text {
  font-family: "Gilroy 800", sans-serif;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #416AF5;
  margin-left: 8px;
  transform: translateY(2px);
}
.header-comments:active {
  transform: translateY(2px);
}

.header-menu {
  height: 32px;
}

.header-menu-burger, .header-menu-close {
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  width: 32px;
  height: 32px;
  /*&.hidden {
    display: none;
  }*/
}

@keyframes show-header-button-animation {
  0% {
    transform: translateY(-30px);
    opacity: 0;
    display: block;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.menu {
  position: absolute;
  background: #fff;
  right: 0;
  left: 0;
  top: -600px;
  padding: 20px;
  transition: all 0.3s ease-out;
}

.menu-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 59px;
}
.menu-list li {
  font-family: "Circe 700", sans-serif;
  font-size: 24px;
  line-height: 35px;
  padding: 5px 0;
}
.menu-list li a {
  color: #18313F;
  transition: all 0.3s;
}
.menu-list li a:hover {
  transition: all 0.3s;
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 1300px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 940px) {
  .header-left {
    max-width: 146px;
  }
  .header-left img {
    width: 146px;
    height: 27px;
  }

  .menu-list li {
    font-size: 18px;
    line-height: 27px;
  }

  .header-comments-text {
    font-size: 10px;
    line-height: 10px;
  }
}
@media (min-width: 350px) {
  .header-comments {
    display: block;
  }
}
@media (min-width: 500px) {
  .header-comments {
    margin-right: 24px;
  }
}
.header-display-block {
  display: none;
}

@media (min-width: 730px) {
  /*.header-right-button, .header-right-phone
  {
    display: block;
  }*/
  .header-display-block {
    display: block;
  }
}
.main-title {
  font-family: "Gilroy 800", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 90%;
}

.section-main-bottom {
  margin-top: 35px;
}

.calc-blocks {
  display: flex;
  justify-content: space-between;
}
.calc-blocks-block {
  margin-top: 10px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 25px;
  padding: 32px 24px 36px 19px;
  width: calc(25% - 6px);
}
.calc-blocks-block-icon {
  width: 92px;
  height: 74px;
}
.calc-blocks-block-desc {
  font-size: 20px;
  line-height: 110%;
  margin-left: 20px;
}

@media (max-width: 1300px) {
  h1.section-main-top-start-title {
    font-size: 50px;
  }

  .calc-blocks {
    flex-wrap: wrap;
  }
  .calc-blocks-block {
    width: calc(50% - 10px);
  }
}
@media (max-width: 940px) {
  h1.section-main-top-start-title {
    font-size: 32px;
    line-height: 32px;
  }

  .section-main-bottom {
    margin-top: 0;
  }

  .calc-blocks-block {
    flex-direction: column;
    align-items: flex-start;
    width: calc(50% - 8px);
    margin-top: 16px;
    padding: 18px 0 30px 15px;
  }
  .calc-blocks-block-desc {
    font-family: "Circe 700", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    margin-left: 0;
    margin-top: 15px;
  }
}
/*.section-main {
  padding-top: 28px;
}*/
.section-main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.section-main-top-start {
  /*align-self: flex-start;*/
  /*margin-top: 50px;*/
  flex: 3;
}
.section-main-top-start-button {
  font-family: "Gilroy 600", sans-serif;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF !important;
  background: #FB524E;
  border-radius: 40px;
  border: none;
  padding: 20px 0;
  max-width: 330px;
  width: 330px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.section-main-top-start-button:hover {
  transition: all 0.3s;
  background: #DA3531;
}
.section-main-top-center {
  margin-top: 125px;
  margin-left: 10px;
}
.section-main-top-end {
  margin-left: 15px;
  flex: 2;
}
.section-main-top-end-tablet-wrap {
  /*max-width: 480px;*/
  /*border-radius: 50%;*/
}
.section-main-top-end-tablet-wrap img {
  /*filter: drop-shadow(-25px 32px 64px rgba(0, 0, 0, 0.2));*/
}

.section-main-top-start-desc {
  font-size: 24px;
  line-height: 120%;
  margin-top: 16px;
  margin-bottom: 40px;
}

.section-main-center {
  margin-top: 31px;
}
.section-main-center-wrap {
  background: #FB524E;
  border-radius: 20px;
  padding: 8px 12px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-main-center-left-text {
  font-family: "Gilroy 800", sans-serif;
  font-size: 24px;
  line-height: 90%;
  color: #FFFFFF;
  padding-right: 10px;
}

.section-main-center-left-button {
  font-family: "Circe 700", sans-serif;
  font-size: 16px;
  line-height: 100%;
  color: #FF0337;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 12px 16px;
  display: inline-block;
  margin-top: 16px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.section-main-center-left-button:hover {
  color: #FFFFFF;
  background: #FF0337;
  border: 1px solid #FFFFFF;
  transition: all 0.2s;
}

.section-main-center-right {
  align-self: flex-end;
}
.section-main-center-right img {
  min-width: 165px;
  height: 176px;
}
.top-blocks {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 20px;
}
.top-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 24px;
  border-radius: 32px;
}
.top-block:hover {
  box-shadow: 0px 0px 20px 0px #0000001A;
  color: #ED534F;
}
.top-block .left-content {
  display: flex;
  gap: 6px;
  align-items: center;
}
.top-block .text {
  font-size: 18px;
}
.top-block svg {
  flex-shrink: 0;
}

.section-second-wrap {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 32px;
}
.second-text {
  font-size: 20px;
  line-height: 110%;
  margin-top: 20px;
  padding: 0 32px 32px 32px;
}
/*.section-second-end-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  align-items: stretch;
}*/
.section-second-end-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  /*grid-template-rows: 1fr 1fr;*/
  gap: 20px;
  height: 100%;
}
.second-block-texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.second-text-small {
  font-size: 14px;
  line-height: 120%;
}
.section-second-end-wrap > .section-second-end-block:first-child .second-text-small {
  margin-top: 14px;
}
.second-text-big {
  font-size: 16px;
  font-weight: 700;
  font-family: "Circe 400", sans-serif;
}
.section-second-title {
  width: 848px;
  margin-bottom: 32px;
}
.main-title span {
  color: #FF0337;
}
.section-third-wrap {
  margin-top: 32px;
}

.section-second-start {
  background: white;
  border-radius: 24px;
}
.four-steps {
  grid-template-columns: repeat(2, auto) 60%;
  display: grid;
  gap: 20px;
  grid-template-areas:
        "A B V"
        "C D V";
}
.four-video-container {
  grid-area: V;
  background: linear-gradient(180deg, #FB524E 0%, #FF8582 100%);
  padding: 32px;
  border-radius: 20px;
  display: grid;
  grid-template-rows: repeat(6, auto);
  grid-template-areas:
        "A"
        "B"
        "B"
        "B"
        "B"
        "B";
}
.four-steps  .f1, .four-steps .f2, .four-steps .f3, .four-steps .f4 {
  background: white;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.four-steps .f1 {
  grid-area: A;
}
.four-steps .f2 {
  grid-area: B;
}
.four-steps .f3 {
  grid-area: C;
}
.four-steps .f4 {
  grid-area: D;
}

.four-steps .text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.four-steps .text-block .big {
  font-size: 24px;
  font-family: "Gilroy 600", sans-serif;
}
.four-steps .text-block .small {
  font-size: 20px;
}

.four-steps #videoPlace {
  grid-area: B;
}
#videoPlace iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.four-steps-end {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.four-steps-end .buy-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  gap: 32px;
  border-radius: 32px;
  background: white;
}
.four-steps-end .text-line {
  display: flex;
  flex-direction: column;
  font-size: 24px;
}
.four-steps-end .text-line .big {
  font-family: "Gilroy 600", sans-serif;
  font-size: 36px;
}
.main .red-button {
  flex-shrink: 0;
  text-decoration: none;
  padding: 16px 28px;
  color: white;
  font-family: "Gilroy 600", sans-serif;
  font-size: 24px;
  line-height: 120%;
  box-shadow: 0px 1px 2px 0px #0A0D120D;
  border-radius: 40px;
  background: #FB524E;
}
.four-steps-end .instruction {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 32px;
  padding: 32px;
  background: white;
}

.main .opening {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}

.main .opening .desktop-block {
  display: flex;
  flex-wrap: wrap;
}

.main .opening .content {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: "Gilroy 600", sans-serif;
  font-size: 24px;
}

.main .opening .arrow {
  display: flex;
  flex-wrap: wrap;
}
.four-steps-end .instruction .instruction-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.four-steps-end .instruction .instruction-list .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.four-steps-end .instruction .instruction-list .item .number, .what-do-section .what-do .list .item .number {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333058;
  font-family: "Gilroy 600", sans-serif;
  font-size: 14px;
  height: 30px;
  width: 30px;
  border-radius: 6px;
  background: #F6F6F6;
  flex-shrink: 0;
  flex-grow: 0;
}

.four-steps-end .instruction .instruction-list .item .content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.four-steps-end .instruction .instruction-list .item .content .big {
  font-family: "Gilroy 600", sans-serif;
  font-size: 20px;
  line-height: 30px;
}
.four-steps-end .instruction .instruction-list .item .content .small {
  font-size: 18px;
  line-height: 28px;
}
.big-blocks-section, .insurace-info-section, .section-forth, .section-third, .section-second, .faq-section, .line-section, .what-sports-section, .what-do-section, .section-sixth {
  margin-top: 90px;
}
.big-blocks {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.big-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.big-block .content {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.big-block:nth-child(2) .content {
  flex-direction: row-reverse;
}
.big-block .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border-radius: 32px;
  padding: 32px;
}
.big-block:nth-child(1) .image-container {
  background: radial-gradient(70.49% 61.43% at 50% 87.14%, rgba(249, 251, 253, 0) 0%, #D4E6FE 100%);
  flex: 1 1 30%;
}
.big-block:nth-child(1) .info {
  flex: 1 1 70%;
}
.big-block:nth-child(2) .image-container {
  background: radial-gradient(61.89% 53.94% at 50% 79.65%, rgba(255, 234, 239, 0) 0%, #FFC0E3 100%);
  flex: 1 1 25%;
}
.big-block:nth-child(2) .info {
  flex: 1 1 75%;
}
.big-block:nth-child(3) .image-container {
  background: radial-gradient(70.49% 61.43% at 50% 87.14%, rgba(249, 251, 253, 0) 0%, #FED4D5 100%);
  flex: 1 1 35%;
}
.big-block:nth-child(3) .info {
  flex: 1 1 65%;
}
.big-block .image-container {
  border-radius: 32px;
}
.big-block .image {
  width: 100%;
  height: 100%;
}
.big-block:nth-child(1) .image {
  background: center bottom no-repeat url("/i/main/b1.png");
}
.big-block:nth-child(2) .image {
  background: center no-repeat url("/i/main/b2.png");
}
.big-block:nth-child(3) .image {
  background: center no-repeat url("/i/main/b3.png");
}
.big-block .text {
  font-size: 24px;
  line-height: 110%;
  color: #333058;
}
.big-block .text > div:nth-child(2) {
  margin-top: 32px;
}
.big-block .content .text a {
  text-decoration: underline;
}

#instruction-content, #info-insurance, #sports-container {
  display: none;
}

.main .insurance-info {
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(347px, 1fr));
  grid-template-rows: repeat(2, minmax(152px, 1fr)) auto;
  display: grid;
  gap: 20px;
  grid-template-areas:
    "A B"
    "C D"
    "E E";
}
.main .insurance-info .small-block:nth-child(1) {
  grid-area: A;
}
.main .insurance-info .small-block:nth-child(2) {
  grid-area: B;
}
.main .insurance-info .small-block:nth-child(3) {
  grid-area: C;
}
.main .insurance-info .small-block:nth-child(4) {
  grid-area: D;
}
.main .insurance-info .big-block {
  grid-area: E;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main .insurance-info .big-block, .main .insurance-info .small-block {
  background: white;
  padding: 32px;
  border-radius: 32px;
}
.main .insurance-info .small-block {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.main .insurance-info .small-block .text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 18px;
  line-height: 28px;
}
.main .insurance-info .small-block .text-block .big {
  font-family: "Gilroy 600", sans-serif;
  font-size: 24px;
  line-height: 30px;
}

.main .insurance-info .small-block > svg {
  flex-shrink: 0;
}
.main .insurance-info .big-block .info-insurance {
  font-size: 18px;
  line-height: 120%;
  max-width: 803px;
}

.faq-container {
  display: flex;
  margin-top: 32px;
  gap: 20px;
  align-items: stretch;
}
.faq-container > .questions {
  padding: 0 32px;
  border-radius: 32px;
  background: white;
  flex-basis: 67%;
}
.faq-container .questions .faq-item {
  cursor: pointer;
}
.faq-container .questions .item {
  transition: all 0.2s ease-out;
  padding: 32px 0;
  font-size: 18px;
  line-height: 28px;
  font-family: "Gilroy 600", sans-serif;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.faq-container .questions .faq-item.active .item {
  font-size: 24px;
}
.faq-container .questions .faq-item:not(:first-child) {
  border-top: 1px solid #E9EAEB;
}
.faq-container .questions .faq-item .content {
  max-height: 0;
  transition: all 0.5s;
  overflow: hidden;
  font-size: 18px;
}
.faq-container .questions .faq-item.active .content {
  max-height: 1000px;
  margin-bottom: 32px;
}
.faq-container .questions .faq-item .arrow {
  transition: all 0.2s ease-out;
}
.faq-container .questions .faq-item.active .arrow {
  transform: rotate(180deg);
}
.faq-container .card {
  padding-top: 32px;
  background: linear-gradient(180deg, #86FF9C 0%, #FFFFFF 100%);
  flex-basis: 33%;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.faq-container .card .top .first {
  font-family: "Gilroy 600", sans-serif;
  font-size: 32px;
  line-height: 44px;
}
.faq-container .card .mid {
  margin-top: 12px;
}
.faq-container .card .mid .first {
  font-family: "Gilroy 800", sans-serif;
  font-size: 36px;
  line-height: 44px;
  color: #FB524E;
}
.faq-container .card .second {
  font-size: 18px;
}
.faq-container .card .mid .second {
  margin-top: 8px;
}
.faq-container .card .top a {
  margin-top: 16px;
  text-decoration: none;
  color: white;
  border-radius: 24px;
  padding: 8px 14px;
  background: #FB524E;
  box-shadow: 0px 1px 2px 0px #0A0D120D;
  display: inline-block;
}
.faq-container .card img {
  align-self: stretch;
}

.line-section .line {
  display: flex;
  border-radius: 32px;
  padding: 60px;
  background: url("/images/threeangle-bg.png");
  justify-content: space-between;
  background-size: cover;
  background-position-x: right;
  align-items: center;
  gap: 32px;
}
.line-section .line .content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.line-section .line .content .text > div:nth-child(1) {
  font-family: "Gilroy 600", sans-serif;
  font-size: 36px;
  line-height: 44px;
}
.line-section .line .content .text > div:nth-child(2) {
  font-size: 24px;
  line-height: 30px;
}
.what-sports-section .top {
  margin-bottom: 20px;
  gap: 20px;
  display: flex;
  align-items: stretch;
  margin-top: 32px;
}
.what-sports-section .top .content {
  padding: 32px;
  border-radius: 32px;
  background: white;
  font-size: 24px;
}
.what-sports-section .top .image-container {
  flex-basis: 33%;
  background: radial-gradient(70.49% 61.43% at 50% 87.14%, rgba(249, 251, 253, 0) 0%, #D4E6FE 100%);
  flex-shrink: 0;
  border-radius: 32px;
}
.what-sports-section .top .image-container .image {
  background: center no-repeat url(/images/what-sports.png);
  height: 100%;
}
.what-sports-section .top .content > div:first-child {
  margin-bottom: 16px;
}
.what-sports-section .sports {
  font-family: "IBM Plex Sans", sans-serif;
  padding: 32px;
  background: white;
  border-radius: 24px;
  color: #333058
}
.what-sports-section .sports .first,  .what-sports-section .sports .second {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 24px;
}
.what-sports-section .sports .second {
  margin-top: 24px;
}
.what-sports-section .sports .item > div {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 28px;
  text-transform: uppercase;
}
.what-sports-section .sports .item > ul {
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 24px;
}
.what-sports-section .sports .item > ul li:not(:first-child) {
  margin-top: 8px;
}
.what-sports-section .sports .item > ul a {
  text-decoration: underline;;
}
.main .opening.for-sports {
  padding: 12px 20px;
  display: inline-flex;
}
.main .opening-wrapper {
  text-align: center;
  margin-top: 20px;
}
.faq-container .questions a {
  color: #1f5fcf;
  text-decoration: underline;
}
.what-do-section .what-do {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.what-do-section .what-do .list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: white;
  padding: 32px;
  border-radius: 32px;
}
.what-do-section .what-do .list .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.what-do-section .what-do .list .item .text {
  font-size: 18px;
}
.what-do-section .what-do .image-container {
  flex-shrink: 0;
  flex-basis: 30%;
  border-radius: 32px;
  background: radial-gradient(70.49% 61.43% at 50% 87.14%, rgba(249, 251, 253, 0) 0%, #D4E6FE 100%);
}
.what-do-section .what-do .image-container .image {
  background: center no-repeat url(/images/what-do.png);
  height: 100%;
}
.what-do-section .what-do .mobile-block {
  margin-top: 4px;
  font-size: 14px;
  color: #85839B;
}

.section-second-start-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #5093F3 0%, #93BFFF 100%);
  border-radius: 24px;
  padding: 23px 56px;
  box-shadow: 0px 0px 10px 0px #00000040;
}
.pinned-bottom-button {
  border-radius: 32px;
}
.section-second-start-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-second-start-right-plus {
  transition: all 0.3s;
}
.section-second-start-right-plus:hover {
  transition: all 0.3s;
  transform: scale(1.1);
}

.section-second-start-right-text {
  font-family: "Gilroy 800", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  color: #FFFFFF;
  margin-top: 16px;
}

.section-second-start-wrap > svg {
  width: 265px;
  height: 305px;
}

.section-second-end-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
}
.section-second-end-block {
  height: 100%;
}
.section-second-end-block img {
  width: 48px;
}
/*.section-second-end-block:first-child {
  padding: 50px 0 30px 26px;
  margin-bottom: 20px;
}

.section-second-end-block:nth-child(2) {
  margin-bottom: 20px;
  padding: 40px 0 29px 18px;
}

.section-second-end-block:last-child,
.section-second-end-block:nth-child(3) {
  padding: 24px 0 45px 18px;
}*/

.section-second-end-block-top-text-first {
  font-family: "Gilroy 300", sans-serif;
  font-size: 36px;
  line-height: 30px;
  margin-bottom: 12px;
}
.section-second-end-block-top-text-first div {
  font-family: "Gilroy 800", sans-serif;
  font-size: 24px;
  margin-top: 5px;
  line-height: 23px;
}

.section-second-end-block-bottom-link {
  font-family: "Proxima Nova 400", sans-serif;
  font-size: 16px;
  line-height: 30px;
  text-decoration-line: underline;
  color: #416AF5;
  transition: all 0.3s;
}
.section-second-end-block-bottom-link:hover {
  transition: all 0.3s;
  color: #2347C1;
  text-decoration: none;
}

.section-second-end-block-top-text-second {
  font-family: "Gilroy 300", sans-serif;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 20px;
}

.section-second-end-block-bottom-second-text {
  font-family: "Gilroy 800", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 29px;
}

.section-second-end-block-bottom-link-last-text {
  font-family: "Circe 700", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
}

.section-third-bottom {
  margin-top: 48px !important;
}

.hand-with-medal {
  background: #18EEB9;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding-left: 94px;
  padding-right: 70px;
  align-items: center;
}

.hand-with-medal-start {
  display: flex;
  align-items: center;
}

.hand-with-medal-plus {
  transition: all 0.3s;
}
.hand-with-medal-plus:hover {
  transition: all 0.3s;
  transform: scale(1.1);
}

.hand-with-medal-text {
  font-family: "Gilroy 800", sans-serif;
  font-size: 32px;
  line-height: 100%;
  color: #18313F;
  margin-left: 24px;
  padding-right: 10px;
}

.hand-with-medal-button {
  background: #FB524E;
  border-radius: 8px;
  font-family: "Circe 700", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #FFFFFF !important;
  padding: 16px 54px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}
.hand-with-medal-button:hover {
  transition: all 0.3s;
  background: #DA3531;
}

@media (max-width: 1300px) {
  .hand-with-medal {
    padding-left: 50px;
    padding-right: 50px;
  }

  .hand-with-medal-text {
    font-size: 25px;
  }
}


.section-third-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 64px;
  line-height: 90%;
  width: 600px;
  margin-bottom: 56px;
}

.section-third-top {
  display: flex;
  align-items: stretch;
}

.section-third-top-start-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section-third-top-start-block-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.02em;
  padding-top: 26px;
  padding-bottom: 24px;
}

.section-third-top-start-block-desc {
  font-size: 20px;
  line-height: 110%;
}

.section-third-top-start-block {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin: 8px 0;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 22px 0 22px 16px;
}

.section-third-top-end {
  min-width: 53%;
  margin-left: 59px;
  background: #FB524E;
  border-radius: 20px;
  padding: 75px 20px 82px;
  display: flex;
  align-items: center;
  justify-content: center;

}
.section-third-top-end-text {
  font-family: "Gilroy 800", sans-serif;
  font-size: 32px;
  line-height: 100%;
  color: #FFFFFF;
  margin-bottom: 40px;
  grid-area: A;
  text-align: center;
}
.section-third-top-end #videoPlace {
  width: 100%;
  height: calc(100vw * 0.5);
  max-height: 300px;
  max-width: 600px;
}
.section-third-top-end #videoPlace iframe {
  width: 100%;
  height: calc(100vw * 0.5);
  max-height: 300px;
  max-width: 600px;
}

.section-third-top-end-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  width: 100%;
}

.section-third-top-end-play {
  transition: all 0.3s;
}
.section-third-top-end-play:hover {
  transition: all 0.3s;
  transform: scale(1.1);
}

.section-forth-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 64px;
  line-height: 90%;
  width: 500px;
  margin-bottom: 56px;
}

.section-forth-wrap-bg {
  background: #C6DDFF;
  border-radius: 20px;
}
.section-forth-wrap {
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  padding: 78px 30px 23px 111px;
  background-color: #C6DDFF;
  margin-top: 32px;
  background-size: cover;
  background-position: right bottom;
}

.section-forth-left-top {
  display: flex;
  margin-bottom: 42px;
}

.section-forth-left-top-block {
  margin-right: 16px;
  background: #FFFFFF;
  border-radius: 24px;
  width: 164px;
  height: 135px;
  padding-top: 24px;
  padding-left: 24px;
}

.section-forth-left-top-block-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 40px;
  line-height: 100%;
}
.section-forth-left-top-block-desc {
  font-size: 18px;
  line-height: 100%;
  margin-top: 12px;
}

.section-forth-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #FFFFFF;
  border-radius: 30px;
  justify-content: space-between;
  align-self: flex-end;
  width: 345px;
  height: 345px;
  padding: 20px 0;
}

.partner-item {
  margin: 0 20px;
  background-image: url("/images/partners.webp");
  height: 61px;
  width: 61px;
}
.partner-item.item-1 {
  background-position: 61px 0;
}
.partner-item.item-2 {
  background-position: 122px 0;
}
.partner-item.item-3 {
  background-position: 183px 0;
}
.partner-item.item-4 {
  background-position: 244px 0;
}
.partner-item.item-5 {
  background-position: 305px 0;
}
.partner-item.item-6 {
  background-position: 366px 0;
}
.partner-item.item-7 {
  background-position: 427px 0;
}
.partner-item.item-8 {
  background-position: 488px 0;
}
.partner-item.item-9 {
  background-position: 549px 0;
}
.partner-item.item-10 {
  background-position: 610px 0;
}
.partner-item.item-11 {
  background-position: 671px 0;
}
.partner-item.item-12 {
  background-position: 732px 0;
}

.section-fifth {
  padding: 44px 0 140px;
}

.section-fifth-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 64px;
  line-height: 90%;
  width: 500px;
  margin-bottom: 56px;
}

.section-fifth-wrap {
  display: flex;
  justify-content: space-between;
}

.section-fifth-start {
  width: 100%;
}

.accordion-item {
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 14px;
}
.accordion-item-title {
  position: relative;
  padding: 0 20px 0 20px;
  height: 100px;
  margin-bottom: 2px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.accordion-item-title-text {
  transition: all 0.2s ease-out;
  font-family: "Circe 700";
  text-decoration: none;
  font-size: 24px;
  line-height: 120%;
  flex: 1;
}
.accordion-item-title-arrow {
  transition: all 0.2s ease-out;
  height: 25px;
}
.accordion-item-content {
  font-family: "Circe 400";
  font-size: 24px;
  line-height: 140%;
  max-height: 0;
  transition: all 0.5s;
  overflow: hidden;
}
.accordion-item-content-inner {
  padding: 16px 20px 37px 20px;
}
.accordion-item.active .accordion-item-title-arrow {
  transform: rotate(180deg);
}
.accordion-item.active .accordion-item-title-text {
  font-size: 40px;
}
.accordion-item.active .accordion-item-content {
  max-height: 1000px;
}

.accordion__content-first {
  margin-bottom: 30px;
}

@media (max-width: 940px) {
  .accordion-item-title {
    padding: 16px;
    height: 60px;
  }
  .accordion-item-title-text {
    font-size: 18px;
    line-height: 18px;
    width: 85%;
    display: inline-block;
  }
  .accordion-item-title-arrow {
    width: 24px;
    height: 24px;
  }
  .accordion-item-content {
    font-size: 18px;
    line-height: 140%;
  }
  .accordion-item-content-inner {
    padding: 10px 16px 16px 16px;
  }
  .accordion-item.active .accordion-item-title-text {
    font-size: 18px;
  }
}
.section-fifth-end {
  margin-left: 56px;
  min-width: 494px;
}
.section-fifth-end-wrap {
  background: #25FDC7;
  border-radius: 20px;
  padding: 76px 19px 0;
  margin-top: -40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-fifth-end-wrap-img {
  height: 254px;
  width: 456px;
}

.section-fifth-end-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
  background: #18313F;
  border-radius: 20px;
  padding: 30px 94px 70px;
}

.section-fifth-end-wrap-title {
  font-family: "Circe 700", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
}

.section-fifth-end-wrap-tel {
  font-family: "Gilroy 800", sans-serif;
  font-size: 48px;
  line-height: 100%;
  margin-top: 89px;
  margin-bottom: 8px;
}
.section-fifth-end-wrap-tel a {
  color: #18313F;
}

.section-fifth-end-wrap-tel-desc {
  font-size: 24px;
  line-height: 100%;
  text-align: center;
}

.section-fifth-end-wrap-button {
  font-family: "Circe 700", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  background: #FFFEB3;
  border-radius: 40px;
  padding: 11px 46px;
  cursor: pointer;
  margin-top: 89px;
  margin-bottom: 67px;
  transition: all 0.3s;
  color: #000000;
}
.section-fifth-end-wrap-button:hover {
  transition: all 0.3s;
  background: #EFEFA2;
}

.section-sixth {
  padding-top: 70px;
  padding-bottom: 96px;
  background: #fff;
}

.section-sixth-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 59px;
}
.section-sixth-list li {
  font-family: "Circe 700", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
}
.section-sixth-list li a {
  color: #18313F;
  transition: all 0.3s;
}
.section-sixth-list li a:hover {
  transition: all 0.3s;
  opacity: 0.8;
  text-decoration: underline;
}

.section-sixth-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 32px;
  line-height: 100%;
  margin: 59px 0 52px;
}

.section-sixth-wrap {
  display: flex;
  justify-content: space-between;
}

.section-sixth-block {
  width: calc(25% - 15px);
  padding: 18px 0 37px 25px;
  transition: all 0.3s;
}
.section-sixth-block:hover {
  transition: all 0.3s;
  transform: scale(1.05);
}

.section-sixth-block:first-child {
  background: #FFB1B0;
  border-radius: 25px;
}
.section-sixth-block:first-child:hover {
  background: #ec9d9c;
}

.section-sixth-block:nth-child(2) {
  background: #C6DDFF;
  border-radius: 25px;
}
.section-sixth-block:nth-child(2):hover {
  background: #b0cbf3;
}

.section-sixth-block:nth-child(3) {
  background: #25FDC7;
  border-radius: 25px;
}
.section-sixth-block:nth-child(3):hover {
  background: #18ecb7;
}

.section-sixth-block:last-child {
  background: #FFFEB3;
  border-radius: 25px;
}
.section-sixth-block:last-child:hover {
  background: #f1ef9b;
}

.section-sixth-block-text {
  font-family: "Circe 700", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #3B3B39;
  margin-top: 44px;
}

footer {
  padding-bottom: 55px;
  background: #fff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 12px;
  line-height: 18px;
  color: rgba(24, 49, 63, 0.5);
}

.footer-right {
  /*&-row {*/
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
  max-width: 280px;
  justify-content: flex-end;
  /*}*/
}
.footer-right div {
  margin: 0 10px 10px 0;
}
.footer-right div a {
  height: 36px;
  display: block;
}
.footer-right img {
  max-width: 106px;
  max-height: 44px;
}

.pinned-bottom-button {
  padding-right: 65px;
  padding-left: 65px;
}

/*.pinned-bottom-button {
  font-family: 'Circe 700', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF !important;
  background: $niceRed;
  border-radius: 8px;
  border: none;
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s;
  max-width: 350px;
  width: 100%;
  margin: 0 15px;
  box-shadow: 0 5px 20px 0 rgba(227, 17, 69, 0.5), inset 0 5px 15px 0 rgba(255, 255, 255, 0.2);

  &:hover {
    transition: all 0.3s;
    background: #DA3531;
  }
}*/
.pinned-bottom-button-wrap {
  padding-top: 10px;
  padding-bottom: 37px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  display: flex;
  justify-content: center;
}

@media (max-width: 1300px) {
  .footer-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-left {
    margin-bottom: 28px;
    width: 100%;
  }

  .footer-right {
    max-width: none;
  }
}
@media (max-width: 940px) {
  footer {
    padding-bottom: 87px;
  }

  .footer-right {
    width: 100%;
    justify-content: center;
    margin-bottom: 71px;
  }
}
@media (max-width: 1300px) {
  /*.main h2,*/
  .section-third-title {
    font-size: 45px;
  }

  /*.section-main-top-start {
    margin-top: 70px;
  }*/

  /*.section-second-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }*/
  /*.section-second-start {
    min-width: 100%;
    margin-right: 0;
  }*/
  /*.section-second-end {
    margin-top: 15px;
  }*/
  /*.section-second-end-block {
    padding: 50px 0 30px 26px !important;
    margin-bottom: 15px;
  }*/

  .section-third-top {
    flex-direction: column-reverse;
  }

  .section-third-top-start {
    width: 100%;
  }

  .section-third-top-end {
    min-width: 100%;
    margin-left: 0;
  }

  .section-forth-wrap {
    padding: 25px 20px 20px 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-forth-right {
    min-width: 345px;
    height: 345px;
    padding: 20px 0;
    margin-top: 40px;
  }

  /*.section-forth-left-bottom {
    justify-content: center;
    display: flex;
  }*/
  .section-fifth-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-fifth-end {
    margin-top: 40px;
    margin-left: 0;
  }

  .section-fifth {
    padding: 44px 0 50px;
  }

  .section-sixth-list {
    flex-wrap: wrap;
    padding: 0 10px !important;
  }

  .section-sixth-list li {
    width: 25%;
  }

  .section-sixth-wrap {
    flex-wrap: wrap;
  }

  .section-sixth-block {
    width: calc(50% - 8px);
    margin-bottom: 16px;
  }

  .section-sixth {
    padding-bottom: 50px;
  }
}
@media (max-width: 940px) {
  .section-main-top-end {
    /*display: none;*/
  }

  .section-main-top-start {
    width: auto;
    margin-top: 0;
  }

  /*.main h2 {
    font-size: 32px;
    line-height: 100%;
    width: auto;
    margin-bottom: 39px;
  }*/

  /*.section-main-top-start-desc {
    font-family: "Circe 700", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    margin-top: 12px;
    margin-bottom: 0;
  }*/

  .section-main-top-center {
    margin-top: 0;
    margin-left: 0;
    margin-right: 15px;
  }
  .section-main-top-center_five_minuts {
    width: 90px;
    height: 87px;
  }

  /*.section-second-start-wrap {
    position: relative;
    padding: 0 19px 20px 20px;
    justify-content: center;
  }*/
  /*.section-second-start-wrap svg {
    margin-top: -23px;
  }*/

  /*.section-second-start-right-text {
    position: absolute;
    text-align: left;
    font-size: 22px;
    line-height: 20px;
    left: 43%;
    bottom: 18%;
    transform: translateX(-50%);
  }*/

  /*.section-second-end-block {
    justify-content: center;
  }*/

  .section-second-end-block-top-text-second-mobile {
    font-family: "Gilroy 800", sans-serif;
    font-size: 32px;
    line-height: 30px;
    margin-bottom: 8px;
  }

  .section-second-end-block-bottom-second-text {
    font-size: 16px;
    line-height: 120%;
  }

  .section-second-end-block-bottom-link-last-text {
    font-size: 18px;
    margin-top: 19px;
  }

  /*.section-second-end-block {
    padding: 16px 0 29px 15px !important;
    margin-bottom: 15px !important;
    width: calc(50% - 8px);
  }*/

  .section-third {
    padding: 0;
  }

  .section-third-title {
    font-size: 32px;
    line-height: 100%;
    width: auto;
    margin-bottom: 39px;
  }

  .section-third-top-end {
    padding: 48px 0 20px 0;
  }
  /*.section-third-top-end-text {
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 24px;
  }*/
  .section-third-top-end #videoPlace {
    max-height: 450px;
    max-width: 900px;
  }
  .section-third-top-end #videoPlace iframe {
    max-height: 450px;
    max-width: 900px;
  }

  .section-third-top-start-block-desc {
    font-family: "Circe 700", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    margin-top: 24px;
  }

  .section-third-top-start-wrap {
    margin-top: 16px;
  }

  .section-third-top-start-block {
    margin: 0 0 16px;
    padding: 20px 12px 30px;
  }

  .section-third-top {
    margin-bottom: 0;
  }

  .section-forth {
    padding: 0;
  }

  .section-forth-wrap {
    background: transparent;
    padding: 0;
  }

  .section-forth-left {
    width: 100%;
  }

  .section-forth-left-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #C6DDFF;
    border-radius: 25px;
    padding: 63px 0 51px;
    margin-bottom: 16px;
  }
  .section-forth-left-bottom-title {
    font-family: "Gilroy 800", sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 16px;
  }

  .section-forth-left-bottom-parachute.mobile-block {
    padding: 0 29px;
  }

  .section-forth-left-top {
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .section-forth-left-top-block {
    width: calc(50% - 6px);
    height: auto;
    margin-right: 0;
    margin-bottom: 16px;
    padding: 24px;
  }

  .section-forth-right {
    max-width: 400px;
    min-width: auto;
    margin-top: 0;
  }

  .section-fifth {
    padding: 12px 0 0;
  }

  .section-fifth-end {
    min-width: 100%;
    margin-top: 8px;
  }
  .section-fifth-end-wrap {
    margin: -40px -15px 0;
    padding: 40px 0 0;
  }
  .section-fifth-end-wrap-img {
    margin-left: -20px;
    margin-right: -20px;
  }

  .section-fifth-end-title {
    font-size: 24px;
    line-height: 100%;
    padding: 22px 30px 65px;
  }

  .section-fifth-end-wrap-title {
    font-size: 20px;
  }

  .section-fifth-end-wrap-tel {
    font-size: 32px;
    margin-top: 32px;
  }

  .section-fifth-end-wrap-tel-desc {
    font-size: 16px;
  }

  .section-fifth-end-wrap-button {
    font-size: 18px;
    line-height: 27px;
    margin-top: 43px;
    margin-bottom: 51px;
  }

  .section-sixth-list li {
    width: 47%;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 27px;
  }

  .section-sixth {
    padding-top: 67px;
    padding-bottom: 8px;
  }

  .section-sixth-title {
    margin: 25px 0 28px;
  }

  .section-sixth-block-text {
    font-size: 16px;
    margin-top: 14px;
  }

  .section-sixth-block-img {
    max-width: 45%;
  }

  .section-sixth-block {
    padding: 16px 10px 15px 19px;
  }
}
@media (max-width: 500px) {
  .section-second-start-right-text {
    left: 37%;
  }
}
.b-popup {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 5;
  /*&-body-video {
    text-align: center;
    margin-top: 20px;
    iframe {
      width: 560px;
      height: 315px;
    }
  }*/
  /*.swiper-slide
  {
    border: solid 1px red;
    height: auto;
    display: flex;
    min-width: 410px;
    flex-basis: 410px;

    &-top-left {
      width: 64px;
      img {
        width: 64px;
        height: 64px;
        border-radius: 50%;
      }
    }

    &-top-right {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin-left: 22px;
      padding: 5px 0;
      flex: 1;
    }

    &-inner {
      margin-right: 20px;
      padding: 30px 35px 10px 30px;
      background: #FFFEB3;
      border-radius: 30px;
      height: 100%;
      width: 100%;
      // min-width: 350px;
    }
  }

  .swiper-slide-top {
    display: flex;
  }

  .swiper-slide-top-right-title {
    font-family: 'Gilroy 800';
    font-size: 20px;
    line-height: 120%;
  }

  .swiper-slide-top-right-desc {
    font-family: 'Gilroy 300';
    font-size: 20px;
    line-height: 140%;
    color: #989898;
  }

  .swiper-slide-center {
    display: flex;
    justify-content: center;
    margin-top: 33px;
    margin-bottom: 31px;
  }*/
  /*.rating-result > span::before {
    content: '';
    background: url("/images/ratinggray.png") no-repeat;
    width: 14px;
    height: 14px;
    display: block;
  }

  .rating-result > span.active::before {
    background: url("/images/rating.png") no-repeat;
    width: 14px;
    height: 14px;
  }

  .rating-result > span.active50::before {
    background: url("/images/ratinggray50.png") no-repeat;
    width: 14px;
    height: 14px;
  }*/
}
.b-popup.visible {
  display: block;
}
.b-popup.visible .b-popup-content {
  animation: popupshow-animation 0.5s;
}
.b-popup .overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.602;
}
.b-popup-content {
  margin: 80px auto 0;
  position: relative;
  width: 921px;
  /*&.video {
    width: 650px;
    .b-popup-body {
      padding-bottom: 20px;
    }
  }*/
}
.b-popup-inner {
  padding: 10px 10px 15px 10px;
  background: #fff;
  box-shadow: 0 10px 15px 0 rgba(46, 62, 101, 0.15);
  border-radius: 10px;
}
.b-popup .callback-title {
  font-family: "Gilroy 800";
  font-size: 32px;
  line-height: 100%;
  text-align: center;
}
.b-popup-head {
  display: flex;
  flex-direction: column;
}
.b-popup .modal-close {
  align-self: flex-end;
  cursor: pointer;
  transition: all 0.3s;
  width: 24px;
  height: 24px;
}
.b-popup .modal-close:active {
  transform: rotate(-180deg);
}
.b-popup .rating-result {
  display: flex;
}
.b-popup .rating-result span {
  padding: 0;
  margin: 0 1.5px;
  line-height: 1;
}
.b-popup .swiper-slide-bottom {
  font-family: "Gilroy 300";
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  width: 95%;
}
.b-popup .swiper-button-prev, .b-popup .swiper-button-next {
  top: 100px;
  left: auto;
  position: absolute;
  cursor: pointer;
}
.b-popup .swiper-button-prev::after, .b-popup .swiper-button-next::after {
  content: "";
  display: block;
  width: 7px;
  height: 12px;
}
.b-popup .swiper-button-prev {
  right: 50px;
  /*&::after {
    background: url("/images/slideprev.png");
  }*/
}
.b-popup .swiper-button-next {
  right: 10px;
  /*&::after {
    background: url("/images/slidenext.png");
  }*/
}

@media (max-width: 940px) {
  .b-popup {
    /*.tabs-list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;

      &-item {
        padding: 7px;
        border-radius: 50%;
        border: 2.5px solid transparent;
        margin-bottom: 5px;
        cursor: pointer;
      }

      &-item.active {
        border: 2.5px solid $niceRed;
      }

      img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
      }
    }*/
  }
  .b-popup-content {
    margin: 15px auto 0;
    position: relative;
    max-width: 375px;
    width: 100%;
    overflow: auto;
  }
  .b-popup-inner {
    padding: 16px 16px 30px 12px;
  }
  .b-popup .modal-close {
    margin-right: -4px;
  }
}
@media (max-width: 380px) {
  .b-popup-content {
    margin: 0;
    height: 100vh;
  }
  .b-popup-inner {
    border-radius: 0;
  }
}
@keyframes popupshow-animation {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.vertical-comments {
  overflow: scroll;
  max-height: 70vh;
  margin-top: 32px;
}
.vertical-comments .tab-content {
  padding-bottom: 50px;
}
.vertical-comments-wrapper {
  display: flex;
  transition: all 0.3s;
  left: 0;
  flex-direction: column;
}

.horizontal-comments-outside {
  justify-content: space-between;
  display: none;
  margin-top: 32px;
}
.horizontal-comments-outside-arrow {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.horizontal-comments {
  overflow-x: hidden;
  overflow-y: hidden;
  max-height: 500px;
  margin-bottom: 15px;
}
.horizontal-comments-wrapper {
  display: flex;
  transition: all 0.3s;
  left: 0;
}
.horizontal-comments-wrapper .tab-content {
  min-width: 350px;
}
.horizontal-comments-wrapper .tab-content-bottom {
  overflow: hidden;
  max-height: 140px;
  text-overflow: "-";
  padding: 0 5px;
}

@media (min-width: 940px) {
  .vertical-comments {
    display: none;
  }

  .horizontal-comments-outside {
    display: flex;
  }
}
.tab-content {
  max-width: 350px;
}

.tab-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tab-content-top {
  background: #FFFEB3;
  border-radius: 30px;
  padding-top: 30px;
  padding-bottom: 28px;
  width: 100%;
  max-width: 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tab-content-top img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.tab-content-top .tab-content-top-right-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 5px;
}
.tab-content-top .tab-content-top-right-desc {
  font-family: "Gilroy 300", sans-serif;
  font-size: 20px;
  line-height: 140%;
  color: #989898;
}

.tab-content-center {
  margin-top: 29px;
  margin-bottom: 21px;
}

.tab-content.active {
  display: block;
}

.tab-content-bottom {
  font-family: "Gilroy 300";
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  padding: 0 10px;
  transition: all 0.3s;
  max-width: 240px;
}

.info-text {
  font-size: 18px;
  line-height: 120%;
  margin-top: 12px;
}

@media (min-width: 940px) {
  .info-text {
    font-size: 24px;
    line-height: 120%;
  }
}
.info-docs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}
.info-docs-col {
  flex: 1;
}
.info-docs--item {
  font-family: "Gilroy 800", sans-serif;
  font-size: 24px;
  font-weight: 800;
  background-color: white;
  margin-bottom: 16px;
  padding: 29px 33px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  color: #000000;
}
.info-docs--item-title {
  margin-left: 32px;
}

@media (min-width: 1200px) {
  .info-docs {
    flex-direction: row;
  }
  .info-docs-col:first-child {
    margin-right: 10px;
  }
  .info-docs-col:last-child {
    margin-left: 10px;
  }
  .info-docs--item:last-child {
    margin-bottom: 0;
  }
}
.info-comments {
  background-color: white;
  padding: 15px;
  margin-top: 60px;
}

.info-comment {
  margin: 40px;
}
.info-comment-images-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.info-comment-images-row-image {
  margin-right: 20px;
}
.info-comment-images-row-image img {
  width: 36px;
  height: 36px;
}
.info-comment-images-row-name-name {
  font-family: "Circe 400", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
.info-comment-images-row-name-count {
  font-size: 14px;
  line-height: 14px;
  color: gray;
}
.info-comment-rating-row {
  font-family: "Circe 400", sans-serif;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  align-items: center;
}
.info-comment-rating-row-stars {
  margin-right: 10px;
}
.info-comment-rating-row-before {
  color: gray;
  transform: translateY(-2px);
}
.info-comment-text {
  margin-top: 5px;
  max-width: 950px;
}
.info-comment:last-child {
  margin-bottom: 0;
}

.info-more-comments {
  margin-top: 30px;
  text-align: center;
}
.info-more-comments button {
  padding-right: 65px;
  padding-left: 65px;
}

@media (min-width: 500px) {
  .info-comments {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .info-comments {
    padding: 60px;
  }

  .info-comment {
    margin-bottom: 50px;
  }
}

a.tg-button {
  gap: 8px;
  text-decoration: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  box-sizing: border-box;
  width: 164px;
  border: 1px solid rgba(255, 255, 255, 0.082);
  color: white;
  font-size: 16px;
  border-radius: 32px;
  padding: 0 12px;
  height: 48px;
  background: #514e70;
  cursor: pointer;
  margin-bottom: 15px;
  transition: .2s;
}
.tg-button svg {
  width: 24px;
  height: 24px;
  fill: white;
  transition: .2s;
  margin-left: -10px
}
.tg-button:hover {
  color: #514e70;
  background: white;
  outline: solid 1px #514e70;
}
.tg-button:hover svg {
  fill: #514e70;
}
.tg-button span {
  margin-bottom: -4px;
}
.section-main-top-text {
  margin-top: 30px;
}
.hand-with-medal-button {
  width: 280px;
  font-size: 18px;
  padding: 16px 40px;
}
.hand-with-medal-end {
  margin-left: 10px;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-end;
}

.hand-with-medal-end img {
  height: 80%;
}
.red {
  color: #FB524E;
  font-weight: bold;
}
.defense-type p {
  font-size: 18px;
}
.section-defense-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 32px;
  line-height: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}
.defense-container {
  justify-content: center;
  margin-top: 25px;
  display: grid;
  grid-template:  "a b c d e f";
  gap: 24px;
}
@media screen and (max-width: 2042px){
  .defense-container {
    grid-template:  "a b c d" ". e f .";
  }
}
@media screen and (max-width: 1360px){
  .defense-container {
    grid-template:  "a b c" "d e f";
  }
}
@media screen and (max-width: 1024px){
  .defense-container {
    grid-template:  "a b" "c d" "e f";
  }
}
@media screen and (max-width: 688px){
  .defense-container {
    grid-template:  "a" "b" "c" "d" "e" "f";
  }
}
.defense-1 {grid-area: a;}
.defense-2 {grid-area: b;}
.defense-3 {grid-area: c;}
.defense-4 {grid-area: d;}
.defense-5 {grid-area: e;}
.defense-6 {grid-area: f;}

.defense-container > * {
  box-sizing: border-box;
  background: white;
  border-radius: 24px;
  width: 302px;
  height: 416px;
  padding-top: 30px;
  padding-left: 35px;
  padding-right: 35px;
}
.defense-text-container {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}
.defense-price-container {
  margin-top: 20px;
  font-size: 20px;
}
a.defense-link {
  transition: all 0.3s;
  color: white;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
  height: 50px;
  display: block;
  border-radius: 8px;
  background: #FB524E;
  margin-top: 20px;
  text-decoration: none;
}
a.defense-link:hover {
  background: #DA3531;
}
.sport-types-container {
  justify-content: center;
  margin-top: 25px;
  display: grid;
  grid-template:  "a b c d";
  gap: 24px;
}

@media screen and (max-width: 1360px){
  .sport-types-container {
    grid-template:  "a b c" ". d .";
  }
}
@media screen and (max-width: 1024px){
  .sport-types-container {
    grid-template:  "a b" "c d";
  }
}
@media screen and (max-width: 688px){
  .sport-types-container {
    grid-template:  "a" "b" "c" "d";
  }
}
.sport-type-1 {grid-area: a;}
.sport-type-2 {grid-area: b;}
.sport-type-3 {grid-area: c;}
.sport-type-4 {grid-area: d;}
.sport-types-container > * {
  box-sizing: border-box;
  background: white;
  border-radius: 24px;
  width: 302px;
  height: 416px;
  padding-top: 30px;
  padding-left: 35px;
  padding-right: 35px;
}
.sport-types h3 {
  font-size: 32px;
  margin-top: 48px;
}
.sport-types p {
  font-size: 18px;
  margin-top: 12px;
}
.sport-type-1 .defense-text-container {
  line-height: 24px;
}
.child-defense {
  margin-top: 48px;
}
.child-defense-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 30px;
}
.child-defense-container h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
.child-defense-container p {
  font-size: 18px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1150px){
  .child-defense-container {
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 560px){
  .child-defense-container svg {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1300px) {
  .four-steps {
    grid-template-columns: repeat(2, auto) minmax(40%, 60%);
  }
  .top-blocks {
    gap: 16px;
    grid-template-columns: auto auto;
    margin-top: 40px;
  }
}
@media (max-width: 1100px) {
  .container {
    padding: 0 30px;
  }
  .main-title {
    font-size: 42px;
  }
  .section-main-top-start-desc {
    font-size: 20px;
  }
  .section-main-top-start-button {
    padding: 16px 0;
    font-size: 20px;
    line-height: 100%;
  }
  .four-steps {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr 1fr;
    display: grid;
    gap: 16px;
    grid-template-areas:
    "V V"
    "A B"
    "C D"
  }
  .four-video-container {
    grid-template-rows: repeat(5, 1fr);
    grid-template-areas:
        "A"
        "B"
        "B"
        "B"
        "B";
  }
  .four-steps-end {
    gap: 16px;
    margin-top: 16px;
  }
  .big-block:nth-child(2) .image-container {
    background: radial-gradient(61.89% 53.94% at 50% 79.65%, rgba(255, 234, 239, 0) 0%, #FFC0E3 100%);
    flex: 1 1 35%;
  }
  .big-block:nth-child(2) .info {
    flex: 1 1 65%;
  }
  .big-block:nth-child(3) .image-container {
    background: radial-gradient(70.49% 61.43% at 50% 87.14%, rgba(249, 251, 253, 0) 0%, #FED4D5 100%);
    flex: 1 1 45%;
  }
  .big-block:nth-child(3) .info {
    flex: 1 1 55%;
  }
  .big-block .text {
    font-size: 20px;
  }
  .section-forth-wrap {
    background-position: bottom;
  }
  .what-do-section .what-do {
    flex-direction: column;
    gap: 16px;
  }
  .what-do-section .what-do .list {
    padding: 16px;
    border-radius: 24px;
  }
  .what-do-section .what-do .image-container {
    border-radius: 24px;
    flex-basis: 205px;
  }
  .what-do-section .what-do .image-container .image{
    background-size: 164px;
  }
  .what-sports-section .sports .first,  .what-sports-section .sports .second {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}
@media (max-width: 940px) {
  .section-main-top {
    flex-direction: column;
  }
  .section-main-top-end {
    margin: 0 15% 0 10%;
  }
  .section-second-wrap {
    flex-direction: column;
    gap: 16px;
  }
  .section-second-start-wrap {
    flex-direction: column;
  }
  .section-second-start-wrap > svg {
    width: 200px;
  }
  .second-text {
    padding: 0 16px 16px 16px;
    font-size: 14px;
  }
  .section-second-start-wrap {
    padding-top: 16px;
  }
  .section-second-end-wrap {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
  .section-second-start-right-text {
    font-size: 16px;
    margin-top: 8px;
  }
  .section-second-start-wrap a > svg {
    width: 36px;
    height: 36px;
  }
  .section-second-end-block-top-text-first {
    font-size: 48px;
  }
  .section-second-end-block-top-text-first div, .section-second-end-block-top-text-second-mobile {
    font-size: 32px;
  }
  .section-second-end-block-top-text-second-mobile div {
    font-size: 16px;
    font-family: "Circe 400", sans-serif;
    line-height: 120%;
    margin-top: 4px;
  }
  .second-block-texts {
    font-size: 18px;
  }
  .section-second-end-block {
    gap: 25px;
  }
  .top-blocks {
    gap: 16px;
    grid-template-columns: auto auto;
    margin-top: 40px;
  }
  .top-block {
    align-items: start;
    padding: 16px;
    border-radius: 24px;
  }
  .top-block .left-content {
    flex-direction: column;
    gap: 12px;
    align-items: start;
  }
  .top-block svg {
    width: 32px;
    height: 32px;
  }
  .top-block .text {
    font-size: 14px;
    line-height: 120%;
  }
  .top-block .top-arrow {
    transform: rotate(-45deg);
  }
  .four-steps-end .instruction {
    gap: 24px;
    border-radius: 24px;
    padding: 16px;
  }
  .four-steps-end .instruction .instruction-list {
    gap: 16px;
  }
  .four-steps-end .instruction .instruction-list .item {
    gap: 8px;
  }
  .four-steps-end .instruction .instruction-list .item .content {
    gap: 2px;
  }
  .four-steps-end .instruction .instruction-list .item .content .big {
    font-size: 14px;
    line-height: 120%;
  }
  .four-steps-end .instruction .instruction-list .item .content .small {
    font-size: 14px;
    line-height: 110%;
  }
  .main .opening .content {
    font-size: 16px;
  }
  .main .opening .arrow svg {
    width: 16px;
    height: 16px;
  }
  .main .insurance-info {
    gap: 16px;
    grid-template-areas:
        "A"
        "B"
        "C"
        "D"
        "E";
    grid-template-rows: repeat(5, auto);
    grid-template-columns: minmax(auto, 1fr);
  }
  .section-forth-wrap-bg {
    background: none;
  }
  .section-forth-wrap {
    background-image: none !important;
  }
  .section-forth-left-bottom.mobile-block {
    background-image: url("/images/mobile-clouds.png");
    background-size: 100% 100%;
  }
  .section-forth-left-bottom.mobile-block > svg {
    width: 90%;
  }
  .faq-container {
    flex-direction: column;
    gap: 16px;
  }
  .what-sports-section .top {
    flex-direction: column;
    margin-bottom: 16px;
    gap: 16px;
  }
  .what-sports-section .top .image-container {
    flex-basis: 205px;
  }
  .what-sports-section .top .image-container .image {
    background-size: 164px;
  }
  .big-blocks-section, .insurace-info-section, .section-forth, .section-third, .section-second, .faq-section, .line-section, .what-sports-section, .what-do-section, .section-sixth {
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 14px;
  }
  .main-title {
    font-size: 28px;
  }
  .section-main-top-start-desc {
    margin-top: 8px;
    margin-bottom: 32px;
  }
  .section-main-top-start-button {
    width: 100%;
    max-width: none;
  }
  .section-third-top-end-text {
    font-size: 20px;
  }
  .four-steps .f1, .four-steps .f2, .four-steps .f3, .four-steps .f4 {
    gap: 12px;
  }
  .four-steps .text-block .big {
    font-size: 16px;
  }
  .four-steps .text-block .small {
    font-size: 14px;
  }
  .section-third {
    margin-top: 48px;
  }
  .four-video-container {
    grid-template-rows: repeat(3, auto);
    grid-template-areas:
        "A"
        "B"
        "B";
  }
  .four-steps-end .buy-line {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
  }
  .main .red-button {
    width: 100%;
    text-align: center;
    font-size: 20px;
  }
  .four-steps-end .text-line .big {
    font-family: "Gilroy 800", sans-serif;
    font-size: 24px;
  }
  .four-steps-end .text-line {
    font-size: 20px;
    gap: 4px;
  }
  .four-steps-end .instruction .instruction-list .item .number, .what-do-section .what-do .list .item .number {
    font-size: 12px;
    height: 24px;
    width: 24px;
  }
  .four-steps-end .instruction .opening .content {
    justify-content: space-between;
    width: 100%;
  }
  .big-blocks-section {
    margin-top: 48px;
  }
  .big-blocks {
    gap: 48px;
  }
  .big-block .info {
    border-radius: 24px;
    padding: 16px;
  }
  .big-block .text {
    font-size: 14px;
  }
  .big-block .image-container {
    border-radius: 24px;
    height: 405px;
  }
  .big-blocks .big-block .content {
    flex-direction: column;
  }
  .big-blocks .big-block .info, .big-blocks .big-block .image-container {
    flex: inherit;
  }
  .big-blocks .big-block .image {
    background-size: 50%;
  }
  .big-blocks .big-block:nth-child(2) .image {
    background-size: 85%;
  }
  .main .insurance-info .small-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .main .insurance-info .small-block .text-block {
    font-size: 14px;
    line-height: 110%;
  }
  .main .insurance-info .small-block .text-block .big {
    font-size: 16px;
    line-height: 120%;
  }
  .main .insurance-info .small-block {
    border-radius: 20px;
    padding: 16px;
  }
  .main .insurance-info .big-block {
    border-radius: 24px;
    padding: 16px;
  }
  .main .insurance-info .big-block .info-insurance {
    font-size: 14px;
    line-height: 110%;
  }
  .faq-container > .questions {
    padding: 0 16px;
    border-radius: 24px;
  }
  .faq-container .questions .item {
    padding: 16px 0;
  }
  .what-sports-section .top .content {
    font-size: 14px;
  }
  .what-do-section .what-do .list .item .text {
    font-size: 14px;
  }
  .what-sports-section .sports .first,  .what-sports-section .sports .second {
    grid-template-columns: minmax(100px, 1fr);
  }
  .what-sports-section .sports .item > ul {
    font-size: 14px;
    line-height: 110%;
  }
  .main .opening.for-sports .content {
    font-size: 14px;
    line-height: 120%;
  }
}
@media (max-width: 500px) {
  .big-block .image-container {
    height: 205px;
  }
}