@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *::after {
  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, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

* {
  color: black;
}

/*------------------------------------------------------------------*/
/*Переменные*/
/*-------------------------------------------------------------------------------------------*/
.wrapper {
  display: flex;
  flex-direction: column;
}

/*Рабочие классы*/
._container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

._above-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 138.8888888889%;
  color: #222222;
}

._open__sea a {
  font-size: 18px;
  background-color: #F7859C;
  padding: 8px 15px;
  border-radius: 12px;
  line-height: 208.3333333333%;
  color: white;
}

._title {
  font-size: 65px;
  text-align: center;
}

._hid {
  visibility: hidden;
}

/*--------------------------------------------------------------------------------------------------*/
@media (max-width: 700px) {
  .lock {
    overflow: hidden;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: white;
  z-index: 50;
}
.header .header__rows {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__logo {
  overflow: hidden;
  margin-right: 10px;
  flex: 0 0 60px;
  z-index: 51;
}
@media (max-width: 700px) {
  .header .header__logo {
    flex: 0 0 50px;
  }
}
.header .header__logo img {
  width: 100%;
  height: 100%;
}
.header__burger.show {
  padding: 20px 0 0 0;
}
.header__burger.show span {
  transform: scale(0);
  transition: all 0.3s ease 0s;
}
.header__burger.show::before {
  transform: rotate(-45deg);
  top: 8px;
  transition: all 0.3s ease 0s;
}
.header__burger.show::after {
  top: 8px;
  transform: rotate(45deg);
  transition: all 0.3s ease 0s;
}

.header__burger {
  display: none;
}
@media (max-width: 700px) {
  .header__burger {
    z-index: 51;
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
  }
  .header__burger span {
    position: absolute;
    background-color: black;
    width: 100%;
    height: 2px;
    left: 0;
    top: 9px;
    transition: all 0.3s ease 0s;
  }
  .header__burger::before {
    content: "";
    position: absolute;
    background-color: black;
    width: 100%;
    height: 2px;
    left: 0;
    top: 0;
    transition: all 0.3s ease 0s;
  }
  .header__burger::after {
    content: "";
    position: absolute;
    background-color: black;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease 0s;
  }
}

.menu {
  padding-top: 5px;
  z-index: 51;
}
@media (max-width: 700px) {
  .menu {
    z-index: 49;
    position: fixed;
    left: 0;
    top: -100%;
    height: 100%;
    width: 100%;
    background-color: #85f78e;
    padding-top: 100px;
    transition: all 0.5s ease 0s;
    overflow: auto;
  }
}

.menu.show {
  top: 0;
}

.menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 700px) {
  .menu__list {
    flex-direction: column;
    align-items: center;
  }
}
.menu__list li {
  font-size: 18px;
  line-height: 138.8888888889%;
}
.menu__list li:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 700px) {
  .menu__list li {
    flex-direction: column;
    align-items: center;
  }
  .menu__list li:not(:last-child) {
    margin-bottom: 20px;
    margin-right: 0px;
  }
}

.main {
  flex: 1 1 auto;
}

