@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 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;
}
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: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}

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: -500px;
  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) {
  /*.container {
    padding: 0 15px;
  }*/
  .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;
  }
}
h1.section-main-top-start-title {
  font-family: "Gilroy 800", sans-serif;
  font-weight: 800;
  font-size: 72px;
  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: flex-start;
  justify-content: space-between;
}
.section-main-top-start {
  width: 420px;
  align-self: flex-start;
  margin-top: 50px;
}
.section-main-top-start-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 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;
}
.section-main-top-end-tablet-wrap {
  max-width: 480px;
  border-radius: 50%;
  background-color: #FB524E;
}
.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: 56px;
  margin-bottom: 31px;
}

.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;
}

.section-second {
  padding-top: 108px;
}
.section-second-wrap {
  display: flex;
  align-items: stretch;
}
.section-second-end-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  align-items: stretch;
}

.section-second-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 64px;
  line-height: 90%;
  width: 848px;
  margin-bottom: 56px;
}
.section-second-title span {
  color: #FF0337;
}

.section-second-start {
  min-width: 65%;
  margin-right: 33px;
}

.section-second-start-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #5093F3;
  border-radius: 20px;
  padding: 49px 62px 55px 36px;
}

.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: 32px;
}

.section-second-end-block {
  width: calc(50% - 10px);
  height: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FFFFFF;
  border-radius: 20px;
}

.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: 48px;
  line-height: 30px;
}
.section-second-end-block-top-text-first div {
  font-family: "Gilroy 800", sans-serif;
  font-size: 32px;
  margin-top: 5px;
  line-height: 30px;
}

.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 {
  margin-top: 88px;
}

.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;
}
.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 {
  margin-top: 88px;
  padding-bottom: 44px;
}
.section-forth-title {
  font-family: "Gilroy 800", sans-serif;
  font-size: 64px;
  line-height: 90%;
  width: 500px;
  margin-bottom: 56px;
}

.section-forth-wrap {
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  padding: 78px 30px 23px 111px;
  background-size: 100%;
  background-color: #C6DDFF;
}

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

.section-forth-left-top-block {
  margin-right: 16px;
  background: #FFFFFF;
  border-radius: 20px;
  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 {
    background-size: 112%;
    background-position-y: 100%;
    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 {
    padding: 49px 0 0;
  }

  .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;
    background-size: cover !important;
  }
  .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;
  }
}