* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Avenir Next Cyr";
  position: relative;
}

h1 {
  font-size: 94px;
  line-height: 110%;
  color: #5953A8;
  /** 768px - 1024px **/
  /** 320px - 767px **/
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  h1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 72px;
  line-height: 110%;
  margin-bottom: 50px;
  color: #5953A8;
  /** 768px - 1024px **/
  /** 320px - 767px **/
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 30px;
  line-height: 150%;
  color: #1E1E1E;
  /** 768px - 1024px **/
  /** 320px - 767px **/
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

p.body-text {
  font-size: 24px;
  color: #1E1E1E;
  line-height: 150%;
  margin-bottom: 15px;
  /** 768px - 1024px **/
  /** 320px - 767px **/
}
p.body-text a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  p.body-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  p.body-text {
    font-size: 16px;
  }
}

.container {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}

.container-fluid {
  max-width: 1827px;
  width: 90%;
  margin: 0 auto;
}
.main {
min-height: calc(100vh - 86px);
}
.section {
  padding: 65px 0px 90px;
  /*min-height: calc(100vh - 240px);*/
  /** 320px - 767px **/
  /** 768px - 1023px **/
  /*max-height: calc(100vh - 210px);*/
}

@media (min-width: 1200px) {
  .section{ 
    /*max-height: calc(100vh - 210px);*/
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .section {
    padding: 40px 0px 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section {
    padding: 60px 0px 60px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1399px) {
  .section {
    padding: 40px 0px 40px;
  }
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.header {
  padding-top: 50px;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .header {
    padding-top: 15px;
  }
}
.header__logo {
  max-width: 93px;
  max-height: 70px;
}
.header-block {
  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;
}
.header-burger {
  display: none;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .header-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__close {
  display: none;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .header__close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
  }
}
.header-menu {
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .header-menu {
    position: absolute;
    background: #FFFFFF;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .header-menu--active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 80px;
  }
}
.header-nav__item a {
  font-size: 21px;
  font-weight: 400;
  color: #1E1E1E;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .header-nav__item a {
    text-align: center;
  }
}
.header-nav__item a:hover {
  color: #A7A9C4;
}
.header-nav__item:not(:last-child) {
  margin-right: 55px;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .header-nav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
}

.footer {
  padding: 35px 0px;
}
.footer-block {
  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;
}
.footer-block a {
  font-size: 13px;
  font-weight: 400;
  color: #1E1E1E;
  text-decoration: underline;
}
.footer__copyright {
  font-size: 13px;
  font-weight: 400;
  color: #1E1E1E;
}

.service-block {
  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;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .service-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.service__title {
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .service__title {
    margin-bottom: 30px;
  }
}
.service-content {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  margin-right: 40px;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .service-content {
    margin-right: 0;
  }
}
.service__descr {
  margin-bottom: 40px !important;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .service__descr {
    margin-bottom: 20px !important;
  }
}
.service-info__title {
  margin-bottom: 15px;
}

.spac-block {
  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;
  /** 320px - 767px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .spac-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.spac-img {
  /** 320px - 767px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .spac-img {
    max-width: 250px;
  }
}
.spac-text {
  max-width: 990px;
  margin-bottom: 70px;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .spac-text {
    margin-bottom: 30px;
  }
}
.spac-links {
  max-width: 570px;
}
.spac__link {
  margin-bottom: 30px;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .spac__link {
    margin-bottom: 15px;
  }
}
.spac__link a {
  font-size: 50px;
  color: #5953A8;
  font-weight: 600;
  text-decoration: underline;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .spac__link a {
    font-size: 18px;
  }
}

.props__title {
  margin-bottom: 80px;
  /** 320px - 767px **/
  /** 768px - 1279px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .props__title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .props__title {
    margin-bottom: 60px;
  }
}
.props-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 80px;
  /** 320px - 767px **/
  /** 320px - 767px **/
  /** 768px - 1279px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .props-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .props-block {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .props-block {
    margin-bottom: 40px;
  }
}
.props__table {
  width: 45%;
  /** 320px - 767px **/
}
.props__table:not(:last-child) {
  /** 320px - 767px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .props__table:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .props__table {
    width: 100%;
  }
}
.props__table:not(:last-child) {
  margin-right: 80px;
  /** 320px - 767px **/
  /** 768px - 1279px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .props__table:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .props__table:not(:last-child) {
    margin-right: 35px;
  }
}
.props__table td {
  padding-bottom: 10px;
}
.props__table td:first-child {
  padding-right: 37px;
  font-size: 27px;
  font-weight: 700;
  color: #5953A8;
  width: 30%;
  /** 320px - 767px **/
  /** 768px - 1279px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .props__table td:first-child {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .props__table td:first-child {
    font-size: 16px;
  }
}
.props__table td:last-child {
  /*font-weight: 300;*/
  font-size: 27px;
  width: 70%;
  /** 320px - 767px **/
  /** 768px - 1279px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .props__table td:last-child {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .props__table td:last-child {
    font-size: 16px;
  }
}

.contact__title {
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .contact__title {
    margin-bottom: 30px;
  }
}
.contact-map {
  width: 660px;
  height: 425px;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .contact-map {
    width: 100%;
    height: 350px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.contact-map iframe {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
}
.contact-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .contact-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.contact-info {
  margin-left: 60px;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .contact-info {
    margin-left: 0;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.contact-list__item {
  font-size: 30px;
  color: #1E1E1E;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .contact-list__item {
    font-size: 18px;
  }
}
.contact-list__item:not(:last-child) {
  margin-bottom: 45px;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .contact-list__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.contact-list__item a {
  color: #5953A8;
  font-weight: 600;
  text-decoration: underline;
}

.life__pretitle {
  font-size: 36px;
  line-height: 125%;
  color: #4F548A;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .life__pretitle {
    font-size: 20px;
  }
}
.life__title {
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .life__title {
    margin-bottom: 30px;
  }
}

.key-wrap {
  max-width: 1500px;
  overflow-x: auto;
}
.key-table {
  border-collapse: collapse;
  vertical-align: top;
  width: 100%;
}
.key-table tr {
  vertical-align: top;
}
.key-table tr:nth-child(2) {
  background: #989B9F;
  color: #FFFFFF;
}
.key-table tr:nth-child(4) {
  background: #4F548A;
  color: #FFFFFF;
}
.key-table td {
  padding: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 125%;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .key-table td {
    font-size: 14px;
  }
}
.key-table td:first-child {
  font-size: 26px;
  font-weight: 600;
  width: 11%;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .key-table td:first-child {
    font-size: 18px;
    min-width: 207px;
  }
}
.key-table td:nth-child(2) {
  width: 27%;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .key-table td:nth-child(2) {
    min-width: 365px;
  }
}
.key-table td:nth-child(3) {
  width: 20%;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .key-table td:nth-child(3) {
    min-width: 300px;
  }
}
.key-table td:nth-child(4) {
  width: 22%;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .key-table td:nth-child(4) {
    min-width: 300px;
  }
}
.key-table td:nth-child(5) {
  width: 20%;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .key-table td:nth-child(5) {
    min-width: 330px;
  }
}
.key-table__title {
  margin-bottom: 10px;
  font-size: 27px;
  /** 320px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .key-table__title {
    font-size: 18px;
  }
}

.benefit-wrap {
  max-width: 1500px;
  overflow-x: auto;
}
.benefit__title {
  font-size: 60px;
  /** 320px - 767px **/
  /** 768px - 1023px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .benefit__title {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .benefit__title {
    font-size: 48px;
  }
}
.benefit-table {
  border-collapse: collapse;
  width: 100%;
}
.benefit-table td {
  text-align: center;
  padding: 15px;
  border-bottom: 2px solid #A5B7B9;
  font-size: 20px;
  /** 320px - 767px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .benefit-table td {
    font-size: 14px;
    padding: 10px;
  }
}
.benefit-table td:first-child {
  font-size: 24px;
  font-weight: 600;
  color: #989B9F;
  text-align: left;
  width: 32%;
  /** 320px - 767px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .benefit-table td:first-child {
    font-size: 16px;
  }
}
.benefit-table td:nth-child(2) {
  background: #5953A8;
  color: #FFFFFF;
  width: 22%;
}
.benefit-table td:nth-child(3) {
  border-right: 2px solid #A5B7B9;
  width: 22%;
}
.benefit-table td:nth-child(4) {
  width: 22%;
}
.benefit-table tr:first-child {
  vertical-align: bottom;
}
.benefit-table tr:last-child td {
  border-bottom: none;
}
.benefit-table__title {
  font-size: 25px;
  /** 320px - 767px **/
}
.benefit-table sup {
  font-size: 16px;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  .benefit-table sup {
    font-size: 12px;
    margin-left: 2px
  }
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  .benefit-table__title {
    font-size: 16px;
  }
}

.benefit-text {
  margin-top: 25px;
}
.benefit-text p:not(:last-child) {
  margin-bottom: 10px;
}

.home-block {
  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;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .home-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.home-text {
  max-width: 1100px;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1399px) {
  .home-text {
    margin-bottom: 20px;
  }
}
.home__title {
  margin-bottom: 40px;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1399px) {
  .home__title {
    margin-bottom: 20px;
  }
}
.home__descr {
  max-width: 725px;
}
.home__descr a {
  color: #1E1E1E;
}
.home-img {
  max-width: 783px;
  max-height: 520px;
  width: 100%;
  margin-left: 40px;
  padding-right: 3px;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1399px) {
  .home-img {
    margin-left: 0;
  }
}

.popup__descr {
  overflow: hidden;
  overflow-y: scroll;
}
.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.popup-active {
  opacity: 1;
  visibility: visible;
}
.popup-block {
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFFFFF;
  padding: 70px 60px;
  /** 320px - 767px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .popup-block {
    top: 40px;
    padding: 40px;
    width: 90%;
    max-height: 400px;
    overflow: scroll;
  }
}
.popup__close {
  border: none;
  cursor: pointer;
  background: transparent;
  position: absolute;
  top: 20px;
  right: 20px;
  /** 320px - 767px **/
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .popup__close {
    width: 25px;
    height: 25px;
    top: 15px;
    right: 15px;
  }
}

.about__title {
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .about__title {
    margin-bottom: 30px;
  }
}
.about-content {
  margin-top: 70px;
  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;
  /** 320px - 1024px **/
  /** 320px - 1440px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .about-content {
    margin-top: 30px;
  }
}
@media screen and (min-width: 320px) and (max-width: 1440px) {
  .about-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.about-content-text {
  max-width: 686px;
  /** 320px - 1279px **/
}
@media screen and (min-width: 320px) and (max-width: 1279px) {
  .about-content-text {
    max-width: auto;
  }
}
.about-person {
  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;
  max-width: 100%;
}
.about-person-item {
  text-align: center;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /** 320px - 1024px **/
}
.about-person-item__title {
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .about-person-item__title {
    font-size: 16px;
    line-height: 110%;
    margin-top: 5px;
  }
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .about-person-item {
    width: 30%;
  }
}
.about-person-item:not(:last-child) {
  margin-right: 55px;
  /** 320px - 1024px **/
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .about-person-item:not(:last-child) {
    margin-right: 15px;
  }
}