@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;1,400&family=Play:wght@400;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/Swiper/9.3.1/swiper-bundle.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css");
:root {
  --black: #00000e;
  --black_dd: #00000edd;
  --black_99: #00000e99;
  --black_66: #00000e66;
  --black_3: #00000e33;
  --green: #5c914f;
  --green_cc: #5c914fcc;
  --green_99: #5c914f99;
  --green_66: #5c914f66;
  --green_33: #5c914f33;
  --green_h: #406538;
  --green_bg: rgba(17, 28, 13, 0.95);
  --white: #fff;
  --whiteBorder: #fff3;
  --microTime: .2s;
  --time: .4s;
  --bigTime: .6s;
  --rad: .4rem;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
html {
  overflow-x: hidden;
  overflow-y: visible;
  overflow-y: overlay;
  font-size: 2.5vw;
  scroll-padding-top: 7.5rem;
}
@media (min-width: 768px) {
  html {
    font-size: 1.25vw;
    scroll-padding-top: 11.4rem;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 0.7142857143vw;
    scroll-padding-top: 14rem;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
html._menu-open {
  overflow: hidden;
}
@media (min-width: 768px) {
  html._menu-open {
    overflow: visible;
  }
}
html._modal-open {
  overflow: hidden;
}

body {
  font: 400 1.6rem/2rem "Montserrat", sans-serif;
  color: var(--white);
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--black);
  z-index: -1000;
}
body::-webkit-scrollbar {
  width: 1rem;
}
body::-webkit-scrollbar-track {
  background: #222;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--green);
}
body.compensate-for-scrollbar {
  margin-right: 0;
}

::selection {
  color: var(--white);
  background: var(--green);
}

.head {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .head {
    padding: 1.6rem;
    grid-template-columns: repeat(8, 1fr);
    gap: 0 1.6rem;
  }
}
@media (min-width: 992px) {
  .head {
    max-width: 136rem;
    grid-template-columns: 12rem 4.8rem repeat(10, 8.4rem);
    grid-template-rows: 0.9rem 3.6rem 2rem 1rem 3.6rem 0.9rem;
    gap: 0 3.2rem;
    margin: 0 auto;
    padding: 1rem 0;
  }
}
.head:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--black_dd);
  z-index: -1;
}
.head__logo {
  grid-area: 1/1/3/2;
}
@media (min-width: 992px) {
  .head__logo {
    grid-area: 1/1/7/2;
  }
}
.head__logoImage {
  display: block;
  height: 5.5rem;
  width: 5.5rem;
}
@media (min-width: 768px) {
  .head__logoImage {
    height: 8.2rem;
    width: 8.2rem;
  }
}
@media (min-width: 992px) {
  .head__logoImage {
    height: 12rem;
    width: 12rem;
  }
}
.head__name {
  grid-area: 1/2/2/5;
  font: 700 1.4rem/1.8rem "Play", sans-serif;
  align-self: center;
  margin: 0;
  text-transform: uppercase;
  cursor: default;
}
@media (min-width: 768px) {
  .head__name {
    grid-area: 1/2/2/7;
    font-size: 2rem;
    align-self: flex-end;
    line-height: 2.4rem;
  }
}
@media (min-width: 992px) {
  .head__name {
    grid-area: 2/2/3/9;
    font-size: 3.2rem;
    line-height: 3.6rem;
    position: relative;
    z-index: 1;
  }
}
.head__slogan {
  font: 300 1.2rem/1.4rem "Play", sans-serif;
  grid-area: 2/2/3/5;
  font-weight: 700;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .head__slogan {
    padding-top: 1rem;
    grid-area: 2/2/3/7;
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media (min-width: 992px) {
  .head__slogan {
    grid-area: 3/2/4/9;
    position: relative;
    padding-top: 0;
    z-index: 1;
    transform: translateY(0.2rem);
  }
}
.head__menu {
  grid-area: 1/6/3/7;
  width: 4rem;
  height: 4rem;
  justify-self: flex-end;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .head__menu {
    grid-area: 1/8/3/9;
  }
}
@media (min-width: 992px) {
  .head__menu {
    grid-area: 2/2/6/13;
    width: auto;
    height: auto;
    justify-self: flex-start;
    align-self: flex-start;
    position: relative;
    z-index: 0;
  }
}
.head__langs {
  grid-area: 1/5/3/6;
  display: flex;
  align-self: center;
  justify-self: flex-end;
  font: 400 1.4rem/1.6rem "Play", sans-serif;
  gap: 0.2rem;
}
@media (min-width: 768px) {
  .head__langs {
    grid-area: 1/7/3/8;
    gap: 0.4rem;
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .head__langs {
    grid-area: 2/12/3/13;
    gap: 0.6rem;
    font-size: 2rem;
    line-height: 2.8rem;
    position: relative;
    z-index: 1;
  }
}
.head__langs:before {
  content: "/";
  opacity: 0.5;
}
.head__lang {
  text-decoration: none;
  font-weight: 700;
  color: var(--white);
  opacity: 0.5;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .head__lang {
    transition: color var(--time), opacity var(--time);
  }
  .head__lang:hover {
    color: var(--green);
    opacity: 1;
  }
}
.head__lang:first-child {
  order: -1;
}
.head__lang._selected {
  pointer-events: none;
  opacity: 1;
}
.head__lang._selected:hover {
  color: var(--white);
}

.menu__burger {
  font-size: 0;
  line-height: 0;
  width: 4rem;
  height: 4rem;
  position: relative;
}
@media (min-width: 992px) {
  .menu__burger {
    display: none;
  }
}
.menu__burger:before, .menu__burger:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.2rem;
  height: 0.2rem;
  margin: -0.1rem 0 0 -1.6rem;
  background: var(--white);
}
.menu__burger:before {
  box-shadow: 0 -1rem 0 0 var(--white), 0 1rem 0 0 var(--white);
  transition: transform var(--microTime) 0s, box-shadow var(--microTime) var(--microTime);
}
._menu-open .menu__burger:before {
  transform: rotate(-45deg);
  box-shadow: 0 0 0 0 var(--white), 0 0 0 0 var(--white);
  transition: transform var(--microTime) var(--microTime), box-shadow var(--microTime) 0s;
}
.menu__burger:after {
  transition: transform var(--microTime) 0s;
}
._menu-open .menu__burger:after {
  transform: rotate(45deg);
  transition: transform var(--microTime) var(--microTime);
}
.menu__overlay {
  position: fixed;
  top: 7.5rem;
  right: -100%;
  bottom: 0;
  width: calc(100% - 7.5rem);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: right var(--bigTime), padding-left var(--bigTime), width var(--bigTime), background-color var(--bigTime);
}
@media (min-width: 768px) {
  .menu__overlay {
    top: 11.4rem;
    width: 40%;
    right: -40%;
  }
}
@media (min-width: 992px) {
  .menu__overlay {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    display: block;
  }
}
._menu-open .menu__overlay {
  right: 0;
  width: 100%;
  padding-left: 7.5rem;
}
@media (min-width: 768px) {
  ._menu-open .menu__overlay {
    padding-left: 0;
    width: 40%;
  }
}
@media (min-width: 992px) {
  ._menu-open .menu__overlay {
    right: auto;
    width: auto;
    padding-left: 0;
    background: none;
  }
}
.menu__overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 7.5rem;
  transition: opacity var(--bigTime);
  background-color: var(--green_cc);
  opacity: 0;
}
@media (min-width: 768px) {
  .menu__overlay:before {
    display: none;
  }
}
._menu-open .menu__overlay:before {
  opacity: 1;
}
.menu__box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: auto;
  align-items: flex-start;
  background: var(--black);
  gap: 1.6rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .menu__box {
    gap: 2.4rem;
  }
}
@media (min-width: 992px) {
  .menu__box {
    flex-grow: unset;
    background: none;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: 4.8rem repeat(10, 8.4rem);
    grid-template-rows: 3.6rem 3.6rem;
    gap: 3rem 3.2rem;
  }
}
.menu__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
}
@media (min-width: 992px) {
  .menu__list {
    flex-direction: row;
    gap: 2.4rem;
    grid-area: 2/1/3/8;
    align-self: center;
  }
}
.menu__item {
  text-decoration: none;
  font: 700 1.6rem/2rem "Play", sans-serif;
  text-transform: uppercase;
  color: var(--white);
  padding: 1rem;
  cursor: pointer;
  border-bottom: 0.1rem solid var(--whiteBorder);
}
@media (min-width: 768px) {
  .menu__item {
    padding: 1.6rem 2.4rem;
  }
}
@media (min-width: 992px) {
  .menu__item {
    padding: 0;
    border-bottom: none;
    transition: color var(--time);
    line-height: 2.4rem;
    font-size: 1.4rem;
  }
  .menu__item:hover {
    color: var(--green);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}
.menu__buttons {
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 768px) {
  .menu__buttons {
    margin: 0 2.4rem;
    gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .menu__buttons {
    margin: 0;
    grid-area: 2/8/3/12;
    flex-direction: row;
    align-self: center;
    justify-content: flex-end;
    gap: 2.4rem;
  }
}
.menu__button.pfa-button {
  width: auto;
  min-width: 20rem;
}
@media (min-width: 992px) {
  .menu__button.pfa-button {
    width: auto;
    min-width: 0;
  }
}
.menu__button.pfa-button._call:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: var(--white);
  margin-right: 0.8rem;
  mask: url(../img/icons/phone.svg) center center/100% no-repeat;
  -webkit-mask: url(../img/icons/phone.svg) center center/100% no-repeat;
}
@media (min-width: 992px) {
  .menu__button.pfa-button._call:before {
    transition: background-color var(--time);
  }
}
@media (min-width: 992px) {
  .menu__button.pfa-button._call:hover:before {
    background: var(--green);
  }
}
.menu__socials.pfa-socials {
  padding: 1rem;
}
@media (min-width: 768px) {
  .menu__socials.pfa-socials {
    padding: 2.4rem;
  }
}
@media (min-width: 992px) {
  .menu__socials.pfa-socials {
    grid-area: 1/9/2/11;
    padding: 0;
    justify-content: flex-end;
  }
}

.foot {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.foot:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  border-top: 0.1rem solid var(--whiteBorder);
}
@media (min-width: 768px) {
  .foot {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    gap: 1rem 2.4rem;
    padding: 2.4rem 1.6rem;
    margin-top: 2.4rem;
  }
}
@media (min-width: 992px) {
  .foot {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    max-width: 136rem;
    padding: 3.2rem 0;
    margin: 3.2rem auto 0;
  }
}
@media (min-width: 768px) {
  .foot__socials.pfa-socials {
    align-items: flex-start;
    justify-content: flex-end;
    grid-area: 1/2/3/3;
  }
}
@media (min-width: 992px) {
  .foot__socials.pfa-socials {
    display: none;
  }
}
.foot__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 768px) {
  .foot__links {
    grid-area: 1/1/2/2;
    flex-direction: row;
    gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .foot__links {
    gap: 2.4rem;
  }
}
.foot__link {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
@media (min-width: 992px) {
  .foot__link {
    transition: color var(--time);
  }
  .foot__link:hover {
    color: var(--green);
  }
}
@media (min-width: 768px) {
  .foot__copy {
    grid-area: 2/1/3/2;
  }
}

.content {
  flex-grow: 1;
  margin-top: 7.5rem;
}
@media (min-width: 768px) {
  .content {
    margin-top: 11.4rem;
  }
}
@media (min-width: 992px) {
  .content {
    margin-top: 14rem;
  }
}

.pfa-section {
  width: 100%;
  box-sizing: border-box;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .pfa-section {
    padding: 4rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .pfa-section {
    max-width: 136rem;
    margin: 0 auto;
    padding: 6rem 0;
  }
}
.pfa-section._nomargin {
  margin-top: 0;
}
.pfa-section:first-child {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .pfa-section:first-child {
    padding-top: 3rem;
  }
}
@media (min-width: 992px) {
  .pfa-section:first-child {
    padding-top: 4rem;
  }
}
.modal .pfa-section {
  margin: 0;
  padding: 0;
}

.pfa-title {
  font-weight: 700;
  font-family: "Play", sans-serif;
  text-transform: uppercase;
  margin: 0;
  cursor: default;
}
.pfa-title._h1 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  text-align: center;
}
@media (min-width: 768px) {
  .pfa-title._h1 {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
}
@media (min-width: 992px) {
  .pfa-title._h1 {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
}
.pfa-title._h2 {
  font-size: 2rem;
  line-height: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .pfa-title._h2 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .pfa-title._h2 {
    font-size: 3.2rem;
    line-height: 3.6rem;
    margin-bottom: 6rem;
  }
}
.pfa-title._h3 {
  font-size: 1.8rem;
  line-height: 2.2rem;
}
@media (min-width: 768px) {
  .pfa-title._h3 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media (min-width: 992px) {
  .pfa-title._h3 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 992px) {
  .pfa-text._big {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
.pfa-text._bigBold {
  font-weight: 600;
}
@media (min-width: 768px) {
  .pfa-text._bigBold {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
.pfa-text._small {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.pfa-link {
  text-decoration: underline;
  cursor: pointer;
  color: var(--white);
}
@media (min-width: 992px) {
  .pfa-link {
    transition: color var(--time);
  }
  .pfa-link:hover {
    color: var(--green);
  }
}

.pfa-nobr {
  white-space: nowrap;
}

.pfa-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.6rem;
  box-sizing: border-box;
  padding: 0.4rem 1rem;
  text-align: center;
  font: 700 1.6rem/2rem "Play", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  appearance: none;
  border-radius: var(--rad);
}
@media (min-width: 992px) {
  .pfa-button {
    transition: color var(--time), background-color var(--time), border-color var(--time);
  }
}
.pfa-button._empty {
  color: var(--white);
  background: none;
  border: 0.1rem solid var(--white);
}
@media (min-width: 992px) {
  .pfa-button._empty:hover {
    background-color: var(--white);
    color: var(--green);
  }
}
.pfa-button._green {
  color: var(--white);
  background-color: var(--green);
}
@media (min-width: 992px) {
  .pfa-button._green:hover {
    background-color: var(--green_h);
  }
}
.pfa-button._black {
  color: var(--white);
  background-color: var(--black);
}
@media (min-width: 992px) {
  .pfa-button._black:hover {
    background-color: #333;
  }
}
.pfa-button._white {
  color: var(--black);
  background-color: var(--white);
}
@media (min-width: 992px) {
  .pfa-button._white:hover {
    background-color: #87C97A;
  }
}
.pfa-button._small {
  font-size: 1.4rem;
  min-height: 2.4rem;
}
.pfa-button._disabled, .pfa-button._disabled:hover {
  background: #333;
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pfa-input,
.pfa-textarea {
  display: block;
  border-radius: var(--rad);
  box-sizing: border-box;
  background-color: var(--green_66);
  outline: none;
  appearance: none;
  border: none;
  width: 100%;
  font: 400 1.6rem/2rem "Play", sans-serif;
  color: var(--white);
  transition: background-color var(--time);
}
.pfa-input:focus,
.pfa-textarea:focus {
  background-color: var(--green_99);
}

.pfa-input {
  height: 4.8rem;
  padding: 0 1rem;
}

.pfa-textarea {
  padding: 1rem;
  overflow-y: auto;
  resize: none;
  height: 8rem;
}
@media (min-width: 992px) {
  .pfa-textarea {
    resize: vertical;
    min-height: 8rem;
    max-height: 16rem;
  }
}

.pfa-socials {
  display: flex;
  gap: 1rem;
}
.pfa-socials__item {
  font-size: 0;
  line-height: 0;
  min-width: 3.6rem;
  max-width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border: 0.1rem solid var(--white);
}
@media (min-width: 992px) {
  .pfa-socials__item {
    transition: background-color var(--time), border-color var(--time);
  }
  .pfa-socials__item:hover {
    background-color: var(--green);
    border-color: var(--green);
  }
}
.pfa-socials__item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  mask: center center/100% no-repeat;
  -webkit-mask: center center/100% no-repeat;
  background: var(--white);
}
.pfa-socials__item[href*=tiktok]:before {
  mask-image: url(../img/icons/tiktok.svg);
  -webkit-mask-image: url(../img/icons/tiktok.svg);
}
.pfa-socials__item[href*="wa.me"]:before {
  mask-image: url(../img/icons/whatsapp.svg);
  -webkit-mask-image: url(../img/icons/whatsapp.svg);
}
.pfa-socials__item[href*=instagram]:before {
  mask-image: url(../img/icons/instagram.svg);
  -webkit-mask-image: url(../img/icons/instagram.svg);
}
.pfa-socials__item[href*="t.me"]:before {
  mask-image: url(../img/icons/telegram.svg);
  -webkit-mask-image: url(../img/icons/telegram.svg);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.9333333333);
  z-index: 100;
}
.modal__container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1rem 1fr 1rem;
  grid-template-rows: minmax(6rem, 1fr) auto minmax(1rem, 1fr);
}
@media (min-width: 768px) {
  .modal__container {
    grid-template-columns: 1fr 76.8rem 1fr;
    grid-template-rows: minmax(6rem, 50vh) auto minmax(1.6rem, 50vh);
  }
}
@media (min-width: 992px) {
  .modal__container {
    grid-template-columns: 1fr 89.6rem 1fr;
    grid-template-rows: minmax(6rem, 50vh) auto minmax(6rem, 50vh);
  }
}
.modal__box {
  display: none;
  grid-area: 2/2/3/3;
  position: relative;
  border-radius: var(--rad);
}
.modal__close {
  font-size: 0;
  position: absolute;
  top: -4.8rem;
  right: 0;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
}
@media (min-width: 992px) {
  .modal__close {
    top: -3.6rem;
    right: -3.6rem;
  }
}
.modal__close:before, .modal__close:after {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 0.2rem;
  top: 50%;
  left: 50%;
  margin: -0.1rem 0 0 -1.6rem;
  background: var(--white);
  transition: background-color 0.2s;
}
.modal__close:before {
  transform: rotate(-45deg);
}
.modal__close:after {
  transform: rotate(45deg);
}
@media (min-width: 992px) {
  .modal__close:hover:before, .modal__close:hover:after {
    background: var(--white);
  }
}
.modal__content {
  padding: 2rem 1rem;
  background: var(--black);
  border-radius: var(--rad);
}
@media (min-width: 768px) {
  .modal__content {
    padding: 1.6rem 2.4rem;
  }
}
@media (min-width: 992px) {
  .modal__content {
    padding: 4.8rem 3.2rem;
  }
}

.pfa-arrow {
  font-size: 0;
  line-height: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: var(--rad);
  background-color: var(--green);
  position: relative;
}
@media (min-width: 992px) {
  .pfa-arrow {
    width: 4.8rem;
    height: 4.8rem;
    cursor: pointer;
    transition: background-color var(--time);
  }
  .pfa-arrow:hover {
    background-color: var(--green_h);
  }
}
.pfa-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  mask: url(../img/icons/arrow.svg) center center/2.4rem no-repeat;
  -webkit-mask: url(../img/icons/arrow.svg) center center/2.4rem no-repeat;
}
@media (min-width: 992px) {
  .pfa-arrow:before {
    mask-size: 3.2rem;
    -webkit-mask-size: 3.2rem;
  }
}
.pfa-arrow._prev:before {
  transform: rotateY(180deg);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 1rem 1rem;
  grid-template-areas: "i1 i1" "i2 i2" "i3 i3" "i4 i5" "i6 i7" "i8 i9";
}
@media (min-width: 768px) {
  .about__grid {
    gap: 1.6rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .about__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 3.2rem 3.2rem;
    grid-template-areas: "i1 i4 i5" "i6 i2 i7" "i8 i9 i3";
  }
}
@media (min-width: 992px) {
  .about__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.about__item.i1 {
  grid-area: i1;
}
.about__item.i2 {
  grid-area: i2;
}
.about__item.i3 {
  grid-area: i3;
}
.about__item.i4 {
  grid-area: i4;
}
.about__item.i5 {
  grid-area: i5;
}
.about__item.i6 {
  grid-area: i6;
}
.about__item.i7 {
  grid-area: i7;
}
.about__item.i8 {
  grid-area: i8;
}
.about__item.i9 {
  grid-area: i9;
}
.about__text {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .about__text {
    padding: 0 2.4rem;
  }
}
.about__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .about__buttons {
    gap: 1.6rem;
    margin: 2.4rem 0;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .about__buttons {
    flex-direction: column;
    margin: 2.4rem 0 0 2.4rem;
    align-items: flex-start;
    align-self: flex-start;
  }
}
@media (min-width: 992px) {
  .about__button {
    width: auto;
    min-width: 24rem;
  }
}
.about__image {
  display: block;
  width: 100%;
  border-radius: var(--rad);
}
.about__advantages {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  counter-reset: advantages;
}
@media (min-width: 768px) {
  .about__advantages {
    margin-top: 6rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3.2rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .about__advantages {
    margin-top: 8rem;
    gap: 3.2rem;
    flex-wrap: nowrap;
  }
}
.about__advantage {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 5rem;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .about__advantage {
    padding-left: 0;
    max-width: calc(50% - 0.8rem);
    align-items: center;
    box-sizing: border-box;
    border: none;
  }
}
@media (min-width: 992px) {
  .about__advantage {
    max-width: none;
    flex-grow: 1;
    width: 100%;
  }
}
.about__advantage:before {
  content: "0" counter(advantages);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font: 700 2rem/2rem "Play", sans-serif;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  background: var(--green);
  counter-increment: advantages;
  border-radius: var(--rad);
}
@media (min-width: 768px) {
  .about__advantage:before {
    position: static;
    margin-bottom: 1.6rem;
  }
}
@media (min-width: 768px) {
  .about__advantageTitle {
    text-align: center;
    max-width: 30rem;
  }
}
@media (min-width: 992px) {
  .about__advantageTitle {
    min-height: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.about__advantageSubtitle {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 0.1rem solid var(--whiteBorder);
}
@media (min-width: 768px) {
  .about__advantageSubtitle {
    margin-top: 1rem;
    padding-top: 1rem;
    text-align: center;
    max-width: 30rem;
    width: 100%;
  }
}
.programs__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .programs__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1.6rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .programs__list {
    gap: 3.2rem 3.2rem;
    flex-wrap: nowrap;
  }
}
.programs__item {
  border-radius: var(--rad);
  border: 0.1rem solid rgba(255, 255, 255, 0.6);
  padding: 0 1rem 1rem;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 768px) {
  .programs__item {
    max-width: calc(50% - 0.8rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.6rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .programs__item {
    max-width: none;
    flex-grow: 1;
    width: 100%;
    padding: 0 1.6rem;
  }
}
.programs__item:before {
  content: "";
  grid-area: before;
  display: block;
  width: 50%;
  margin: 0 auto 2rem;
  padding-top: 21%;
  background: rgba(255, 255, 255, 0.6);
  mask: url("data:image/svg+xml,%3Csvg width='280' height='118' viewBox='0 0 280 118' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0H0V100H280V0H279V99H1V0Z' fill='%23FF0000'/%3E%3Cpath d='M84 0H83V39H195V0H194V38H84V0Z' fill='%23FF0000'/%3E%3Cpath d='M183.956 99C173 110.688 157.361 118 140 118C122.639 118 107 110.688 96.0444 99H97.4254C108.163 110.094 123.268 117 140 117C156.732 117 171.837 110.094 182.575 99H183.956Z' fill='%23FF0000'/%3E%3C/svg%3E%0A") center top/100% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='280' height='118' viewBox='0 0 280 118' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0H0V100H280V0H279V99H1V0Z' fill='%23FF0000'/%3E%3Cpath d='M84 0H83V39H195V0H194V38H84V0Z' fill='%23FF0000'/%3E%3Cpath d='M183.956 99C173 110.688 157.361 118 140 118C122.639 118 107 110.688 96.0444 99H97.4254C108.163 110.094 123.268 117 140 117C156.732 117 171.837 110.094 182.575 99H183.956Z' fill='%23FF0000'/%3E%3C/svg%3E%0A") center top/100% no-repeat;
}
@media (min-width: 992px) {
  .programs__item:before {
    width: 70%;
    padding-top: 30%;
  }
}
.programs__code {
  margin-bottom: 1rem;
  font-family: "Play", sans-serif;
  font-weight: 700;
  width: 100%;
  position: relative;
  padding-left: 2.6rem;
}
@media (min-width: 768px) {
  .programs__code {
    padding-left: 2.8rem;
  }
}
@media (min-width: 992px) {
  .programs__code {
    padding-left: 3.2rem;
  }
}
.programs__code:before {
  content: "";
  background: var(--white);
  position: absolute;
  left: 0;
  height: 2.2rem;
  width: 2.2rem;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8C16 5.79 14.21 4 12 4C9.79 4 8 5.79 8 8C8 10.21 9.79 12 12 12C14.21 12 16 10.21 16 8ZM4 18V18.995C4 19.55 4.44995 20 5.005 20H18.995C19.55 20 20 19.55 20 18.995V18C20 14.5 14.67 13.5 12 13.5C9.33 13.5 4 14.5 4 18Z' fill='%2399A2AD'/%3E%3C/svg%3E%0A") center center/100% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8C16 5.79 14.21 4 12 4C9.79 4 8 5.79 8 8C8 10.21 9.79 12 12 12C14.21 12 16 10.21 16 8ZM4 18V18.995C4 19.55 4.44995 20 5.005 20H18.995C19.55 20 20 19.55 20 18.995V18C20 14.5 14.67 13.5 12 13.5C9.33 13.5 4 14.5 4 18Z' fill='%2399A2AD'/%3E%3C/svg%3E%0A") center center/100% no-repeat;
}
@media (min-width: 768px) {
  .programs__code:before {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media (min-width: 992px) {
  .programs__code:before {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.programs__name.pfa-title {
  margin-bottom: 0.4rem;
  text-align: left;
  width: 100%;
  color: var(--green);
  position: relative;
}
.programs__range.pfa-title {
  margin-bottom: 0;
  text-align: left;
  width: 100%;
  position: relative;
}
.programs__description {
  padding: 0 0 1rem;
  flex-grow: 1;
  color: rgba(255, 255, 255, 0.6);
}
.programs__genders {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  width: 100%;
}
@media (min-width: 768px) {
  .programs__genders {
    margin: 1.6rem 0;
    gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .programs__genders {
    margin: 2.4rem 0;
  }
}
.programs__gender {
  text-decoration: underline;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.programs__buttons {
  display: flex;
  gap: 1rem;
  align-self: center;
  width: 100%;
  background: var(--green);
  padding: 1rem;
  margin: 1rem -1rem -1rem;
}
@media (min-width: 768px) {
  .programs__buttons {
    padding: 1.6rem;
    margin: 1.6rem -1.6rem -1.6rem;
  }
}
@media (min-width: 992px) {
  .programs__buttons {
    padding: 1.6rem 1.6rem;
    margin: 1.6rem -1.6rem 0;
  }
}
.programs__button.pfa-button {
  width: auto;
  flex-grow: 1;
}

.coaching.pfa-section {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .coaching__title.pfa-title {
    margin: 0;
  }
}
.coaching__list {
  margin: 0 -1rem;
  width: calc(100% + 2rem);
  position: relative;
}
@media (min-width: 768px) {
  .coaching__list {
    margin: 0 -1.6rem;
    width: calc(100% + 3.2rem);
  }
}
@media (min-width: 992px) {
  .coaching__list {
    margin: 0;
    width: auto;
  }
}
.coaching__wrapper.swiper-wrapper {
  align-items: stretch;
}
.coaching__item {
  display: grid;
  grid-template: 1fr/1fr;
  gap: 0 0;
}
.coaching__item.swiper-slide {
  height: auto;
}
.coaching__imageBox {
  width: 100%;
  grid-area: 1/1/2/2;
  justify-self: flex-end;
  align-self: flex-end;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .coaching__imageBox {
    width: 37.6rem;
  }
}
@media (min-width: 992px) {
  .coaching__imageBox {
    width: 43.2rem;
  }
}
.coaching__image {
  display: block;
  width: 26.7rem;
  position: relative;
  right: -6.7rem;
}
@media (min-width: 768px) {
  .coaching__image {
    width: 40rem;
  }
}
@media (min-width: 992px) {
  .coaching__image {
    width: 53.4rem;
    right: 0;
  }
}
.coaching__content {
  grid-area: 1/1/2/2;
  padding: 0 12rem 2rem 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .coaching__content {
    padding: 0 30rem 2rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .coaching__content {
    align-self: center;
    padding: 8rem 50rem 8rem 0;
  }
}
.coaching__top.pfa-title {
  margin: 0.8rem 0 2rem;
  padding-left: 1.4rem;
  text-align: left;
}
@media (min-width: 768px) {
  .coaching__top.pfa-title {
    margin: 0.4rem 0 2rem;
  }
}
@media (min-width: 992px) {
  .coaching__top.pfa-title {
    margin: 0 0 4rem;
    padding-left: 3rem;
  }
}
.coaching__status {
  display: block;
  color: var(--green);
}
.coaching__advantages {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.coaching__advantage {
  padding-left: 1.4rem;
  position: relative;
}
@media (min-width: 992px) {
  .coaching__advantage {
    padding-left: 3rem;
  }
}
.coaching__advantage:before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--green);
}
@media (min-width: 992px) {
  .coaching__advantage:before {
    width: 1rem;
    height: 1rem;
    top: 0.9rem;
  }
}
.coaching__advantage:after {
  content: ";";
}
.coaching__advantage:last-child:after {
  content: ".";
}
.coaching__arrows {
  position: absolute;
  top: 0;
  display: flex;
  z-index: 2;
  gap: 1rem;
  right: 0;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .coaching__arrows {
    right: 1.6rem;
  }
}
@media (min-width: 992px) {
  .coaching__arrows {
    position: absolute;
    right: auto;
    left: 2rem;
    gap: 1.6rem;
  }
}
.timetable {
  position: relative;
  z-index: 0;
}
.timetable:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  z-index: -1;
  background: var(--green) url(../img/timetable/bg.jpg) center center/cover no-repeat;
}
.timetable__table {
  font-size: 1rem;
  line-height: 1.2rem;
  font-family: "Play", sans-serif;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  box-sizing: border-box;
  border: 0.1rem solid var(--white);
  border-spacing: 0;
  border-radius: var(--rad);
}
@media (min-width: 768px) {
  .timetable__table {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media (min-width: 992px) {
  .timetable__table {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
.timetable__th {
  min-width: 4rem;
  max-width: 4rem;
  border-bottom: 0.1rem solid var(--white);
  text-align: center;
  box-sizing: border-box;
  padding: 0.8rem 0.4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .timetable__th {
    padding: 1.6rem 1rem;
    min-width: 8.4rem;
    max-width: 8.4rem;
  }
}
@media (min-width: 992px) {
  .timetable__th {
    min-width: 15rem;
    max-width: 15rem;
    padding: 2.4rem 1rem;
  }
}
.timetable__th:first-child {
  min-width: 10rem;
  max-width: 10rem;
  text-align: left;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .timetable__th:first-child {
    padding-left: 2.4rem;
    min-width: 18rem;
    max-width: 18rem;
  }
}
@media (min-width: 992px) {
  .timetable__th:first-child {
    padding-left: 4rem;
    min-width: 31rem;
    max-width: 31rem;
  }
}
.timetable__th:not(:first-child) {
  border-left: 0.1rem solid var(--white);
}
.timetable__td {
  min-width: 4rem;
  max-width: 4rem;
  border-bottom: 0.1rem solid var(--white);
  text-align: center;
  box-sizing: border-box;
  padding: 0.8rem 0.4rem;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .timetable__td {
    padding: 1.6rem 1rem;
    min-width: 8.4rem;
    max-width: 8.4rem;
  }
}
@media (min-width: 992px) {
  .timetable__td {
    min-width: 15rem;
    max-width: 15rem;
    padding: 2.4rem 1rem;
  }
}
.timetable__td:first-child {
  min-width: 10rem;
  max-width: 10rem;
  text-align: left;
  font-weight: 700;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .timetable__td:first-child {
    padding-left: 2.4rem;
    min-width: 18rem;
    max-width: 18rem;
  }
}
@media (min-width: 992px) {
  .timetable__td:first-child {
    padding-left: 4rem;
    min-width: 31rem;
    max-width: 31rem;
  }
}
._group._mid .timetable__td:first-child, ._group._bot .timetable__td:first-child {
  padding-left: 3rem;
}
@media (min-width: 768px) {
  ._group._mid .timetable__td:first-child, ._group._bot .timetable__td:first-child {
    padding-left: 4rem;
  }
}
@media (min-width: 992px) {
  ._group._mid .timetable__td:first-child, ._group._bot .timetable__td:first-child {
    padding-left: 8rem;
  }
}
.timetable__td:not(:first-child) {
  border-left: 0.1rem solid var(--white);
}
.timetable__td[rowspan] {
  writing-mode: vertical-lr;
}
._group._top .timetable__td {
  padding-bottom: 0.2rem;
  border-bottom: none;
}
@media (min-width: 768px) {
  ._group._top .timetable__td {
    padding-bottom: 0.4rem;
  }
}
._group._mid .timetable__td {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: none;
}
@media (min-width: 768px) {
  ._group._mid .timetable__td {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
._group._bot .timetable__td {
  padding-top: 0.2rem;
}
@media (min-width: 768px) {
  ._group._bot .timetable__td {
    padding-top: 0.4rem;
  }
}
.timetable__td ._t {
  display: block;
}
@media (min-width: 992px) {
  .timetable__td ._t {
    display: inline;
  }
}
.timetable__td ._s {
  display: none;
}
@media (min-width: 992px) {
  .timetable__td ._s {
    display: inline;
  }
}
.timetable__check {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  background: red;
  margin-inline: auto;
  background: var(--white);
  mask: url(../img/icons/ok.svg) center center/contain no-repeat;
  -webkit-mask: url(../img/icons/ok.svg) center center/contain no-repeat;
}
@media (min-width: 768px) {
  .timetable__check {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.approach__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .approach__list {
    gap: 3.2rem;
  }
}
@media (min-width: 992px) {
  .approach__list {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
  }
}
.approach__item {
  width: 100%;
  background: var(--green_33);
  box-sizing: border-box;
  padding: 1rem;
  position: relative;
  border-radius: var(--rad);
}
@media (min-width: 768px) {
  .approach__item {
    padding: 1.6rem;
  }
}
@media (min-width: 992px) {
  .approach__item {
    max-width: 66.4rem;
    padding: 3.2rem;
  }
}
.approach__name.pfa-title {
  margin-bottom: 1rem;
  color: var(--green);
}
@media (min-width: 768px) {
  .approach__name.pfa-title {
    margin-bottom: 1.6rem;
  }
}
.approach__gallery {
  margin: 3.2rem -1rem 0;
}
@media (min-width: 768px) {
  .approach__gallery {
    margin: 4.8rem -1.6rem 0;
  }
}
@media (min-width: 992px) {
  .approach__gallery {
    margin: 6.4rem -2rem 0;
  }
}
.approach__photoBox {
  width: 26rem;
  box-sizing: border-box;
  padding: 0 0 0 1rem;
}
@media (min-width: 768px) {
  .approach__photoBox {
    width: 31rem;
    padding: 0 0 0 1.6rem;
  }
}
@media (min-width: 992px) {
  .approach__photoBox {
    width: 46.4rem;
    padding: 0 1.2rem 0 2rem;
  }
}
.approach__photoLink {
  outline: none;
}
.approach__image {
  display: block;
  width: 25rem;
  border-radius: var(--rad);
}
@media (min-width: 768px) {
  .approach__image {
    width: 29.4rem;
  }
}
@media (min-width: 992px) {
  .approach__image {
    width: 43.2rem;
  }
}
.approach__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.approach__arrow._prev {
  left: 0;
  border-radius: 0 var(--rad) var(--rad) 0;
}
@media (min-width: 1400px) {
  .approach__arrow._prev {
    border-radius: var(--rad);
  }
}
.approach__arrow._next {
  right: 0;
  border-radius: var(--rad) 0 0 var(--rad);
}
@media (min-width: 1400px) {
  .approach__arrow._next {
    border-radius: var(--rad);
  }
}

.prices__block {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 2rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .prices__block {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .prices__block {
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 600;
    margin-bottom: 6rem;
  }
}
.prices__name {
  color: var(--green);
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .prices__name {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .prices__name {
    margin-bottom: 3.2rem;
  }
}
.prices__thead {
  display: flex;
  border-bottom: 0.1rem solid var(--whiteBorder);
}
._group .prices__thead {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 0 0;
  position: relative;
}
._group .prices__thead:before {
  content: "";
  flex-grow: 1;
  box-sizing: border-box;
  width: 100%;
  display: block;
}
._group .prices__thead:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-width: 0.6rem;
  border-style: solid;
  border-color: var(--green) transparent transparent var(--green);
}
@media (min-width: 768px) {
  ._group .prices__thead:after {
    border-width: 1rem;
  }
}
.prices__th {
  padding: 0.4rem;
  box-sizing: border-box;
  white-space: nowrap;
  border-left: 0.1rem solid var(--whiteBorder);
  flex-grow: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .prices__th {
    padding: 0.8rem;
  }
}
@media (min-width: 992px) {
  .prices__th {
    padding: 1.6rem;
  }
}
.prices__tr {
  display: flex;
}
._group .prices__tr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 0 0;
}
._personal .prices__tr, ._other .prices__tr {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr;
  gap: 0 0;
}
.prices__tr:not(:first-child) {
  border-top: 0.1rem solid var(--whiteBorder);
}
.prices__td {
  padding: 0.4rem;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .prices__td {
    padding: 0.8rem;
  }
}
@media (min-width: 992px) {
  .prices__td {
    padding: 1.6rem;
  }
}
.prices__td:not(:first-child) {
  border-left: 0.1rem solid var(--whiteBorder);
}
.prices__td._v {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.prices__tr:last-child .prices__td:last-child {
  position: relative;
}
.prices__tr:last-child .prices__td:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 0.6rem;
  border-style: solid;
  border-color: transparent var(--green) var(--green) transparent;
}
@media (min-width: 768px) {
  .prices__tr:last-child .prices__td:last-child:after {
    border-width: 1rem;
  }
}
.prices__subTable {
  margin: 1rem 0 0 0.4rem;
}
@media (min-width: 768px) {
  .prices__subTable {
    margin: 1.2rem 0 0 0.8rem;
  }
}
@media (min-width: 992px) {
  .prices__subTable {
    margin: 2rem 0 0 1.6rem;
  }
}
.prices__stocksList {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .prices__stocksList {
    gap: 1.6rem;
  }
}
.prices__stocksItem {
  text-align: center;
}
.prices__vat {
  text-align: right;
  font-style: italic;
  line-height: 1.2em;
  color: #fff;
  max-width: 90rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .prices__vat {
    font-size: 1.6rem;
  }
}

.nothing {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0 0;
  overflow: hidden;
  margin-bottom: -2rem;
}
@media (min-width: 768px) {
  .nothing {
    margin-bottom: -2.4rem;
  }
}
@media (min-width: 992px) {
  .nothing {
    margin-bottom: -3.2rem;
  }
}
.nothing.pfa-section {
  padding: 0;
  margin-top: 0;
  max-width: none;
}
.nothing:before {
  content: "";
  padding-top: 129%;
  display: block;
  grid-area: 1/1/2/2;
  background: var(--green) url(../img/fields/vertical.svg) center center/100% no-repeat;
}
@media (min-width: 768px) {
  .nothing:before {
    padding-top: 51%;
    background-image: url(../img/fields/horizontal.svg);
  }
}
.nothing__content {
  grid-area: 1/1/2/2;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-self: center;
  justify-content: center;
  max-width: 30rem;
}
@media (min-width: 768px) {
  .nothing__content {
    max-width: 60rem;
  }
}
.nothing__title.pfa-title {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .nothing__title.pfa-title {
    margin-bottom: 1.6rem;
  }
}
@media (min-width: 992px) {
  .nothing__title.pfa-title {
    margin-bottom: 2.4rem;
  }
}
.nothing__title.pfa-title:before {
  content: "";
  position: fixed;
  z-index: -100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/fields/glass.png) center center/cover no-repeat;
  transition: z-index 0s 0s;
}
[data-ball="0"] .nothing__title.pfa-title:before {
  z-index: 100000;
  transition: z-index 0s 0.4s;
}
.nothing__subtitle {
  text-align: center;
}
.nothing__button.pfa-button {
  margin-top: 2rem;
  width: auto;
}
@media (min-width: 768px) {
  .nothing__button.pfa-button {
    margin-top: 2.4rem;
  }
}
@media (min-width: 992px) {
  .nothing__button.pfa-button {
    margin-top: 3.2rem;
  }
}
.nothing__ball {
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  position: absolute;
  width: 12rem;
  height: 12rem;
  z-index: 1;
  bottom: 3rem;
  left: 50%;
  margin-left: 4rem;
  border-radius: 50%;
  transition: transform var(--microTime);
}
.nothing__ball:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/fields/ball.png) center center/100% no-repeat;
  transition: transform var(--microTime);
}
.nothing__ball:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10rem;
  margin-top: -1.7rem;
  width: 10.7rem;
  height: 3.4rem;
  background: url(../img/fields/hitme.svg) center center/100% no-repeat;
  animation: ready 1s 0s linear infinite;
}
@media (min-width: 768px) {
  .nothing__ball {
    bottom: 1rem;
    left: 50%;
    margin-left: 11rem;
    width: 18rem;
    height: 18rem;
  }
}
@media (min-width: 992px) {
  .nothing__ball {
    right: auto;
    bottom: 3rem;
    left: 50%;
    margin-left: 12rem;
    width: 24rem;
    height: 24rem;
  }
}
[data-ball="4"] .nothing__ball {
  transform: translateX(8%);
}
[data-ball="4"] .nothing__ball:before {
  transform: rotate(10deg);
}
[data-ball="4"] .nothing__ball:after {
  animation: ready 0.85s 0s linear infinite;
}
[data-ball="3"] .nothing__ball {
  transform: translateX(16%);
}
[data-ball="3"] .nothing__ball:before {
  transform: rotate(20deg);
}
[data-ball="3"] .nothing__ball:after {
  animation: ready 0.7s 0s linear infinite;
}
[data-ball="2"] .nothing__ball {
  transform: translateX(24%);
}
[data-ball="2"] .nothing__ball:before {
  transform: rotate(30deg);
}
[data-ball="2"] .nothing__ball:after {
  animation: ready 0.55s 0s linear infinite;
}
[data-ball="1"] .nothing__ball {
  transform: translateX(32%);
}
[data-ball="1"] .nothing__ball:before {
  transform: rotate(40deg);
}
[data-ball="1"] .nothing__ball:after {
  animation: ready 0.4s 0s linear infinite;
}
[data-ball="0"] .nothing__ball {
  transform: translateX(32%);
  animation: hit 0.8s 0s linear forwards;
}
[data-ball="0"] .nothing__ball:before {
  transform: rotate(40deg);
}
[data-ball="0"] .nothing__ball:after {
  opacity: 0;
}
@keyframes hit {
  50% {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-120deg) scale(2);
    margin: 0;
  }
  100% {
    bottom: -20%;
    left: -50%;
    transform: translate(-50%, 50%) rotate(-270deg) scale(1.5);
  }
}
@keyframes ready {
  50% {
    transform: scale(1.1);
  }
}
.nothing ::selection {
  background: var(--black);
}

.wide {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0 0;
  position: relative;
  z-index: 0;
  min-height: 60rem;
}
@media (min-width: 992px) {
  .wide {
    height: 70vh;
  }
}
.wide:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  background: var(--black_99);
  z-index: 1;
}
.wide.pfa-section {
  padding: 0;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .wide.pfa-section {
    margin-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .wide.pfa-section {
    margin-bottom: 6rem;
  }
}
.wide__imageBox {
  grid-area: 1/1/2/2;
}
.wide__image {
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  z-index: 0;
  bottom: 0;
  margin-left: -50vw;
  object-fit: cover;
}
.wide__content {
  grid-area: 1/1/2/2;
  position: relative;
  z-index: 2;
  justify-self: center;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .wide__content {
    gap: 2.4rem;
    padding: 6rem 2rem;
    max-width: 60rem;
  }
}
@media (min-width: 992px) {
  .wide__content {
    gap: 3.2rem;
    padding: 8rem 2rem;
    max-width: 80rem;
  }
}
.wide__text {
  text-align: center;
  max-width: 50rem;
}
.wide__buttons {
  display: flex;
  gap: 1rem;
}
.wide__inButton {
  min-width: 12rem;
}
.wide__button.pfa-button {
  width: auto;
}

.form__subtitle {
  text-align: center;
}
.form__work {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  max-width: 83.2rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .form__work {
    margin-top: 3rem;
    display: grid;
    grid-template: repeat(5, auto)/repeat(4, 1fr);
    gap: 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .form__work {
    margin-top: 4rem;
    gap: 3.2rem 3.2rem;
  }
}
.form__work._preload {
  position: relative;
}
.form__work._preload:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: var(--black_99);
}
.form__work._preload:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12rem;
  height: 12rem;
  margin: -6rem 0 0 -6rem;
  border-radius: 50%;
  z-index: 2;
  border: 1rem solid transparent;
  border-top-color: var(--white);
  border-bottom-color: var(--green);
  animation: rotate 1s linear 0s infinite;
}
@media (min-width: 768px) {
  .form__item._name {
    grid-area: 1/1/2/3;
  }
}
@media (min-width: 768px) {
  .form__item._child {
    grid-area: 1/3/2/5;
  }
}
@media (min-width: 768px) {
  .form__item._age {
    grid-area: 2/1/3/3;
  }
}
@media (min-width: 768px) {
  .form__item._gender {
    grid-area: 2/3/3/5;
  }
}
@media (min-width: 768px) {
  .form__item._phone {
    grid-area: 3/1/4/3;
  }
}
@media (min-width: 768px) {
  .form__item._email {
    grid-area: 3/3/4/5;
  }
}
@media (min-width: 768px) {
  .form__item._message {
    grid-area: 4/1/5/5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.form__name {
  margin-bottom: 0.8rem;
  cursor: default;
}
@media (min-width: 768px) {
  .form__name {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .form__name {
    margin-bottom: 1.6rem;
  }
}
@media (min-width: 768px) {
  ._message .form__label {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-grow: 1;
  }
}
.form__radioSet {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}
.form__radio {
  position: relative;
  flex-grow: 1;
  width: 100%;
  display: flex;
}
.form__radioInput {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  opacity: 0;
  z-index: -1;
}
.form__radioText {
  font: 400 1.6rem/2rem "Play", sans-serif;
  text-align: center;
  border-radius: var(--rad);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.6rem;
  box-sizing: border-box;
  cursor: pointer;
  border: 0.1rem solid var(--green_99);
  transition: background-color var(--time);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form__radio:hover .form__radioText {
  background: var(--green_33);
}
.form__radioInput:checked + .form__radioText {
  background: var(--green);
  cursor: default;
}
.form__submit.pfa-button {
  align-self: center;
  width: auto;
}
@media (min-width: 768px) {
  .form__submit.pfa-button {
    margin-top: 2rem;
    grid-area: 5/1/6/2;
    justify-self: flex-start;
    min-width: 20rem;
  }
}
@media (min-width: 992px) {
  .form__submit.pfa-button {
    margin-top: 3rem;
  }
}
.form__last {
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .form__last {
    margin-top: 2rem;
    grid-area: 5/2/6/5;
    align-self: center;
  }
}
@media (min-width: 992px) {
  .form__last {
    margin-top: 3rem;
  }
}
.form__result {
  text-align: center;
}
.form__result._true {
  color: var(--green);
  padding: 8rem 1rem 8rem 14rem;
  position: relative;
  border-left: 0.1rem solid var(--white);
  border-bottom: 0.1rem solid var(--white);
  max-width: 60rem;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .form__result._true {
    padding: 13rem 2rem 16rem 25rem;
  }
}
.form__result._true:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  background: url(../img/angleBall.png) left bottom/contain no-repeat;
}
.form__result._false {
  color: red;
}

.promplusText__text {
  padding-left: 1rem;
  border-left: 0.2rem solid var(--green);
}
@media (min-width: 768px) {
  .promplusText__text {
    padding-left: 1.6rem;
    border-left-width: 0.3rem;
    padding-right: 29.4rem;
    position: relative;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .promplusText__text {
    padding-right: 69.6rem;
    padding-left: 3.2rem;
    border-left-width: 0.5rem;
  }
}
@media (min-width: 768px) {
  .promplusText__text:before {
    content: "";
    position: absolute;
    top: 50%;
    height: 28rem;
    width: 12rem;
    margin-top: -14rem;
    right: -1.6rem;
    background: rgba(255, 255, 255, 0.4);
    mask: url("data:image/svg+xml,%3Csvg width='118' height='280' viewBox='0 0 118 280' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M118 1L118 0L18 -4.37114e-06L18 280L118 280L118 279L19 279L19 0.999996L118 1Z' fill='%23FF0000'/%3E%3Cpath d='M118 84L118 83L79 83L79 195L118 195L118 194L80 194L80 84L118 84Z' fill='%23FF0000'/%3E%3Cpath d='M19 183.956C7.31203 173 -6.87847e-06 157.361 -6.11959e-06 140C-5.36072e-06 122.639 7.31204 107 19 96.0444L19 97.4253C7.90597 108.163 0.999995 123.268 0.999994 140C0.999993 156.732 7.90597 171.837 19 182.575L19 183.956Z' fill='%23FF0000'/%3E%3C/svg%3E%0A") right center/auto 100% no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='118' height='280' viewBox='0 0 118 280' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M118 1L118 0L18 -4.37114e-06L18 280L118 280L118 279L19 279L19 0.999996L118 1Z' fill='%23FF0000'/%3E%3Cpath d='M118 84L118 83L79 83L79 195L118 195L118 194L80 194L80 84L118 84Z' fill='%23FF0000'/%3E%3Cpath d='M19 183.956C7.31203 173 -6.87847e-06 157.361 -6.11959e-06 140C-5.36072e-06 122.639 7.31204 107 19 96.0444L19 97.4253C7.90597 108.163 0.999995 123.268 0.999994 140C0.999993 156.732 7.90597 171.837 19 182.575L19 183.956Z' fill='%23FF0000'/%3E%3C/svg%3E%0A") right center/auto 100% no-repeat;
  }
}
@media (min-width: 992px) {
  .promplusText__text:before {
    right: calc((50vw - 68rem) * -1);
  }
}

.promplusAdvantages__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}
@media (min-width: 768px) {
  .promplusAdvantages__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .promplusAdvantages__list {
    gap: 3.2rem;
    flex-wrap: nowrap;
  }
}
.promplusAdvantages__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0 0;
  overflow: hidden;
  border-radius: var(--rad);
  width: 100%;
}
@media (min-width: 768px) {
  .promplusAdvantages__item {
    max-width: calc(50% - 0.8rem);
  }
}
@media (min-width: 992px) {
  .promplusAdvantages__item {
    max-width: none;
    flex-grow: 1;
    width: 100%;
  }
}
.promplusAdvantages__imageBox {
  grid-area: 1/1/2/2;
}
.promplusAdvantages__image {
  display: block;
  width: 100%;
}
.promplusAdvantages__text {
  grid-area: 1/1/2/2;
  align-self: flex-end;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to bottom, rgba(92, 145, 79, 0), var(--green_cc) 70%);
}
@media (min-width: 768px) {
  .promplusAdvantages__text {
    padding: 3.2rem 1.6rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .promplusAdvantages__text {
    padding: 4.8rem 2.4rem 2.4rem;
  }
}

.contacts__title.pfa-title {
  margin-bottom: 1em;
}
.contacts__container {
  display: flex;
  flex-direction: column-reverse;
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .contacts__container {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 992px) {
  .contacts__container {
    gap: 6rem;
  }
}
.contacts__map {
  position: relative;
  display: grid;
  margin: 0 -1rem;
  width: 100vw;
}
@media (min-width: 768px) {
  .contacts__map {
    flex-grow: 1;
    max-width: 37.6rem;
    margin: 0 0 0 -1.6rem;
    min-height: 50vh;
    max-height: 60rem;
    overflow: hidden;
    border-radius: 0 var(--rad) var(--rad) 0;
  }
}
@media (min-width: 992px) {
  .contacts__map {
    max-width: calc(50vw - 3rem);
    margin: 0 0 0 calc(-1 * (50vw - 68rem));
  }
}
.contacts__map:before {
  content: "";
  grid-area: 1/1/2/2;
  padding-top: 60%;
}
@media (min-width: 768px) {
  .contacts__map:before {
    display: none;
  }
}
.contacts__mapArea {
  grid-area: 1/1/2/2;
  border: none;
  align-self: stretch;
  justify-self: stretch;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contacts__info {
    gap: 3rem;
    flex-grow: 1;
    width: 100%;
    max-width: 36rem;
    align-self: center;
  }
}
@media (min-width: 992px) {
  .contacts__info {
    gap: 4rem;
    max-width: 65rem;
  }
}
.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contacts__name.pfa-title {
  color: var(--green);
}
.contacts__link {
  text-decoration: none;
  color: var(--white);
}

.docs__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .docs__list {
    display: grid;
    grid-template: auto/repeat(2, 1fr);
    gap: 1rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .docs__list {
    grid-template: auto/repeat(3, 1fr);
    gap: 1.6rem 3.2rem;
  }
}
.docs__item {
  position: relative;
  box-sizing: border-box;
  padding: 0.5rem 0 0.5rem 3.2rem;
  border-bottom: 0.1rem solid var(--whiteBorder);
  color: #fff;
  text-decoration: none;
  transition: border-bottom-color var(--time);
}
.docs__item:hover {
  border-bottom-color: var(--green);
}
.docs__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1.2rem;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/icons/pdf.svg) center center/100% no-repeat;
}

.program__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .program__container {
    gap: 4rem;
  }
}
@media (min-width: 992px) {
  .program__container {
    gap: 3.2rem;
    flex-direction: row;
    align-items: center;
  }
}
.program__text {
  padding-left: 1rem;
  border-left: 0.2rem solid var(--green);
}
@media (min-width: 768px) {
  .program__text {
    padding-left: 1.6rem;
    border-left-width: 0.3rem;
  }
}
@media (min-width: 992px) {
  .program__text {
    padding-left: 3.2rem;
    border-left-width: 0.5rem;
    max-width: 66.4rem;
    box-sizing: border-box;
    padding-right: 10rem;
  }
}
.program__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .program__items {
    gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .program__items {
    align-self: flex-start;
    gap: 3.2rem;
  }
}
.program__item {
  width: 100%;
  max-width: calc(50% - 0.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  border-radius: var(--rad);
  box-sizing: border-box;
  background-color: var(--green_33);
  border: 0.1rem solid var(--whiteBorder);
}
@media (min-width: 768px) {
  .program__item {
    max-width: calc(25% - 1.2rem);
  }
}
@media (min-width: 992px) {
  .program__item {
    padding: 2rem 1rem;
    max-width: 20rem;
  }
}
.program__icon {
  display: block;
  width: 3.6rem;
  height: 3.6rem;
}
@media (min-width: 768px) {
  .program__icon {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.program__advantage {
  text-align: center;
  font: 700 1.4rem/1.8rem "Play", sans-serif;
}
@media (min-width: 768px) {
  .program__advantage {
    font-size: 1.6rem;
  }
}

/*# sourceMappingURL=style.css.map */