/*Блок 1*/
.page-1 {
  padding-top: 150px;
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 992px) {
  .page-1 {
    padding-top: 100px;
  }
}
.page-1 .page-1__bg {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .page-1 .page-1__bg {
    opacity: 0.5;
  }
}
.page-1 .page-1__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.page-1 .page-1__title {
  font-weight: 700;
  font-size: 97px;
  color: #222222;
}
.page-1 .page-1__description {
  font-size: 18px;
  line-height: 138.8888888889%;
  margin: 40px 0;
  color: #404756;
}
/*-------------------------------------------------------------------------------------------------------*/
/*Блок 2*/
.page-2 {
  padding-top: 50px;
}
.page-2 hr {
  border: none;
  color: #404756;
  height: 1px;
  background-color: #404756;
  margin: 25px 0;
}
@media (max-width: 992px) {
  .page-2 hr {
    margin: 15px 0;
  }
}
@media (max-width: 992px) {
  .page-2 {
    padding-top: 0px;
  }
}
.page-2 .page-2__column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-2 .page-2__content {
  margin-top: 85px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .page-2 .page-2__content {
    margin-top: 25px;
    flex-direction: column;
    align-items: center;
  }
}
.page-2 .page-2__content__column {
  display: flex;
  flex-direction: column;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .page-2 .page-2__content__column {
    order: 2;
    margin-right: 0px;
  }
}
.page-2 .page-2__content__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 17px;
}
@media (max-width: 992px) {
  .page-2 .page-2__content__title {
    margin-bottom: 8px;
  }
}
.page-2 .page-2__contant__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 138.8888888889%;
}
@media (max-width: 992px) {
  .page-2 .page-2__content__foto {
    margin-bottom: 10px;
    order: 1;
  }
}
.page-2 .page-2__content__foto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------------------------------------------------------------------------*/
/*Блок 3*/
.page-3 {
  margin-top: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #FBF1E6;
}
.page-3 hr {
  border: none;
  color: #404756;
  height: 1px;
  background-color: #404756;
  margin: 70px 0;
}
@media (max-width: 600px) {
  .page-3 hr {
    margin: 20px 0;
  }
}
.page-3 .page-3__column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-3 .page-3__above-title {
  align-self: flex-start;
}
.page-3 .page-3__title {
  align-self: flex-start;
}
.page-3 .page-3__content {
  width: 100%;
}
.page-3 .page-3__content__column {
  display: flex;
  flex-direction: column;
}
.item {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 600px) {
  .item {
    flex-direction: column;
  }
}
.item .item__left {
  max-width: 336px;
}
@media (max-width: 600px) {
  .item .item__left {
    order: 2;
  }
}
.item .item__left .item__title {
  font-weight: 700;
  font-size: 36px;
}
@media (max-width: 600px) {
  .item .item__left .item__title {
    margin-top: 5px;
  }
}
.item .item__left .item__tier {
  display: flex;
  margin: 31px 0;
}
@media (max-width: 600px) {
  .item .item__left .item__tier {
    margin: 15px 0;
  }
}
.item .item__left .item__tier .item__tier__title {
  font-weight: 700;
  font-size: 18px;
  margin-right: 10px;
}
.item .item__left .item__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 138.8888888889%;
  color: #404756;
}
@media (max-width: 600px) {
  .item .item__right {
    order: 1;
  }
}
.item .item__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------------------------------------------------------------------------*/
/*Блок 4*/
.page-4 .page-4__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
}
@media (max-width: 992px) {
  .page-4 .page-4__column {
    margin-top: 50px;
  }
}
.page-4 .page-4__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .page-4 .page-4__content {
    margin-top: 50px;
  }
}
.page-4 .page-4__content__column {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
}
@media (max-width: 700px) {
  .page-4 .page-4__content__column {
    flex-direction: column;
  }
}
.page-4 .page-4__content__column:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .page-4 .page-4__content__column:not(:last-child) {
    margin-bottom: 50px;
  }
}
.page-4 .before__item {
  font-size: 20px;
  font-weight: 500;
  color: #F7859C;
  position: relative;
}
@media (max-width: 700px) {
  .page-4 .before__item {
    margin-bottom: 20px;
  }
}
.page-4 .before__item::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: url(../add/before.png) 0 0/100% 100% no-repeat;
  margin-left: -55px;
  margin-top: -15px;
}
@media (max-width: 1080px) {
  .page-4 .after__item {
    display: none;
  }
}
.page-4 .after__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-4 {
  display: flex;
  flex-direction: column;
  padding: 80px 50px 90px 50px;
  background: url("../add/page-4__item__bg.png") 0 0/100% 100% no-repeat;
}
.item-4 .item-4__above-title {
  max-width: 336px;
  font-weight: 700;
  font-size: 18px;
}
.item-4 .item-4__title {
  margin: 7px 0 23px 0;
  max-width: 336px;
  font-weight: 700;
  font-size: 36px;
}
.item-4 .item-4__description {
  max-width: 336px;
  color: #404756;
  font-weight: 400;
  font-size: 18px;
  line-height: 138.8888888889%;
}

