:root {
  --primary-color: #4155B0;
  --black-color: #1B1B1B;
}

@keyframes fadeIn {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@keyframes fadeIn {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@font-face {
  font-family: "Onest";
  src: url("../../fonts/Onest/Onest-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../../fonts/Onest/Onest-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../../fonts/Onest/Onest-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../../fonts/Onest/Onest-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Neutral Face";
  src: url("../../fonts/Neutral Face/NeutralFace.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Neutral Face";
  src: url("../../fonts/Neutral Face/NeutralFace-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Onest";
  font-style: normal;
  margin: 0;
  color: #000000;
  background-image: url('/wp-content/themes/edme/assets/images/8fc4a896-f878-4691-920c-59c7b22f483f.png');
   background-repeat: repeat;
  min-height: 100%;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url('/wp-content/themes/edme/assets/images/line-bg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
}

section {
  display: flex;
  justify-content: center;
}

h1,
h2 {
  margin: 0;
}

.container {
  position: relative;
  margin: 0 auto;
  max-width: 1310px;
  width: 100%;
}

.btn {
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  padding: 10px 30px;
  transition: all 0.5s ease;
  border-radius: 10px;
  background: #4155B0;
  border: none;
}
.btn:hover {
  background: #fff;
  color: #4155B0;
  outline: 1px solid #4155B0;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

a {
  -webkit-transition: color 500sms ease;
  -ms-transition: color 500ms ease;
  transition: color 500ms ease;
  color: #1B1B1B;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
a:hover {
  color: #000000;
}

p {
  font-size: 18px;
  line-height: 150%;
  color: #1B1B1B;
  opacity: 0.8;
}

.space-100 {
  height: 100px;
}

@media (max-width: 2600px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 998px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  body::before {
    background-image: url('/wp-content/themes/edme/assets/images/bg-line-mob.svg');
  }
  main {
    padding-top: 45px;
  }
}
@media (max-width: 479px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .space-100 {
    height: 60px;
  }
}



/* Micromodal */
/* Overlay */
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Container */
.modal__container {
  background: #fff;
  padding: 30px;
  max-width: 800px;
  max-height: 100vh;
  width: 100%;
  border-radius: 12px;
  overflow-y: auto;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
}

/* Title */

.modal__title {
  color: #1B1B1B;
  text-align: center;
  font-family: "Neutral Face";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  padding-bottom: 24px;
}
.modal__title span {
  color: #4155B0
}

/* Close button */
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.modal__close::before {
  content: "\2715";
  font-size: 18px;
  color: #000;
}

/* Content */
.modal__content {
  margin: 2rem 0;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Button */
.modal__btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s ease-out;
}

.modal__btn:hover,
.modal__btn:focus {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/* Micromodal Animation Classes */
@keyframes mmfadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mmfadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
  to { transform: translateY(0); }
}

@keyframes mmslideOut {
  from { transform: translateY(0); }
  to { transform: translateY(-10%); }
}

/* Micromodal slide behavior */
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0.0, 0.0, 0.2, 1);
  opacity: 1;
  pointer-events: auto;
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  transform: translateY(0);
  opacity: 1;
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* Performance */
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform, opacity;
}

/* /Micromodal */







.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  height: 92px;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__logo-link {
  display: block;
}
.header__logo-img {
  width: 212px;
}
.header__logo-name {
  font-weight: bold;
  display: block;
  font-family: "helvetica";
  text-transform: uppercase;
  font-size: 32px;
}
.header__logo-name:hover {
  color: #000000;
}
.header__menu-wrapper {
  display: flex;
  position: relative;
}
.header__menu {
  display: flex;
  list-style: none;
}
.header__menu-item {

  padding: 0 45px 0px 0;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;

}
.header__menu-link {
  color: #1B1B1B;
  opacity: 0.8;
}
.header__menu-link:hover {
  opacity: 1;
}
.header__menu-btn-wrapper {
  display: flex;
  align-items: center;
}
.header__menu-burger {
  display: none;
}
@media (max-width: 1200px) {
  .header__menu-item {
    font-size: 18px;
  }
}
@media (max-width: 998px) {
  .header {
    z-index: 99;
    transition: all 0.3s ease;
    position: fixed;
    padding-top: 10px;
  }
  .header--fixed{

    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background-image: url('/wp-content/themes/edme/assets/images/8fc4a896-f878-4691-920c-59c7b22f483f.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: top center;

  }
  .header__logo-img {
    width: 168px;
  }
  .header__logo-name {
    font-size: 28px;
  }
  .header__menu {
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 0 0 0;
  }
  .header__menu-item {
    font-size: 16px;
    border-bottom: 1px solid #808080;
  }
  .header__menu-item:nth-last-of-type(1) {
    border-bottom: none;
  }
  .header__menu-btn-wrapper {
    display: none;
  }
  .header__menu-link {
    width: 100%;
    display: block;
    text-align: start;
    padding: 15px 0;
  }
  .header__menu-wrapper {
    z-index: 1;
    top: 60px;
    left: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    flex-direction: column;
    width: 100%;
    top: 46px;
  }
  .header__menu-wrapper.active {
    opacity: 1;
    padding: 0 20px;
    background: #fff;
    z-index: 99;
    height: auto;
  }
  .header__menu-burger {
    display: block;
    width: 100px;
    height: 62px;
    background-image: url(/wp-content/themes/edme/assets/images/burger-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }


}
@media (max-width: 479px) {
  .header {
    height: 60px;
    padding: 20px 0 20px 0;
  }
  .header__logo {
    gap: 10px;
  }
  .header__logo-img {
    width: 81px;
  }
  .header__logo-name {
    font-size: 20px;
  }
  .header__menu-burger {
    width: 40px;
    height: 27px;
  }
}
@keyframes fadeIn {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}


.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #4155B0;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.header-mobile.header--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header-mobile__close {
  width: 62px;
  height: 62px;
  background: url('/wp-content/themes/edme/assets/images/icons/close.svg') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  align-self: flex-end;
  padding-top: 20px;
}
.header-mobile__contact {
  font-size: 14px;
  color: #fff;
}
.header-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 200px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}
.header-mobile-menu__item {
  /* если нужно стилизовать <li> */
}
.header-mobile-menu__link {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-family: "Neutral Face";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 56px */
}
.header-mobile-menu__link:hover {
  opacity: 0.7;
}

.header-mobile__footer {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header-mobile__request-text {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.header-mobile__request-btn {
  margin-top: 10px;
  background: #FFF;
  color: #4155B0;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: auto;
}
.header-mobile__contacts {
  display: flex;
  justify-content: space-between;
}

.header-mobile__contact {
  color: #FFF;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: start;
}
.header-mobile__contact.header-mobile__contact--tg {
  display: flex;
  align-items: center;
}
.header-mobile__contact.header-mobile__contact--tg::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url('/wp-content/themes/edme/assets/images/icons/menu-tg.svg') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  display: block;
  padding-right: 8px;
}


@media (max-width: 479px) {
  .header-mobile__close {
    width: 23px;
    height: 23px;
    margin-top: 15px;
  }
  .header-mobile-menu {
    padding: 50px 0 0 0;
  }
  .header-mobile-menu__link {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 33.6px */
  }
  .header-mobile__request-text {
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 307px;
  }
  .header-mobile__contacts {
    flex-direction: column;
    padding-top: 50px;
  }
  .header-mobile__contact {
    padding-bottom: 16px;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}



.promo-home {
  max-width: 1310px;
  margin: 0 auto;
  position: relative;
  padding-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.promo-home__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 75.6px */
  letter-spacing: 2.7px;
  max-width: 1181px;
}
.promo-home__title span {
  color: #4155B0
}
.promo-home__desc {
  padding-top: 16px;
  color: #1B1B1B;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 32.2px */
  max-width: 850px;
  opacity: 0.8;
}
.promo-home__features {
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.promo-home-feature {
  width: 32%;
  flex-shrink: 0;
  border-radius: 25px;
  border: 3px solid #4155B0;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.promo-home-feature__title {
  color: #1B1B1B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}
.promo-home-feature__desc {
  display: flex;
  align-items: center;
	padding-top: 8px;
}
.promo-home-feature__decor {
  color: #4155B0;
  font-family: "Neutral Face";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
	
	display: flex
;
    align-items: center;
    justify-content: center;
}

.promo-home-feature__text {
  color: #1B1B1B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  max-width: 130px;
  padding: 0 10px;
}

@media (max-width: 998px) {
  .promo-home__title {
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 63px */
    letter-spacing: 2.25px;
  }
  .promo-home__desc {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
  }
  .promo-home__features {
    flex-direction: column;
  }
  .promo-home-feature {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .promo-home__title {
    line-height: 130%; /* 36.4px */
    letter-spacing: 1.4px;
    font-size: 28px;
  }
  .promo-home__desc {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 23.8px */
  }
}



.what-is {
  max-width: 1310px;
  margin: 0 auto;
  position: relative;
  padding-top: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.what-is__wrapper {
  display: flex;
  justify-content: space-around;
}
.what-is__left {
  position: relative;
}
.what-is__title {
  color: #000000;
  text-align: start;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.96px;
}
.what-is__title span{
  color: #4155B0;
}
.what-is__desc {
  padding-top: 24px;
  text-align: start;
  max-width: 789px;
  color: #1B1B1B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
}
.what-is__img {
  max-width: 210px;
}
@media (max-width: 767px) {
  .what-is {
    padding-top: 100px;
  }
  .what-is__wrapper {
    flex-direction: row-reverse;
  }
  .what-is__title {
    font-size: 40px;
  }
  .what-is__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .what-is__title {
    font-size: 24px;
    width: 320px;
    line-height: 140%; /* 33.6px */
  }
  .what-is__left {
    justify-content: start;
  }
  .what-is__img {
    max-width: 68px;
    position: absolute;
    right: 0;
  }
}


@keyframes anime-left {
  from {
    left: 0;
  }
  to {
    left: -10%;
  }
}
@keyframes anime-right {
  from {
    right: 0;
  }
  to {
    right: -10%;
  }
}


.advantages {
  margin: 0 auto;
  position: relative;
  padding-top: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.advantages__wrapper {
  display: flex;
  flex-direction: column;
}
.advantages__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
  max-width: 980px;
}
.advantages__title span{
  color: #4155B0;
}
.advantages__items {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantages-item {
  width: 32.9%;
  min-height: 215px;
  height: auto;
  flex-shrink: 0;

  border-radius: 25px;
  margin-bottom: 15px;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}
.advantages-item.advantages-item--image {
  background-size: cover;
}
.advantages-item__title {
  margin: 25px 25px 0 25px;
  color: #EBEFFF;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: start;
}
.advantages-item__desc {
  margin: 8px 25px 0 25px;
  color: #EBEFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  text-align: start;
  opacity: 0.8;
  padding-bottom: 24px;
}
@media (max-width: 998px) {

  .advantages-item {
    width: 49%;

  }
}
@media (max-width: 767px) {
  .advantages__title {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .advantages-item {
    min-height: 215px;
    flex-shrink: 0;
    border-radius: 25px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
  }
}
@media (max-width: 479px) {
  .advantages__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .advantages-item {
    width: 100%;
  }
}



.advantages.advantages--service {
  padding-top: 0;
}
.advantages.advantages--service .advantages__items{
  padding-top: 10px;
}
@media (max-width: 767px) {
  .advantages-item.advantages-item--service {
    width: 100%;
  }
}


.services {
  margin: 0 auto;
  position: relative;
  padding-top: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.services__wrapper {
  display: flex;
  flex-direction: column;
  align-items: self-start;
}
.services__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  max-width: 980px;
}
.services__title span{
  color: #4155B0;
}
.services__items {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
}
.services-item {
  border-top: 1px solid #5A5A5A;
  display: flex;
  flex-direction: column;
  padding: 15px 0;
}
.services-item__header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.services-item__number {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  opacity: 0.8;
}
.services-item__name {
  color: #1B1B1B;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.8;
  transition:  opacity 0.5s ease;
}
.services-item__name br{
  display: none;
}
.services-item--open .services-item__name {
  opacity: 0;
}
.services-item__img {
  border-radius: 10px;
  width: 320px;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #f0f0f0;
}
.services-item__toggle {
  width: 30px;
  height: 25px;
  flex-shrink: 0;
  background-image: url(/wp-content/themes/edme/assets/images/icons/services-toggle-down.svg);
  transition-duration: 0.5s;
  transition-property: transform;
  background-repeat: no-repeat;
}
.services-item--open .services-item__toggle {
  transform: rotate(180deg);
}
.services-item__body {
  display: flex;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.services-item--open .services-item__body {
  max-height: 1000px; /* больше, чем любой реальный контент */
  opacity: 1;
}
.services-item__title {
  color: var(--primary-color);
  font-family: "Neutral Face";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
}
.services-item__title--mobile {
  display: none;
}
.services-item__desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
  padding-bottom: 5px;
  text-align: start;
  margin-top: 16px;
}
.services-item__btn {
  text-align: start;
  display: block;
  width: fit-content;
  margin-top: 16px;
}
.services-item__right {
  padding-left: 120px;
}
@media (max-width: 998px) {
  .services-item__right {
    padding-left: 30px;
  }
  .services-item__title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .services__title {
    font-size: 40px;
  }

  .services-item__number {
    font-size: 35px;
  }
  .services-item__name {
    font-size: 23px;
  }
  .services-item--open .services-item__name {
    opacity: 0;
  }
  .services-item__img {
    width: 236px;
    height: 236px;
  }

  .services-item__body {
    flex-direction: column;
  }
  .services-item__title--mobile {
    display: block;
  }
  .services-item__title--desktop {
    display: none;
  }
}
@media (max-width: 479px) {
  .services__title {
    font-size: 24px;
  }
  .services-item__name {
    font-size: 17px;
  }
  .services-item__title {
    font-size: 25px;
  }
  .services-item__right {
    padding-left: 0;
  }
}





.services-new {
    margin: 0 auto;
    position: relative;
    padding-top: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.services-new__wrapper {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}
.services-new__title {
    color: #1B1B1B;
    font-family: "Neutral Face";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: center;
    max-width: 980px;
}
.services-new__title span{
    color: #4155B0;
}
.services-new__items {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.services-new-item {
    display: flex;
    padding: 25px 0;
    width: 33%;
}

.services-new-item--hidden {
    display: none;
}

.services-new-item__name {
    color: #1B1B1B;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    opacity: 0.8;
    transition:  opacity 0.5s ease;
}
.services-new-item__name br{
    display: none;
}
.services-new-item--open .services-item__name {
    opacity: 0;
}
.services-new-item__img {
    border-radius: 10px;
    width: 320px;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #f0f0f0;
}

.services-new-item__icon {
    width: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-size: 75px;
    background-repeat: no-repeat;
}

.services-new-item__toggle {
    width: 30px;
    height: 25px;
    flex-shrink: 0;
    background-image: url(/wp-content/themes/edme/assets/images/icons/services-toggle-down.svg);
    transition-duration: 0.5s;
    transition-property: transform;
    background-repeat: no-repeat;
}
.services-new-item--open .services-item__toggle {
    transform: rotate(180deg);
}
.services-new-item__body {
    display: flex;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}
.services-new-item--open .services-item__body {
    max-height: 1000px; /* больше, чем любой реальный контент */
    opacity: 1;
}
.services-new-item__title {
    color: var(--primary-color);
    font-family: "Neutral Face";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: start;
}
.services-new-item__title--mobile {
    display: none;
}
.services-new-item__desc {
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.8;
    padding-bottom: 5px;
    text-align: start;
    align-items: center;
    display: flex;
    padding-left: 15px;
    font-family: "Neutral Face";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    width: 250px;
}
.services-new__btn {
    text-align: start;
    display: block;
    width: fit-content;
    margin-top: 16px;
}
.services-new-item__right {
    padding-left: 120px;
}

.services-new__btn-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.modal-services .modal__container{
    max-width: 1100px;
}
@media (max-width: 1198px) {
    .services-new-item {
        width: 49%;
    }
}
@media (max-width: 767px) {
    .services-new__title {
        font-size: 40px;
    }

    .services-new-item__number {
        font-size: 35px;
    }
    .services-new-item__name {
        font-size: 23px;
    }
    .services-new-item--open .services-item__name {
        opacity: 0;
    }
    .services-new-item__img {
        width: 236px;
        height: 236px;
    }

    .services-new-item__body {
        flex-direction: column;
    }
    .services-new-item__title--mobile {
        display: block;
    }
    .services-new-item__title--desktop {
        display: none;
    }

    .services-new-item {
        width: 100%;
    }

    .services-new-item__desc {
        font-size: 15px;
        width: 175px;
    }
}
@media (max-width: 479px) {
    .services-new__title {
        font-size: 24px;
    }
    .services-new-item__name {
        font-size: 17px;
    }

}





.cooperation {
  margin: 0 auto;
  position: relative;
  padding-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.cooperation__wrapper {
  display: flex;
  flex-direction: column;
}
.cooperation__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
  max-width: 980px;
}
.cooperation__title span{
  color: #4155B0;
}
.cooperation__items {
  padding-top: 25px;
  display: flex;
  flex-direction: column;

}
.cooperation-item {
  border-top: 1px solid #5A5A5A;
  padding: 16px 20px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  position: relative;
  text-align: start;
}
.cooperation-item__title {
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.8;
}
.cooperation-item__desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;top: 30px;
  line-height: 140%; /* 25.2px */
  opacity: 0.8;
  padding-right: 25px;
  text-align: start;
}
.cooperation-item__number {
  color: var(--black-color);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 25px;
}
@media (max-width: 998px) {
  .cooperation__title {
    font-size: 40px;
  }
  .cooperation-item {
    padding: 16px 0 16px 0;
  }
  .cooperation-item__title {
    font-size: 23px;
  }
  .cooperation-item__desc {
    font-size: 18px;
    padding-right: 25px;
  }
  .cooperation-item__number {
    font-size: 25px;
    right: 0;
  }
}
@media (max-width: 479px) {
  .cooperation__title {
    font-size: 24px;
  }
  .cooperation-item__title {
    font-size: 17px;
  }
  .cooperation-item__desc {
    font-size: 16px;
  }
  .cooperation-item__number {
    font-size: 17px;
  }
}




.steps {
  margin: 0 auto -60px auto;
  position: relative;
  padding-top: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.steps__wrapper {
  display: flex;
}
.steps__left {
  min-width: 450px;
  padding-right: 50px;
}
.steps__right {
  width: 100%;
}
.steps__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
  display: flex;
  flex-direction: column;
}
.steps__title span{
  color: #4155B0;
}
.steps__items {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 400px; /* подбери под высоту одного блока */
  overflow: hidden;

}
.steps-item {
  border-radius: 25px;
  background: var(--primary-color);
  padding: 24px;
  color: #fff;
  margin-bottom: 10px;
  min-height: 250px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  will-change: transform;
}
.steps-item__title {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: start;
  max-width: 516px;
}
.steps-item-list {
  margin: 0;
  padding: 16px 0 0 23px;
  max-width: 516px;
}
.steps-item-list__item {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
  text-align: start;
  padding-bottom: 8px;
}
.steps-item-list__item::marker {
  font-size: 23px;
}
.steps-item__number {
  color: #EBEFFF;
  font-family: "Neutral Face";
  font-size: 233px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 302.9px */
  opacity: 0.3;
  position: absolute;
  top: 50%;
  transform: translateY(-42%);
  right: 0;
}
@media (max-width: 998px) {
  .steps__wrapper {
    flex-wrap: wrap;
  }

  .steps__left {
    min-width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 479px) {
  .steps__title {
    font-size: 24px;
    flex-direction: row;
    padding-bottom: 10px;
  }
  .steps__title span {
    padding-right: 10px;
  }
  .steps__items {
    height: 500px;
  }
  .steps-item {
    min-height: 447px;
  }
  .steps-item__title {
    font-size: 21px;
  }
  .steps-item-list__item {
    font-size: 16px;
  }
}







.questions {
  margin: 0 auto;
  position: relative;
  padding-top: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.questions__wrapper {
  display: flex;
}
.questions__left {
  max-width: 450px;
  padding-right: 50px;
}
.questions__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
  max-width: 980px;
}
.questions__title span{
  color: #4155B0;
}
.questions__items {
  display: flex;
  flex-direction: column;

}
.questions-item {
  border-top: 1px solid #5A5A5A;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  position: relative;
}
.questions-item__title {
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.8;
  text-align: start;
  cursor: pointer;
}
.questions-item__desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;top: 30px;
  line-height: 140%; /* 25.2px */

  text-align: start;
  display: flex;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.questions-item__number {
  color: var(--black-color);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 30px;
}
.questions-item__toggle {
  width: 30px;
  height: 25px;
  flex-shrink: 0;
  background-image: url(/wp-content/themes/edme/assets/images/icons/services-toggle-down.svg);
  transition-duration: 0.5s;
  transition-property: transform;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
}
.questions-item--open .questions-item__toggle {
  transform: rotate(180deg);
}
.questions-item--open .questions-item__desc {
  max-height: 1800px;
  opacity: 0.8;
  padding: 8px 25px 0 0;
}
@media (max-width: 998px) {
  .questions__wrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .questions__right {
    padding-top: 20px;

  }
  .questions__left {
    min-width: auto;
    padding-right: 0;
  }
  .questions__title {
    font-size: 40px;
  }
  .questions-item__title {
    font-size: 23px;
  }
  .questions-item__desc {
    font-size: 18px;
  }
  .questions-item__number {
    font-size: 25px;
  }

}
@media (max-width: 479px) {
  .questions__title {
    font-size: 24px;
  }
  .questions-item__title {
    font-size: 17px;
  }
  .questions-item__desc {
    font-size: 16px;
  }
  .questions-item__number {
    font-size: 17px;
  }
}






.calc {
  padding-top: 60px;
}
.calc__inner {
  border-radius: 50px;
  display: flex;
  background: linear-gradient(rgba(65, 85, 176, 0.8), rgba(65, 85, 176, 0.8)),
  url(/wp-content/themes/edme/assets/images/bg-calc.jpg) center / cover no-repeat;
  color: #fff;
  padding: 60px;
}
.calc__left {
  width: 703px;
}
.calc__right {
  padding-left: 110px;
}
.calc__title {
  font-family: "Neutral Face";
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 67.2px */
}
.calc__include-title {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.calc__include-list {
  padding: 38px 0 0 0;
  margin: 0;
}
.calc__include-item {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 23.8px */
  opacity: 0.8;
}
.calc__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  opacity: 0.8;
}
.calc__minus {
  background: none;
  border: none;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}
.calc__plus {
  background: none;
  border: none;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}
.calc__buttons {
  display: flex;
  align-items: center;
}
.calc__value {
  width: 30px;
  text-align: center;
}
.calc__toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.calc__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.calc__switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.calc__switch:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.calc__toggle input:checked + .calc__switch {
  background-color: #2196F3;
}
.calc__toggle input:checked + .calc__switch:before {
  transform: translateX(20px);
}
.calc__footer {
  margin-top: 15px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ffffff7a;
}
.calc__submit {
  width: 275px;
  background: #FFF;
  color: var(--primary-color);
}
.calc__result {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
}
@media (max-width: 998px) {
  .calc__inner {
    flex-direction: column;
  }
  .calc__title {
    font-size: 40px;
  }
  .calc__right {
    padding-left: 0;
  }
  .calc__left {
    width: 100%;
  }
  .calc__footer {
    flex-direction: column;
  }
  .calc__submit {
    width: 100%;
    margin-top: 15px;
  }
  .calc__result {
    text-align: start;
    width: 100%;
  }
  .calc__footer {
    padding-top: 15px;
  }

  .calc__include-list {
    padding: 0 0 0 0;
  }
  .calc__include-title {
    padding: 15px 0 0 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 479px) {
  .calc__inner {
    padding: 40px 20px;
  }
  .calc__title {
    font-size: 24px;
  }
  .calc__row {
    font-size: 16px;
  }
  .calc__include-title {
    font-size: 21px;
  }
  .calc__include-item {
    font-size: 14px;
  }
  .calc__include-list {
    padding: 0 0 0 20px;
  }
}











.faq {
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq__wrapper {
  display: flex;
}
.faq__left {
  width: 35%;
}
.faq__right {
  padding-left: 150px;
  width: 65%;
}
.faq__title {
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 125% */
  letter-spacing: -0.96px;
}
.faq__desc {
  padding-top: 24px;
  color: #808080;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

@media (max-width: 767px) {
  .faq__desc {
    font-size: 14px;
  }
}
.faq__contacts {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.faq__tel {
  padding-left: 40px;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
}
.faq__tel::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/wp-content/themes/edme/assets/images/phone-icon.svg);
  background-size: contain;
  position: absolute;
  left: 0;
}
.faq__mail {
  padding-top: 12px;
  padding-left: 40px;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
}
.faq__mail::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/wp-content/themes/edme/assets/images/mail-icon.svg);
  background-size: contain;
  position: absolute;
  left: 0;
}
.faq__img {
  padding-top: 24px;
  width: 240px;
}























.request {
  margin: 0 auto;
  position: relative;
  padding: 120px 0 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.request__wrapper {
  display: flex;
  align-items: center;
}
.request__left {
  min-width: 450px;
  padding-right: 50px;
}
.request__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
}
.request__title span {
  color: var(--primary-color);
}
.request__desc {
  padding-top: 20px;
  color: #808080;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-align: start;
  max-width: 245px;
}
.request__form {
  width: 100%;
  border-radius: 30px;
}
.requestForm {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.requestForm__row {
  display: flex;
  justify-content: space-between;
}
.requestForm__col {
  display: flex;
  flex-direction: column;
}
.requestForm__col:nth-of-type(1) {
  width: 40%;
}
.requestForm__col:nth-of-type(2) {
  padding-left: 10px;
}
.requestForm .form__item {
  width: 100%;
}
.requestForm .form__item textarea{
  height: 159px;
}
.requestForm__btn {
  margin-top: 0px;
  width: fit-content;
}
.requestForm__item-padding {
  padding-top: 50px;
}
@media (max-width: 998px) {
  .request__wrapper {
    flex-direction: column;
    align-items: self-start;
  }
  .request__left {
    min-width: 100%;
    padding-right: 0;
  }
  .request__title {
    font-size: 40px;
  }

  .request__desc {
    max-width: 321px;
  }
  .request__form {
    padding-top: 25px;
  }
  .requestForm__row {
    flex-direction: column;
  }
  .requestForm__col:nth-of-type(1) {
    width: 100%;
  }
  .requestForm__col {
    flex-direction: row;
  }
  .requestForm .form__item {
    margin-right: 10px;
  }
  .requestForm__col:nth-of-type(2) {
    padding-left: 0;
  }
  .requestForm__btn {
    width: 100%;
    padding: 15px 30px;
  }

}
@media (max-width: 479px) {
  .request__title {
    font-size: 24px;
  }
  .requestForm__col {
    flex-direction: column;
  }
}









.page-info {
  margin: 0 auto;
  position: relative;
  padding-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.page-info__wrapper {
  display: flex;
  flex-direction: column;
}
.page-info__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
}
.page-info__title span{
  color: #4155B0;
}
.page-info__desc p{
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
  padding-top: 16px;
  text-align: start;
}
@media (max-width: 998px) {
}
@media (max-width: 767px) {
  .page-info__title {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .page-info__desc p {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .page-info__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .page-info__desc p {
    font-size: 17px;
  }
}


/* Модификация для страницы услуг */
.page-info.page-info--desc {
  padding-top: 0;
}
.page-info.page-info--desc .page-info__desc p{
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
  padding-top: 0;
}
@media (max-width: 479px) {
  .page-info.page-info--desc .page-info__desc p{
    font-size: 16px;
  }
}
/* //Модификация для страницы услуг */



.service-steps {
  margin: 0 auto;
  position: relative;
  padding-top: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.service-steps__wrapper {
  display: flex;
  flex-direction: column;
}
.service-steps__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
  max-width: 980px;
}
.service-steps__title span{
  color: #4155B0;
}
.service-steps__list {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}
.service-step {
  width: 100%;
  min-height: 215px;
  height: auto;
  flex-shrink: 0;
  position: relative;
  border-radius: 25px;
  margin-bottom: 15px;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}
.service-step__title {
  margin: 25px 25px 0 25px;
  color: #EBEFFF;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: start;
}
.service-step__desc {
  margin: 8px 25px 0 25px;
  color: #EBEFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  text-align: start;
  opacity: 0.8;
  padding-bottom: 24px;
  max-width: 816px;
}
.service-step__number {
  color: #EBEFFF;
  font-family: "Neutral Face";
  font-size: 441px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 573.3px */
  opacity: 0.3;
  position: absolute;
  top: 50%;
  transform: translateY(-42%);
  right: 0;
}
@media (max-width: 998px) {
  .service-step__number {
    opacity: 0.1;
    top: -24px;
    transform: none;
    font-size: 233px;
  }
}
@media (max-width: 767px) {
  .service-steps {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .service-step {
    min-height: 215px;
    flex-shrink: 0;
    border-radius: 25px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
  }
}
@media (max-width: 479px) {
  .service-step__desc {
    margin: 5px 25px 0 5px;
  }
  .service-steps {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .service-step {
    width: 100%;
  }
}






.default-block {
  margin: 0 auto;
  position: relative;
  padding-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.default-block__wrapper {
  display: flex;
}
.default-block__left {
  min-width: 450px;
  padding-right: 50px;
}
.default-block__title {
  color: #1B1B1B;
  font-family: "Neutral Face";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
  max-width: 980px;
}
.default-block__title span{
  color: #4155B0;
}

.default-block__desc {
  padding-top: 24px;
}

.default-block__desc ul{
  margin: 0;
  padding: 0;
}

.default-block__desc li{
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
  text-align: start;
}
.default-block__desc li::marker {
  font-size: 25px;
  color: var(--primary-color);
}
@media (max-width: 998px) {
  .default-block__wrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .default-block__right {
    padding-top: 0;

  }
  .default-block__left {
    min-width: auto;
    padding-right: 0;
  }
  .default-block__title {
    font-size: 40px;
  }
  .default-block__desc ul {
    margin: 0;
    padding: 0 0 0 25px;
  }

}
@media (max-width: 479px) {
  .default-block__title {
    font-size: 24px;
  }
}






.request-modal {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-width: 320px;
}
.request-modal__row {
  display: flex;
  justify-content: center;
}
.request-modal__col {
  display: flex;
  flex-direction: column;
}

.request-modal .form__item {
  width: 100%;
}
.request-modal__btn {
  margin-top: 16px;
  width: 100%;
}
.request-modal__item-padding {
  padding-top: 50px;
}
@media (max-width: 998px) {

  .request-modal__row {
    flex-direction: column;
  }
  .request-modal__col {
    flex-direction: row;
  }
  .request-modal .form__item {
    margin-right: 10px;
  }
  .request-modal__btn {
    width: 100%;
    padding: 15px 30px;
  }

}
@media (max-width: 479px) {

}






@keyframes default-anime-left {
  to {
    background-position-x: -150px;
  }
}
@keyframes default-anime-right {
  to {
    background-position-x: 150px;
  }
}




.footer {
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}

.footer__request {
  min-width: 450px;
  padding-right: 50px;

}


.footer-request__desc {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  max-width: 320px;
}

.footer-request__btn {
  margin-top: 16px;
  background: #FFF;
  color: var(--primary-color);
  display: block;
  width: fit-content;
}

.footer-request__btn:hover {
  background: var(--primary-color);
  color: #FFF;
    outline: 1px solid #FFF;

}

.footer__wrapper  {
  display: flex;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
}


.footer__contact {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
  padding-bottom: 16px;
  text-align: start;
}
.footer__contact.footer__contact--tg {
  display: flex;
  align-items: center;
}
.footer__contact.footer__contact--tg::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url('/wp-content/themes/edme/assets/images/icons/menu-tg.svg') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  display: block;
  padding-right: 8px;
}

.footer__copyright {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.6;
  margin-top: 60px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
}
.footer__menu-item {
  color: #FFF;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.8;
  text-align: start;
  padding-bottom: 5px;
}

.footer__menu-item:hover {
  opacity: 1;
}
.footer__policy {
  margin-top: 40px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  opacity: 0.8;
}

.footer__mobile {
  display: none;
}

@media (max-width: 998px) {
  .footer__mobile {
    display: block;

    padding: 20px;
    border-spacing: 20px;
  }
  .footer__wrapper  {
    flex-direction: column;
  }
  .footer__contacts {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
  }
  .footer__menu-item {
    padding-bottom: 10px;
  }
  .footer__policy {
    margin-top: 60px;
  }
  .footer__copyright {
    display: none;
  }

  .footer__title {
    border-top: 1px solid #ffffff4a;
    color: #FFF;
    font-family: "Neutral Face";
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 70.2px */
    padding-top: 24px;
  }
  .footer__copyright--mobile {
    display: block;
  }

  .footer__copyright {
    margin-top: 8px;
  }

  .footer__request {
    min-width: auto;
  }
}
@media (max-width: 479px) {
  .footer {
    padding: 40px 0;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__title {
    font-size: 24px;
  }
  .footer__copyright--mobile {
    max-width: 300px;
  }

  .footer__contact {
    font-size: 16px;
  }


  .footer__menu-item {
    font-size: 17px;
  }
  .footer__policy {
    margin-top: 16px;
    text-align: start;
  }
}









@media (max-width: 1200px) {
  .promo__image {
    max-width: 100%;
  }

  .advantages__items {
    justify-content: space-around;
  }
}
@media (max-width: 991px) {
  .promo__title {
    font-size: 32px;
    line-height: 38px;
    /* 118.75% */
    font-weight: 500;
  }
  .promo__anime-left {
    height: 300px;
  }
  .promo__anime-right {
    width: 536px;
    height: 227px;
  }

  .tariffs__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .default-block__anime-left {
    background-position-x: -200px;
  }
  .default-block__anime-right {
    background-position-x: 150px;
  }

  @keyframes default-anime-left {
    to {
      background-position-x: -250px;
    }
  }
  @keyframes default-anime-right {
    to {
      background-position-x: 200px;
    }
  }
}
@media (max-width: 767px) {
  .promo__wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .promo__image {
    max-width: 100%;
  }
  .promo__title {
    font-size: 32px;
    line-height: 38px;
    /* 118.75% */
    font-weight: 500;
  }
  .promo__tags {
    display: none;
  }
  .promo__btns {
    padding-top: 0px;
    flex-direction: column;
    align-items: self-start;
  }
  .promo__btn {
    margin-top: 15px;
  }

  .about__title {
    font-size: 30px;
  }

  .promoCareer__title {
    font-size: 30px;
    line-height: 34px;
  }

  .faq__wrapper {
    display: block;
  }
  .faq__title {
    padding-top: 30px;
    font-size: 30px;
    line-height: 34px;
  }
  .faq__desc {
    display: none;
  }
  .faq__contacts {
    display: none;
  }
  .faq__img {
    width: 152px;
  }
  .faq__left {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .faq__right {
    width: 100%;
    padding-left: 0;
  }

  .questions .question__title {
    font-size: 18px;
  }
  .questions .question__desc {
    font-size: 14px;
  }

  .courses__title {
    font-size: 30px;
    line-height: 34px;
  }
  .courses .course {
    max-width: 100%;
  }

  .advantages__item {
    padding-left: 30px;
  }
  .advantages__item-title {
    font-size: 20px;
  }


  .subscribeForm .form__item {
    width: 100%;
  }
}
@media (max-width: 480px) {
  @keyframes anime-left {
    from {
      left: -40%;
    }
    to {
      left: -70%;
    }
  }
  @keyframes anime-right {
    from {
      right: -60%;
    }
    to {
      right: -90%;
    }
  }
  .default-block__anime-left {
    background-position-x: -350px;
  }
  .default-block__anime-right {
    background-position-x: 300px;
  }

  @keyframes default-anime-left {
    to {
      background-position-x: -400px;
    }
  }
  @keyframes default-anime-right {
    to {
      background-position-x: 350px;
    }
  }
}
.contact-form {
  width: 390px;
  background: #ffffff;
  position: relative;
}
.contact-form__title {
  color: #000;
  font-size: 22px;
  font-weight: 700;
}

.form__input {
  padding: 24px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  width: 100%;
  color: #1B1B1B;
  font-family: Onest;
  opacity: 0.8;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  font-size: 18px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  background: #D7DBEB;
}
.form__input::placeholder {
  color: #808080;
}
.form__input:focus {
  border: 1px solid black;
}
.form__input--success {
  border: 1px solid green;
}
.form__input--error {
  border: 1px solid red;
}
.form__select {
  padding: 12px;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
}
.form__item {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.form label {
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
.form__btn {
  background: none;
  width: 100%;
}
.form__checkbox-wrapper {
  color: #d9d9d9;
  margin: 16px 0;
}

.modal-form {
  width: 100%;
}

.wpcf7-response-output {
  border-color: #3399FF !important;
  border-width: 1px !important;
  padding: 10px 0 !important;
  font-size: 16px;
}
.wpcf7-acceptance .wpcf7-list-item{
  margin: 0;
}.wpcf7-acceptance .wpcf7-list-item-label{
  color: #1B1B1B;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  opacity: 0.8;
}

.wpcf7-form.invalid .wpcf7-validates-as-required {
  border: 1px solid #ff0000;
}

.wpcf7-response-output {
  text-align: center;
}

@media (max-width: 1600px) {
  .modal-form {
    font-size: 14px;
  }
  .modal-form__input {
    font-size: 14px;
    padding: 10px;
    margin-top: 10px;
  }
  .modal-form__btn {
    font-size: 16px;
    padding: 15px 0;
  }
}
@media (max-width: 790px) {
  .form {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .request__left {
    padding-right: 0;
  }
  .contact-form {
    padding-top: 25px;
  }

  .modal-form .form__input {
    font-size: 14px;
  }

  .form__input {
    font-size: 16px;
  }
}




#cookie_note{
  display: none;
  position: fixed;
  bottom: 15px;
  left: 40%;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 20px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 99999;
}

#cookie_note .btn{
  width: auto;
}

#cookie_note p{
  margin: 0;
  font-size: 0.7rem;
  text-align: left;
  color: black;
  padding-right: 15px;
}

#cookie_note a {
  color: var(--primary-color);
}

@media (min-width: 576px){
  #cookie_note.show{
    display: flex;
  }
}

@media (max-width: 575px){
  #cookie_note.show{
    display: block;
    text-align: left;
  }
}

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