@charset "UTF-8";

:root {
  --purple: #8136E8;
  --black: #302046;
  --gray-dark: #828282;
  --gray-light: #EDEDED;
  --p: #564D5E;
  --purp-light: #9953F9;
  --purp-dark: #6E2BC9;
  --purp-pastel: #F7F1FF;
  --purp-pastel-hov: #E7D6FF;
  --purp-pastel-act: #D6B9FE;
}

html,
body {
  height: 100vh;
  width: 100%;

}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--black);
  line-height: 1.5;
}

body.lock {
  overflow: hidden;
}



.wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.container {
  margin: 0 auto;
  padding: 0 25px;
  max-width: 77.5rem;
}

::-moz-selection {
  background: #DFC7F9;
}

::selection {
  background: #DFC7F9;
}

::-moz-selection {
  background: #DFC7F9;
}

body::-webkit-scrollbar {
  width: 14px;
  /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--gray-light);
  /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
  width: 9px;
  background-color: #ACACAC;
  /* цвет плашки */
  border-radius: 20px;
  /* закругления плашки */
  border: 3px solid var(--gray-light);
}






.has-medium-font-size{
	font-size: inherit!important;
}




.header__margin {
  padding: 20px 0 0px 0;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__inner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__menu {
  font-size: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2.5em;
     -moz-column-gap: 2.5em;
          column-gap: 2.5em;
  row-gap: 1.4em;
}

.header__menu-icon-close {
  display: none;
}
.header__menu-icon img{
	width: 30px;
}

.header__menu > .menu-item-type-post_type.current-menu-item a{
  font-weight: 600;
  position: relative;
}

.header__menu > .menu-item-type-post_type.current-menu-item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background-color: var(--purple);
  border-radius: 10px;
}

.header__nav-items li:not(:last-child) {
  margin-right: 30px;
}

.header__nav-search {
  position: relative;
  width: 200px;
  margin: 0 auto;
  height: 35px;
}

.header__nav-input {
  height: 35px;
  width: 300px;
  padding: 0 42px 0 15px;
  border: none;
  outline: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border-bottom: 3px solid var(--purple);

}



.header__nav-input:hover {
  border-bottom: 3px solid var(--purp-light);
}

.header__nav-input:focus {
  border-bottom: 3px solid var(--purp-dark);
  outline: none;
}

.header__nav-input::-webkit-input-placeholder {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--gray-dark);
}

.header__nav-input::-moz-placeholder {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--gray-dark);
}

.header__nav-input:-ms-input-placeholder {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--gray-dark);
}

.header__nav-input::-ms-input-placeholder {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--gray-dark);
}


input[type=text]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=text]::-ms-reveal {  display: none; width : 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }





.header__menu-icon-close img{
	width: 20px;
}
.header__nav-btn {
  border: none;
  width: 42px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 3;
}

.header__shopping-cart-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-weight: 900;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 0.6461538462;
}

.header__shopping-cart-inner span {
  position: absolute;
  top: -11px;
  margin-left: 0.9375em;
  z-index: 2;
  background-color: var(--purple);
  padding: 8px 9px 7px 8px;
  border-radius: 30px;
}

.header__shopping-cart-inner:hover span {
  background-color: var(--purp-light);
}

.header__shopping-cart-inner:active span {
  background-color: var(--purp-dark);
}

.header__menu-icon {
  display: none;
}




.footer__inner {
  background-color: var(--purp-pastel);
  padding: 60px 0;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 50px;
}

.footer__list {
  max-width: 12.5em;
}

.footer__block-header {
  display: none;
}

.footer__menu-block{

}

.footer__headline {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Fira Sans", sans-serif;
  color: var(--black);
}

.footer__contacts {
  max-width: 15.625em;
}

.footer__list:not(:last-child) {
  margin-right: 20px;
}

.footer__list li:not(:last-child) {
  margin-bottom: 0.9375em;
}