/*----------------------------------------------------------------------------------------------------------*/
/*Блок 5*/
.page-5 {
  margin-top: 50px;
  background-color: #FDDBE2;
}
.page-5 .page-5__body {
  padding-top: 50px;
  padding-bottom: 50px;
}
.page-5 .page-5__above-title {
  text-align: center;
}
.page-5 .page-5__content {
  margin-top: 40px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  row-gap: 95px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.grid .grid__item {
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(200px, auto) 20px 1fr 1fr;
  row-gap: 10px;
}
.grid .grid__item__foto {
  z-index: 1;
}
.grid .grid__item__foto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid .grid__item__circle {
  background-color: #F7859C;
  margin: -40px -50px 0 -50px;
  border-radius: 50%;
}
.grid .grid__post {
  z-index: 1;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
}
.grid .grid__name {
  z-index: 1;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  line-height: 20px;
}

/*----------------------------------------------------------------------------------------------------------*/
/*Блок 6*/
.page-6 {
  padding-top: 50px;
}
.page-6 hr {
  border: none;
  color: #404756;
  height: 1px;
  background-color: #404756;
  margin: 30px 0 37px 0;
}
@media (max-width: 600px) {
  .page-6 hr {
    margin: 20px 0;
  }
}
.page-6 .page-6__above-title {
  text-align: center;
}
.page-6__content {
  margin-top: 50px;
}

.content .content__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content .content__row__text {
  font-size: 24px;
  font-weight: 400;
  color: #222222;
}
@media (max-width: 650px) {
  .content .content__row__text {
    margin-right: 30px;
  }
}
.content .content__row__icon {
  flex: 0 0 17px;
}
.content .content__row__icon img {
  width: 100%;
  height: 100%;
}
.content .content__row__subtext {
  transform: scale(0);
  line-height: 138.8888888889%;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  max-width: 800px;
  transition: all 0.5s ease 0s;
  max-height: 0px;
  margin-left: -350px;
}
.content .content__row__subtext._active {
  max-height: 500px;
  transform: scale(1);
  transition: all 0.5s ease 0s;
  max-width: 800px;
  margin-left: 0px;
}

/*----------------------------------------------------------------------------------------------------------*/
.footer {
  background-color: #D3D4ED;
  padding: 50px 0 20px 0;
}
.footer hr {
  border: none;
  color: #404756;
  height: 1px;
  background-color: #404756;
  margin: 20px 0 10px 0;
}

.footer__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer__head .footer__nav {
  margin-bottom: -15px;
}

.footer__row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 610px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__row .footer__messengers {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 610px) {
  .footer__row .footer__messengers {
    margin-bottom: 15px;
  }
}
.footer__row .footer__messengers .footer__messengers__item {
  font-size: 18px;
  font-weight: 400;
  color: #404756;
}
@media (max-width: 610px) {
  .footer__row .footer__messengers .footer__messengers__item {
    margin-bottom: 15px;
  }
}
.footer__row .footer__messengers .footer__messengers__item:not(:last-child) {
  margin-right: 42px;
}
.footer__row .footer__menu {
  display: flex;
  flex-direction: column;
}
.footer__row .footer__menu .footer__menu__item {
  font-size: 18px;
  font-weight: 400;
  color: #404756;
}
.footer__row .footer__menu .footer__menu__item:not(:last-child) {
  margin-bottom: 11px;
}

.footer__down {
  display: flex;
}
.footer__down .footer__down__item {
  font-size: 14px;
  color: #404756;
}
.footer__down .footer__down__item:not(:last-child) {
  margin-right: 78px;
}