@charset "UTF-8";
/*Скидання стилів*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input {
  background: transparent;
}
input,
button,
textarea {
  font-family: inherit;
}
input,
textarea {
  font-size: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
input[type='submit'] {
  cursor: pointer;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
::placeholder {
  opacity: 1;
  font-style: normal;
  font-weight: 400;
  color: inherit;
}
/* Скролбар */
::-webkit-scrollbar {
  scrollbar-width: thin;
  width: 4px;
  background-color: transparent;
  display: none;
}
::-webkit-scrollbar-thumb {
  background: var(--c-orange);
  border-radius: 3px;
  display: none;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-orange);
  display: none;
}
::-webkit-scrollbar-track {
  background: transparent;
  display: none;
}
*/
/* Стрілки */
::-webkit-scrollbar-button:vertical:start:decrement {
  display: none;
}
::-webkit-scrollbar-button:vertical:end:increment {
  display: none;
}
::-webkit-scrollbar-button:horizontal:start:decrement {
  display: none;
}
::-webkit-scrollbar-button:horizontal:end:increment {
  display: none;
}

/*--------------------*/
* {
  --c-white: #fff;
  --c-black: #000000;
  --c-blue: #5470ab;
  --c-orange: #e89c52;
  --c-light-blue: #f4f8f9;
  --c-light-orange: #f9f8f6;
  --c-violet: #5470ab;
  --c-gray: #858585;
  --container: 1170px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-orange) transparent;
}
a.c-white,
.c-white {
  color: var(--c-white);
}
.bg-white {
  background: var(--c-white);
}
a.c-black,
.c-black {
  color: var(--c-black);
}
.bg-black {
  background: var(--c-black);
}
a.c-blue,
.c-blue {
  color: var(--c-blue);
}
.bg-blue {
  background: var(--c-blue);
}
a.c-orange,
.c-orange {
  color: var(--c-orange);
}
.bg-orange {
  background: var(--c-orange);
}
a.c-gray,
.c-gray {
  color: var(--c-gray);
}
.bg-gray {
  background: var(--c-gray);
}
a.c-violet,
.c-violet {
  color: var(--c-violet);
}
.bg-violet {
  background: var(--c-violet);
}
a.c-light-blue,
.c-light-blue {
  color: var(--c-light-blue);
}
.bg-light-blue {
  background: var(--c-light-blue);
}
a.c-light-orange,
.c-light-orange {
  color: var(--c-light-orange);
}
.bg-light-orange {
  background: var(--c-light-orange);
}
.text-up {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.f-light {
  font-weight: 300;
}
.f-regular {
  font-weight: 400;
}
.f-medium {
  font-weight: 500;
}
.f-semibold {
  font-weight: 600;
}
.f-bold {
  font-weight: 700;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--c-black);
  background: var(--c-white);
  max-width: 100vw;
  overflow: hidden;
  overflow-y: visible;
  font-weight: 400;
  line-height: 150%;
}
body.overflow {
  height: 100vh;
  overflow: hidden;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
.btn {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  height: 50px;
  border-radius: 10px;
  padding: 0 14px;
  transition: all 0.3s ease;
}
.btn.bg-orange:hover {
  background: var(--c-violet);
}
.title {
  font-size: 36px;
  line-height: 128%;
}
/* --------------------------------header---------------------------------- */
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  background: transparent;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  padding: 40px 0 15px;
}
.header.fixed {
  position: fixed;
  background: var(--c-white);
  padding: 15px 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.header.fixed .header__menu-left a,
.header.fixed .header__menu-right a {
  color: var(--c-black);
}
.header.fixed .header__menu-left a:hover,
.header.fixed .header__menu-right a:hover {
  color: var(--c-orange);
}
.header__container-mob {
  display: none;
}
.header__container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.header__menu-left,
.header__menu-right {
  display: flex;
  align-items: center;
}
.header__menu-left li,
.header__menu-right li {
  margin: 0 15px;
}
.header__menu-left a:hover,
.header__menu-right a:hover {
  color: var(--c-orange);
}
.header__logo {
  width: 100px;
  height: 72px;
  margin: 0 50px;
}
.header__phone {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
}
.header__phone i {
  display: flex;
  margin-right: 5px;
  font-size: 18px;
}
.fixed .header__phone {
  color: var(--c-black);
}
.header__phone:hover {
  color: var(--c-orange);
}
.header.fixed .header__logo {
  height: 44px;
  margin: 0 15px;
  width: 64px;
}
.header.fixed .header__container {
  align-items: center;
}
.header__phone-mob {
  display: none;
}
/* --------------------------------wrapper------------------------------------ */
.wrapper {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  overflow: hidden;
}
/* -----------------------------first-screen---------------------------------- */
.first-slider {
  width: 100vw;
}
.first-screen {
  position: relative;
  min-height: 100vh;
  padding-top: 138px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
.first-screen.bg1 {
  position: relative;
  background: url(../img/bg1-1.webp) no-repeat center center;
  background-size: cover;
}
.first-screen.bg2 {
  position: relative;
  background: url(../img/bg1-2.webp) no-repeat center center;
  background-size: cover;
}
.first-screen.bg3 {
  position: relative;
  background: url(../img/bg1-3.webp) no-repeat center center;
  background-size: cover;
}
.first-screen:before,
.advantages:before,
.rehabilitation:before,
.big-form:before {
  content: ' ';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.4);
}
.first-screen__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fs__title {
  margin-bottom: 26px;
  /* max-width: 776px; */
}
.fs__title h1 {
  font-size: 24px;
  line-height: 36px;
}
.fs__title span {
  font-size: 36px;
  display: inline-flex;
  line-height: 36px;
  justify-content: center;
}
.fs__subtitle {
  max-width: 701px;
  margin-bottom: 57px;
}
.fs__form-box {
  display: flex;
}
.form-input {
  width: 270px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--c-white);
  margin: 0 15px;
}
.form-input input {
  padding: 0 30px;
  display: flex;
  width: 100%;
  height: 100%;
  color: var(--c-white);
}
.form-input-btn {
  width: 270px;
  height: 50px;
  margin: 0 15px;
}
.form-input-btn input {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}
.play-icon {
  display: flex;
  width: 50px;
  height: 50px;
  background: url(../img/play.svg) no-repeat center center;
  background-size: contain;
  margin-right: 21px;
}
.fs__video-btn {
  display: flex;
  align-items: center;
  margin: 63px auto 0;
}
.first-slider .slick-dots {
  bottom: 50px;
}
.first-slider .gallery__slider-arrow.next-arrow.slick-arrow {
  right: 16px;
  background: #f4f8f92e;
}
.first-slider .gallery__slider-arrow.prev-arrow.slick-arrow {
  left: 16px;
  background: #f4f8f92e;
}
.first-slider .gallery__slider-arrow.next-arrow.slick-arrow:hover,
.first-slider .gallery__slider-arrow.prev-arrow.slick-arrow:hover {
  background: var(--c-orange);
}
/* ------------------------services----------------------- */
.services {
  padding: 120px 0 100px;
}
.services__title {
  margin-bottom: 24px;
}
.services__subtitle {
  max-width: 570px;
  margin: 0 auto 44px;
}
.services__cards {
  display: flex;
  margin: 0 -30px;
}
.services__slider .slick-list {
  padding: 15px 15px 74px;
}
.services__card {
  width: calc((100% - 3 * 30px) / 3);
  height: 317px;
  margin: 0 15px;
  padding: 34px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
.services__card.slick-active {
  box-shadow: 0px 20px 40px -30px rgba(19, 27, 54, 0.25);
}
.services__card-img {
  width: max-content;
  height: 160px;
  margin-bottom: 29px;
}
.slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  border-radius: 50%;
}
.slick-dots {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.slick-dots li {
  display: flex;
  margin: 0 10px;
}
.slick-dots {
  transform: translateX(-50%);
}
.slick-dots .slick-active button {
  background: var(--c-violet);
}
/* ------------------advantages-------------------- */
.advantages {
  padding: 106px 0;
  background: url(../img/bg2.webp) no-repeat center center;
  background-size: cover;
  position: relative;
}
.advantages__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -15px;
}
.advantages__left {
  width: calc((100% - 2 * 30px) / 2);
  margin: 0 15px;
}
.advantages__title {
  margin-bottom: 26px;
}
.advantages__subtitle {
  max-width: 400px;
}
.advantages__right {
  width: calc((100% - 2 * 30px) / 2);
  margin: 0 15px;
}
.advantages__list li:not(:last-child) {
  margin-bottom: 18px;
}
.advantage {
  padding: 30px 37px 30px 80px;
  border-radius: 10px;
  position: relative;
}
.advantage .icon-check {
  position: absolute;
  left: 30px;
  top: 28px;
  width: 30px;
  font-size: 25px;
}
.advantage__text {
  margin-top: 14px;
}
/* ----------------------different------------------------ */
.different {
  padding: 115px 0 105px;
}
.different__title {
  margin-bottom: 24px;
}
.different__subtitle {
  max-width: 970px;
  margin: 0 auto 45px;
}
.different__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.different__card {
  width: calc((100% - 3 * 30px) / 3);
  margin: 15px;
  padding: 40px 27px 49px;
  box-shadow: 0px 20px 70px -30px rgba(19, 27, 54, 0.25);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.different__card-img {
  width: 60px;
  height: 60px;
  margin-bottom: 27px;
}
.different__card-title {
  margin-bottom: 14px;
}
.info-link:hover {
  text-decoration: underline;
}
/* ------------------------about------------------------- */
.about {
  padding: 101px 0 131px;
}
.about__container {
  display: flex;
  align-items: center;
  margin: 0 -15px;
}
.about__left,
.about__right {
  width: calc((100% - 2 * 30px) / 2);
  margin: 0 15px;
}
.img-primary {
  width: 450px;
  height: 535px;
  position: relative;
  z-index: 1;
}
.img-primary img {
  object-fit: cover;
  border-radius: 0px 100px;
}
.row-reverse .img-primary img {
  border-radius: 100px 0px;
}
.img-primary:before {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -21px;
  width: 341px;
  height: 406px;
  background: var(--c-orange);
  z-index: -1;
}
.about__title {
  margin-bottom: 31px;
}
.about__text p:not(:last-child) {
  margin-bottom: 15px;
}
.about__text-accent {
  font-size: 20px;
}
.about__text {
  padding-right: 15px;
  margin-bottom: 23px;
}
.our-docs {
  display: flex;
}
.our-docs li {
  margin: 0 30px;
}
.our-docs span {
  margin-right: 30px;
}
.our-docs__btn {
  text-decoration: underline;
}
.row-reverse {
  flex-direction: row-reverse;
}
.row-reverse .img-primary {
  margin-left: auto;
}
.row-reverse .img-primary:before {
  right: auto;
  left: -20px;
}
/* -------------------nutrition-------------------- */
.nutrition {
  padding: 200px 0 196px;
  position: relative;
}
.nutrition:before {
  content: '';
  width: 950px;
  height: 100%;
  background: url(../img/food.webp) no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-13%);
  z-index: 0;
}
.nutrition__title {
  max-width: 547px;
  margin-bottom: 20px;
}
.nutrition__subtitle {
  max-width: 511px;
  margin-bottom: 60px;
}
.nutrition__text {
  max-width: 472px;
  margin-bottom: 30px;
}
.nutrition__btn {
  width: 270px;
}
.nutrition__img-mob {
  display: none;
}
/* ---------------------leisure----------------------- */
.leisure {
  padding: 106px 0 115px;
}
/* -----------------------care--------------------- */
.care {
  padding: 115px 0 128px;
}
/* ----------------------rehabilitation----------------------- */
.rehabilitation {
  padding: 115px 0;
  background: url(../img/bg3.webp) no-repeat center center;
  background-size: cover;
  position: relative;
}
.rehabilitation__container {
  position: relative;
  z-index: 1;
}
.rehabilitation__title {
  margin-bottom: 24px;
}
.rehabilitation__subtitle {
  max-width: 570px;
  margin: 0 auto 45px;
}
.rehabilitation__cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.rehabilitation__card {
  width: calc((100% - 3 * 30px) / 3);
  margin: 15px;
  box-shadow: 0px 20px 70px -30px rgba(19, 27, 54, 0.25);
  border-radius: 11px;
  display: flex;
  flex-direction: column;
}
.rehabilitation__card-content {
  padding: 40px 25px 40px 30px;
}
.rehabilitation__card-title {
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 37px;
  min-height: 84px;
  display: flex;
  align-items: center;
}
.rehabilitation__card-btn {
  height: 50px;
  border-radius: 0 0 10px 10px;
  margin-top: auto;
}
/* -------------------------gallery------------------------ */
.gallery {
  padding: 90px 0 169px;
}
.gallery__title {
  margin-bottom: 24px;
}
.gallery__subtitle {
  margin-bottom: 45px;
}
.gallery__list {
  display: flex;
  margin: 0 -15px;
}
.gallery__li {
  width: calc((100% - 3 * 30px) / 3);
  height: calc((var(--container) - 3 * 30px) / 3);
  margin: 0 15px;
}
.gallery__img {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100%;
}
.gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-arrow {
  background: #d9e5e8;
  width: 50px;
  height: 50px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 14px;
  z-index: 10;
}
.slick-arrow:hover {
  background: var(--c-orange);
}
.gallery__slider-arrow.prev-arrow {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.gallery__slider-arrow.next-arrow {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.gallery__slider .slick-dots {
  bottom: -75px;
}
.gallery__title br {
  display: none;
}
/* -----------------------reviews-------------------------- */
.reviews {
  padding: 120px 0 139px;
  position: relative;
}
.reviews::before {
  content: '';
  width: 558px;
  height: 478px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/Vector.webp) no-repeat left bottom;
  background-size: contain;
  z-index: 0;
}
.reviews::after {
  content: '';
  width: 425px;
  height: 475px;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../img/Group.webp) no-repeat right top;
  background-size: contain;
  z-index: 0;
}
.reviews__container {
  position: relative;
  z-index: 1;
}
.reviews__title {
  margin-bottom: 75px;
}
.reviews__list {
  display: flex;
  margin: 0 -30px;
}
.reviews__slider .slick-list {
  padding: 15px 15px 74px;
}
.review__card {
  width: calc((100% - 2 * 30px) / 2);
  margin: 0 15px;
  padding: 40px 40px 30px;
  border-radius: 10px;
}
.review__card.slick-active {
  box-shadow: 0px 20px 40px -30px rgba(19, 27, 54, 0.25);
}
.review__card-top {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.review__card-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 28px;
}
.review__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review__card-author {
  max-width: calc(100% - 100px - 28px - 25px * 2 - 10px);
  margin-right: 10px;
}
.review__card-socials {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.review__card-social:not(:last-child) {
  margin-right: 10px;
}
.review__card-social-link {
  display: flex;
  font-size: 24px;
  width: 25px;
  height: 25px;
}
.review__card-social-link:hover {
  color: var(--c-orange);
}
.reviews__slider-arrow.prev-arrow {
  left: 5px;
  top: calc((100% - 74px) / 2);
  transform: translateY(-50%);
}
.reviews__slider-arrow.next-arrow {
  right: 5px;
  top: calc((100% - 74px) / 2);
  transform: translateY(-50%);
}
.reviews__list .slick-track {
  display: flex !important;
  flex-wrap: wrap;
}
.reviews__list .review__card {
  display: flex;
  flex-direction: column;
  height: auto;
}
/* --------------------big-form-------------------- */
.big-form {
  padding: 143px 0;
  background: url(../img/bg4.webp) no-repeat center;
  background-size: cover;
  position: relative;
}
.big-form__container {
  position: relative;
  z-index: 1;
}
.big-form__left {
  width: 100%;
  max-width: calc((100% - 2 * 30px) / 2);
}
.big-form__title {
  margin-bottom: 16px;
}
.big-form__subtitle {
  margin-bottom: 19px;
}
.big-form__box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.big-form__input {
  width: calc((100% - 2 * 30px) / 2);
  height: 50px;
  margin: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding: 0 32px;
  color: var(--c-gray);
}
.big-form__input::placeholder {
  opacity: 1;
}
.big-form__textarea {
  width: 100%;
  height: 180px;
  margin: 15px;
  border-radius: 10px;
  padding: 13px 32px;
  opacity: 1;
  color: var(--c-gray);
}
.big-form__btn {
  width: 100%;
  margin: 15px 15px 0;
}
/* ----------------------contacts---------------------- */
.contacts__container {
  display: flex;
}
.contacts__left {
  width: calc(341px + 162px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contacts__title {
  margin-bottom: 40px;
}
.contacts__grafic {
  margin-bottom: 30px;
}
.contacts__grafic-title {
  font-size: 20px;
  margin-bottom: 13px;
}
.contacts__list li:not(:last-child) {
  margin-bottom: 13px;
}
.contact-mail {
  text-decoration: underline;
}
.contact-mail:hover {
  text-decoration: none;
  color: var(--c-orange);
}
.contacts-right {
  height: 769px;
  width: calc((100% - 341px - 162px));
  position: relative;
}
.contacts-right iframe {
  height: 100%;
  width: calc((100vw - (100vw - var(--container)) / 2) - 341px - 162px);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
/* ------------------------------------------------ */
.footer {
  position: relative;
  margin-top: auto;
}
.footer__container {
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
}
.footer__logo {
  width: 170px;
  height: 123px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
}
.footer__menu li:not(:last-child) {
  margin-bottom: 20px;
}
.footer__phones {
  display: flex;
  flex-direction: column;
}
.footer__phones li:not(:last-child) {
  margin-bottom: 20px;
}
.footer__phones-title {
  margin-bottom: 20px;
}
.footer__right {
  display: flex;
  flex-direction: column;
}
.footer__socials {
  display: flex;
  align-items: center;
  margin-bottom: 27px;
}
.footer__socials a {
  font-size: 29px;
  width: max-content;
  height: 30px;
  line-height: 30px;
  display: flex;
}
.footer__socials li:not(:last-child) {
  margin-right: 30px;
}
.footer__mail {
  margin-bottom: 25px;
  text-decoration: underline;
}
.footer__call-back-btn {
  border: 1px solid var(--c-violet);
  width: 270px;
}
.footer__call-back-btn:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-white);
}
.footer__bottom {
  padding: 21px 0;
}
.footer a:not(.btn):hover {
  color: var(--c-orange);
}
.footer__logo-mob {
  display: none;
}
.footer__bottom br {
  display: none;
}
/* --------------------scroll-top__btn------------------ */
.scroll-top__btn {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: fixed;
  right: 15px;
  bottom: -100px;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 3px #00000036;
  transform: rotate(90deg);
  font-size: 12px;
}
.scroll-top__btn.up {
  bottom: 16px;
}
/* ------------------callback__popup---------------------- */
.callback__popup {
  position: absolute;
  left: 0;
  bottom: 66px;
  width: 100vw;
  height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d9e5e8;
  z-index: 10;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.callback__popup.open {
  height: calc((100% - 66px));
}
.callback__popup-container {
  width: 100%;
  position: relative;
}
.callback__popup-close-btn {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 19px;
  top: -53px;
  cursor: pointer;
}
.callback__popup-close-btn span {
  width: 30px;
  height: 4px;
  background: var(--c-violet);
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 2px;
}
.callback__popup-close-btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.callback__popup-close-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.callback__popup-title {
  font-size: 24px;
  margin-bottom: 30px;
}
.callback__popup-container form {
  margin: 0 auto;
  max-width: 871px;
}
.callback__popup-form {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.popup__form-input {
  width: calc((100% - 3 * 30px) / 3);
  margin: 0 15px;
  display: flex;
  height: 50px;
  border-radius: 10px;
  padding: 0 32px;
}
.popup__form-btn {
  width: calc((100% - 3 * 30px) / 3);
  margin: 0 15px;
}
.textarea-hidden {
  display: none;
}