.footer__contact {
  margin-bottom: 35px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.footer__contact a {
  font-size: 1rem;
  display: block;
  color: var(--p);
}

.footer__list a {
  color: var(--black);
  font-size: 1rem;
}

.footer__contact-item:not(:last-child) {
  margin-bottom: 10px;
}

.footer__contact-social div:not(:last-child) {
  margin-bottom: 20px;
}



.footer__social-item {
  max-width: 192px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.footer__social-item a {
  font-size: 1rem;
  color: var(--p);
}

.footer__copyright-text {
  color: var(--p);
  font-size: 0.8125rem;
  text-align: center;
}







.breadcrumbs__list {
 margin-bottom: 25px;
	margin-top: 10px;
  
}

.breadcrumbs__list a,
.breadcrumbs__list span {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--p);
}  

.breadcrumbs__list a {
  padding-right: 5px;
}

.breadcrumbs__list span > span > span {
  padding-left: 5px;
}


.breadcrumbs__list a:hover {
  color: var(--purple);
}
.breadcrumbs__list a:active {
  color: var(--purp-dark);
}

.breadcrumbs__list span {
  font-weight: 500;
}















.top__inner {
  position: relative;
}

.top__inner::after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(77.53%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, left bottom, from(#FDE9FE), color-stop(100%, #ECDEFF), to(#E7D3FF));
  background: -o-linear-gradient(top, #FFFFFF 0%, rgba(255, 255, 255, 0) 77.53%), -o-linear-gradient(top, #FDE9FE 0%, #ECDEFF 100%, #E7D3FF 100%);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 77.53%), linear-gradient(180deg, #FDE9FE 0%, #ECDEFF 100%, #E7D3FF 100%);
  position: absolute;
  width: 100%;
  max-height: 100%;
  height: 90%;
  top: 0;
  z-index: -5;
}

.top__img {
  width: 54%;
  padding-top: 60px;
  max-width: 100%;
}

.top__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top__headline {
  max-width: 567px;
}

.top__headline span {
  position: relative;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.top__headline span::after {
  content: "";
  background-color: #DFC7F9;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-animation: show 3s;
          animation: show 3s;
}

.top__subtitle {
  max-width: 426px;
  margin-bottom: 40px;
}

.top__text-info{
  margin-left: 20px;
}


.news{
	display:none;
}

.news__btn {
  background-color: var(--purp-pastel);
  padding: 18px 20px;
  border-radius: 100%;
  cursor: pointer;
}

.news__btn:hover {
  background-color: var(--purp-pastel-hov);
}

.news__btn:active {
  background-color: var(--purp-pastel-act);
}

.news__slider-headline {
  max-width: 370px;
}
.news__slider-headline.headline-text{
	margin-bottom: 15px;
	font-family: "Fira Sans", sans-serif;
	font-weight: 600;
}
.news__slider-subtitle {
  margin-bottom: 15px;
  
}
.news__slider-info.slider__item a{
	color: var(--purple);
	padding-bottom: 5px;
	position: relative;
	font-weight: 500;
}
.news__slider-info.slider__item a:hover{
	color: var(--purp-light);
}
.news__slider-info.slider__item a:active{
	color: var(--purp-dark);
}

.news__slider-subtitle {
	text-align: left;
}
.news__slider-info.slider__item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--purple);
  border-radius: 10px;
}
.news__slider-info.slider__item a:hover:before{
	background-color: var(--purp-light);
}
.news__slider-info.slider__item a:active:before{
	background-color: var(--purp-dark);
}

.news__slider-subtitle p {
	max-width:435px;
}

.swiper {
  margin-top: 40px;
}

.swiper-slide-inner img{
  max-width: 100%;
  max-height: 100%;
  width: 50%;
  height: 50%;
	border-radius:14px;
}

.news__slider-info {
  margin-left: 45px;
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq__call-to-action__inner{
  display: inline-block;

}


.faq__questions {
  width: 35.3125em;
}

.faq__questions-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 1.875em;
  background-color: var(--purp-pastel);
  border-radius: 18px;
  cursor: pointer;
}

.faq__questions-header:hover {
  background-color: var(--purp-pastel-hov);
}

.faq__questions-item {
  margin-bottom: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}



.faq__questions-header img {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.faq__questions-item--active .faq__questions-item-btn {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  padding-left: 0px;
}

.faq__questions-item--active .faq__questions-header {
  border-radius: 18px 18px 0 0;
}

.faq__questions-item--active .faq__questions-text {
  display: block;
  -webkit-animation: opacity 0.6s;
          animation: opacity 0.6s;
}

.faq__questions-header {
  min-height: 54px;
}

.faq__questions-header h4 {
  font-weight: 500;
  max-width: 450px;
  color: var(--black);
	padding-right: 20px;
}

.faq__questions-text {
  display: none;
  padding: 5px 30px 20px 30px;
  background-color: var(--purp-pastel);
  border-radius: 0 0 18px 18px;
}

.faq__questions-inner {
  margin-bottom: 55px;
}

.faq__call-to-action {
  margin-top: -5%;
}

.contacts__inner {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts__item-img {
  max-width: 100%;
  width: 11%;
  margin-right: 25px;
}

.contacts__info-side {
  margin-top: -5%;
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
}
.contacts__more{
  min-width: 271px;
}
.contacts__info div:not(:last-child) {
  margin-bottom: 25px;
}

.contacts__info {
  margin-bottom: 40px;
}

.contacts__item-info {
  font-weight: 500;
  color: var(--purple);
}

.contacts__item-info:hover {
  color: var(--purp-light);
}

.contacts__item-subtitle {
  margin-top: 5px;
}

.contacts__item-subtitle {
  color: var(--gray-dark);
}

.contacts__more-headline {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}

.contacts__img img {
  max-width: 100%;
  margin-left: 80px;
}

.contacts__popup__text {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 20%;
     -moz-column-gap: 20%;
          column-gap: 20%;
}

.content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 100px 50px;
}










.content__info {
  max-width: 480px;
}

.content__headline {
  margin-bottom: 10px;
}

.content__subtitle {
  margin-bottom: 40px;
}

.content__img {
  max-width: 100%;
  width: 45%;
}








.info__inner {
  padding: 0 60px;
}

.info__block {
  
  
}

/* .info__block img  {
  max-width: 100%;
  max-height: 100%;
  width: 50%;
  height: 50%;
} */

.content-inner h2,
.content-inner h3,
.content-inner h4,
.content-inner h5,
.content-inner h6 {
  margin-top: 0.5em;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0.3em;
  display: inline-block;
  color: var(--black);
}


.info__text {
  padding: 0 20px;
  margin: 0 auto;
}

/*.content-block > .content-inner{
	display: flex;
	margin-top: 30px;
}*/


.content-inner > .wp-block-image img {
	max-width: 600px;
	width: 100%;
}





.wp-block-image.size-full{
	width: 100%;
}

/*.content-block> .content-inner p{
	margin-left: 50px;
}*/

.info__text p {
  color: var(--p);
}

.info__two-subtitle {
  margin-bottom: 15px;
}

.info__text p:not(:last-child) {
  margin-bottom: 15px;
}

.info__text-inner {
  margin-bottom: 40px;
}

.info__list li:not(:last-child) {
  margin-bottom: 15px;
}

.info__list-item {
  list-style: disc;
  color: var(--p);
  font-size: 1.125rem;
  max-width: 475px;
  margin-left: 20px;
}






.text p {
  color: var(--p);
}

.text__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.text__items {
  max-width: 700px;
  margin-right: 30px;
}

.text__menu-inner {
  background-color: var(--purp-pastel);
  border-radius: 25px;
  padding: 40px 60px;
}

.text__menu-headline {
  color: var(--black);
  font-size: 27px;
  font-weight: 500;
  max-width: 275px;
  line-height: 1.3333333333;
  margin-bottom: 20px;
}


.text__block-item p:not(:last-child){
  margin-bottom: 15px;
}


.text__block-item.content-indent-text p> strong{
	    font-weight: 400;
    	color: var(--p);
}

.text__menu-list {
  max-width: 275px;
}

.text__menu-list > .current-menu-item {
  font-weight: 500;
}

.text__menu-list li:not(:last-child) {
  margin-bottom: 15px;
}

.text__menu-list a {
  color: var(--black);
}

.text__menu-list a:hover {
  color: var(--purple);
}

.text__menu-list a:active {
  color: var(--purp-dark);
}

.content-inner li{
  list-style: circle;
  color: var(--p);
}

.content-inner li:not(:last-child){
  margin-bottom: 5px;
}












.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 32, 70, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
}

.popup__content {
  background-color: #fff;
  color: var(--black);
  max-width: 800px;
  width: 80%;
  padding: 75px 100px;
  border-radius: 30px;
  position: relative;
  margin: 10px 20px;
  overflow: auto;
}

.popup__close {
  position: absolute;
  top: 40px;
  right: 40px;
}

.popup__title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: center;
}

.popup__text {
  margin: 0 auto;
  max-width: 681px;
}

.popup__text span {
  font-weight: 700;
  margin-right: 5px;
}

.popup__text p {
  max-width: 350px;
}

.popup__text p:not(:last-child) {
  margin-bottom: 20px;
}

.popup.open {
  opacity: 1;
  visibility: visible;
  overflow: auto;
}

.popup.open .popup__content {
  opacity: 1;
}







@-webkit-keyframes show {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes show {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@-webkit-keyframes opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}












.logo-menu {
  margin-right: 20px;
}

.menu-item a {
  font-size: 1rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.menu-item a {
  color: var(--black);
}

.menu-item a:hover {
  color: var(--purple);
}

.menu-item a:active {
  color: var(--purp-dark);
}






.header-hidden {
  visibility: hidden;
  opacity: 0;
}

.header-show {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  -webkit-box-shadow: 0px 8px 26px rgba(37, 0, 84, 0.05);
          box-shadow: 0px 8px 26px rgba(37, 0, 84, 0.05);
}

.headline-text {
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.1944444444;
  margin-bottom: 10px;
}

.headline-h2 {
  font-size: 1.875rem;
  margin-bottom: 0.4em;
  font-weight: 600;
  line-height: 1.5;
}
.top__link-container{
  margin-bottom: 40px;
}

.link-fill {
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.4px;
  background-color: var(--purple);
  border-radius: 20px;
  padding: 20px 40px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.link-fill:hover,
.link-border:hover {
  background-color: var(--purp-light);
}

.link-fill:active,
.link-border:active {
  background-color: var(--purp-dark);
}

.link-border {
  color: var(--purple);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 1px solid var(--purple);
  border-radius: 20px;
  padding: 20px 40px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.link-border:hover,
.link-border:active {
  color: #fff;
}

.link-border:hover {
  border: 1px solid var(--purp-light);
}

.link-border:active {
  border: 1px solid var(--purp-dark);
}

.content-indent-text {
  margin-bottom: 70px;
}

.content-indent-text-min {
  margin-bottom: 50px;
}

.content-indent-min {
  margin-bottom: 120px;
}

.content-indent-max {
  margin-bottom: 160px;
}

.call-to-action {
  max-width: 25.9375em;
  margin-left: 30px;
}

.call-to-action img {
  display: block;
  max-width: 100%;
}

.call-to-action__img-top {
  width: 25%;
}

.call-to-action__img-bottom {
  width: 40%;
  margin-left: 120px;
}

.call-to-action__headlines {
  margin: 40px 0;
}

.call-to-action__headline {
  font-size: 1.6875rem;
  font-weight: 500;
  color: var(--black);
}

.call-to-action__link {
  color: var(--purple);
  border-bottom: 2px solid var(--purple);
}

.call-to-action__link:hover {
  color: var(--purp-light);
  border-bottom: 2px solid var(--purp-light);
}

.call-to-action__link:active {
  color: var(--purp-dark);
  border-bottom: 2px solid var(--purp-dark);
}



@media (max-width: 1215px) {
  .header__menu {
    -webkit-column-gap: 1.5625em;
       -moz-column-gap: 1.5625em;
            column-gap: 1.5625em;
  }

  .header__nav-input {
    width: 250px;
  }

  .headline-text {
    font-size: 1.6875rem;
  }

  .top__img img {
    width: 20%;
  }
	
	/*.content-block >.content-inner img{
		max-width: 400px;
	}
	.content-block> .info__text{
		padding: 0 0;
	}*/
}

@media (max-width: 1060px) {
  .header__menu-icon {
    display: block;
    position: relative;
    width: 45px;
    cursor: pointer;
    margin-right: 30px;
  }

  .header__nav--open {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(48, 32, 70, 0.5);
    top: 0;
    left: 0;
    z-index: 3;
  }

  .header__nav-inner {
    position: fixed;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    z-index: 5;
    background-color: var(--purp-pastel);
    -webkit-box-shadow: 0px 8px 26px rgba(37, 0, 84, 0.05);
            box-shadow: 0px 8px 26px rgba(37, 0, 84, 0.05);
    padding: 30px 50px 30px 50px;
    -webkit-transition: left 0.3s ease 0s;
    -o-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }

  .header__nav-inner.active {
    left: 0;
  }

  .header__nav-inner.active::before {
    left: 80px;
  }

  .header__nav-inner::before {
    content: "";
    position: fixed;
    width: 25%;
    top: 0;
    left: -100%;
    height: 70px;
    background-color: var(--purp-pastel);
    -webkit-transition: left 0.3s ease 0s;
    -o-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    z-index: 1;
  }

  .header__menu-icon-close {
    margin-right: auto;
    z-index: 5;
  }

  .header__menu {
    row-gap: 40px;
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 200px;
    text-align: right;
    margin-left: auto;
  }
	
	.swiper-slide-inner{
		padding-right: 80px;
		padding-left: 80px;
	}

  .current-menu-item a::before {
    display: none;
  }

  .header__nav-search {
    width: 100px;
  }

  .content-inner h2,
  .content-inner h3,
  .content-inner h4,
  .content-inner h5,
  .content-inner h6 {
    font-size: 1.5rem;
  }

  .info__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .info__text {
    margin: 0 0 30px 0;
    max-width: 800px;
  }



  .info__list li {
    font-size: 1rem;
  }

  .content__img {
    width: 43%;
  }
  .contacts__img img{
    max-width: 80%;
  }
	/*.content-block >.content-inner{
		display: block;
		padding: 0 70px;
	}
	
	.content-block > .content-inner img{
		max-width: 780px;
		margin-bottom: 25px;
	}
	
	.content-block >.content-inner p{
	margin-left: 0px;
	}
	
	.content-block .wp-block-image{
		margin: 0px 0px;
		text-align: center;
	}
	.content-block >.content-inner img{
		max-width: 100%;
		width: 100%;
	}*/
}









@media (max-width: 885px) {
  body {
    font-size: 1rem;
  }

  .headline-text {
    font-size: 1.3rem;
  }

  .top__img {
    width: 50%;
  }

  .top__subtitle {
    max-width: 330px;
    margin-bottom: 25px;
  }

  .news__slider-headline {
    margin-bottom: 2px;
  }

  .news__slider-subtitle {
    margin-bottom: 25px;
  }

	.swiper-slide-inner{
		padding-right: 30px;
		padding-left: 30px;
	}

	.swiper-button-prev, 
	.swiper-button-disabled,
	.swiper-button-next {
    display: none;
  }

  .popup__content {
    padding-right: 60px;
    padding-left: 60px;
  }
	
	.popup__text-item span{
		display:block;
	}
	.popup__text-item{
		margin: 0 auto;
		min-width: 208px;
	}

  .text-headline-h2{
    max-width: 450px;
  }
  .faq__call-to-action{
    display: none;
  }
	
	.faq__questions-btn.link-border{
		display: block;
    	text-align: center;
	}

	/*.content-block > .content-inner{

		padding: 0 0;
	}*/
	
	
	
}






@media (max-width: 731px) {
  .link-fill,
  .link-border {
    font-size: 0.8125rem;
  }

  .headline-text {
    font-size: 1.25rem;
    margin-bottom: 2px;
  }

  .logo-menu{
    display: none;
  }
	
	.header__menu-icon{
		margin-right: 0;
		width: 100%;
	}

  .top__subtitle {
    margin-bottom: 20px;
  }

	

	.top__content{
		justify-content: center;
    	-webkit-box-align: center;
		
	}
  .top__text-info {
    order: -1;
	  margin-left: 0;
	  margin-top:50px;
  }
	
	.top__content{
		flex-wrap:wrap;
	}
	
	
	.top__text-info{
    text-align: center;
  }

	.top__img{
		width: 80%;
	}

  .top__content {
    padding: 50px 50px 80px 70px;
  }

  .top__subtitle {
    margin-bottom: 32px;
    max-width: 100%;
    padding: 0 10px;
  }

  .top__text-info{
    margin-left: 0;
  }
  .top__inner {
    width: 100%;
  }

  .top__inner::after {
    width: 100%;
    max-height: 100%;
    height: 95%;
  }

  .top__content {
    padding: 0px 0 0px 0;
  }
	
	
	
	
	
	
	
	.news__slider-info.slider__item{
		max-width: 100%;
		
	}
 .swiper-slide-inner {
    display: flex;
	 flex-wrap: wrap;
  }
	.swiper-slide-inner{
		padding-left: 80px;
		padding-right: 80px;
	}
	.swiper-slide-inner img{
		margin-bottom: 20px;
		width: 100%;
		height:100%;
	}
   .news__slider-info.slider__item {
    margin: 0 auto;
  }
	.news__slider-subtitle p{
		max-width: 100%;
	}
	.news__slider-headline.headline-text{
		max-width: 100%;
	}

  .content-indent-max {
    margin-bottom: 100px;
  }

  .content-indent-min {
    margin-bottom: 60px;
  }

  .call-to-action__headline {
    font-size: 1.4375rem;
  }

  .popup__title {
    font-size: 1.5625rem;
  }
	
	.popup__text.contacts__popup__text p{
		text-align: left;
	}

  .contacts__popup__text {
    -webkit-column-gap: 20%;
       -moz-column-gap: 20%;
            column-gap: 20%;
  }

  .content__inner {
    padding: 100px 10px;
  }

  .info__headline {
    margin-bottom: 20px;
  }

  .text__inner {
    display: inline-block;
  }

  .text__menu {
    display: none;
  }

  .text-headline-h2{
    max-width: 100%;
  }

  .contacts__img img{
    display: none;
  }
  .contacts__inner{
    display: block;
  }

  .contacts__info-side{
    display: block;
  }

  .contacts__phone-inner{
    text-align-last: left;
  }
  .contacts__info{
    margin-right: 10px;
    display: inline-block;
  }
  .contacts__more{
    
  }
  .contacts__info{
    margin: 20px 0 30px 0;
  }
	.contacts__info-side{

    text-align: center;
  }

}






@media (max-width: 615px) {
	.header__nav-inner{
		width: 40%;
	}
  .header__nav-input {
    width: 200px;
  }

  

  .footer__logo-link {
    display: none;
  }

  .footer__content {
    display: block;
  }

  .footer__menu-block {
    border-bottom: 1px solid #C6B9D8;
  }

  .footer__block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 30px;
  }

  .footer__adaptive {
    display: none;
  }
	
	.footer__list li:not(:last-child),
	.footer__contact-item:not(:last-child){
		margin-bottom: 1.6rem;
	}

  .footer__headline-btn {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  .footer__contact {
    margin-bottom: 15px;
  }

  .footer__list {
    max-width: 25em;
  }

  .footer__menu-block--active .footer__adaptive {
    display: block;
    padding: 0 0 40px 30px;
    -webkit-animation: opacity 0.6s;
            animation: opacity 0.6s;
  }

  .footer__menu-block--active .footer__headline-btn {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .headline-text {
    margin-bottom: 7px;
  }
  

 .swiper-slide-inner{
		padding-left: 20px;
		padding-right: 20px;
	}

  .call-to-action {
    display: none;
  }

  .text__call-to-action {
    display: inline-block;
  }




  .contacts__popup__text {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }



  .content__inner {
    display: inline-block;
    text-align: center;
    padding: 100px 5px;
  }

  .content__img {
    margin-top: 50px;
    width: 60%;
  }

  .content__info {
    max-width: 270px;
    display: inline-block;
  }

  .info__inner {
    padding: 0 0;
  }

  .info__img {
    width: 90%;
  }

  .content-inner h2,
  .content-inner h3,
  .content-inner h4,
  .content-inner h5,
  .content-inner h6 {
    font-size: 1.25rem;
  }


	.popup__text.contacts__popup__text p{
		text-align: center;
	}
	.popup__title{
		font-size: 1.4rem;
	}
  .popup__text{
    max-width: 280px;
  }
}

@media (max-width: 380px) {
  .headline-h2{
    font-size: 1.5rem;
  }
  


 

  .content__img {
    width: 80%;
  }
  .popup__content{
    padding: 70px 25px 40px;
  }
	.popup__title{
		font-size: 1.3rem;
	}
}

.none{
  display: none;
}