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

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: "Overpass", sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.35;
  color: #1D1D1D;
}

.container {
  max-width: 1222px;
  padding: 0 16px;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .container {
    max-width: 768px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-right: 32px;
    padding-left: 32px;
  }
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav__item:not(:last-child) {
  margin: 0 64px 0 0;
}
.nav__link {
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  color: #1D1D1D;
  transition: color 0.4s;
}
.nav__link:hover {
  color: #F13E2E;
}
@media only screen and (max-width: 992px) {
  .nav__item:not(:last-child) {
    margin-right: 24px;
  }
  .nav__link {
    font-size: 16px;
  }
}

.btn {
  display: inline-block;
  padding: 15px 22px 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #FEFEFF;
  text-decoration: none;
  border: none;
  outline: none;
  border-radius: 30px;
  background: #F13E2E;
  box-shadow: 0 4px 5px 0 rgba(132, 17, 17, 0.06), 0px -3px 4px 0px rgba(132, 17, 17, 0.06) inset, 0px 3px 6px 0px rgba(255, 255, 255, 0.08) inset;
  cursor: pointer;
  transition: background-color 0.4s;
}
.btn:hover {
  background-color: #c51c0d;
}

.title {
  padding: 0;
  margin: 0 0 64px;
  font-feature-settings: "liga" off;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 78px;
  font-weight: 600;
  line-height: 1.1;
  color: #FEFEFF;
  text-transform: uppercase;
}
.title span {
  text-transform: none;
  font-style: italic;
}
@media only screen and (max-width: 992px) {
  .title {
    font-size: 62px;
  }
}

.hidden {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(29, 29, 29, 0.5);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -100;
}
.mobile-menu__block {
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  transition: transform 0.4s;
  transform: translateZ(0) translateX(100%);
}
.mobile-menu__nav {
  padding: 86px 0 0;
  border-top: 1px solid #BAAEAE;
}
.mobile-menu__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile-menu__item {
  padding: 16px 32px 16px;
  border-top: 1px solid #BAAEAE;
}
.mobile-menu__item:last-child {
  border-bottom: 1px solid #BAAEAE;
}
.mobile-menu__link {
  color: #1D1D1D;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  line-height: 1.2;
}
.mobile-menu__social {
  display: flex;
  padding: 0 72px 42px 42px;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
.mobile-menu__social .item {
  margin: 0 18px 20px 0;
}
.mobile-menu__social .item:nth-child(3), .mobile-menu__social .item:last-child {
  margin-right: 0;
}
.mobile-menu__social .link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F13E2E;
  border-radius: 50%;
}
.mobile-menu.active {
  opacity: 1;
  z-index: 100;
}
.mobile-menu.active .mobile-menu__block {
  transform: translateX(0);
}
@media only screen and (max-width: 768px) {
  .mobile-menu {
    display: flex;
  }
  .mobile-menu__social .item:nth-child(3), .mobile-menu__social .item:last-child {
    margin-right: 18px;
  }
}

.section {
  padding: 64px 0;
}
@media only screen and (max-width: 768px) {
  .section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

.subtitle {
  margin: 0 0 38px;
  font-feature-settings: "liga" off;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .subtitle {
    margin-bottom: 32px;
    font-size: 40px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 24px 0 32px;
}
.header__logo {
  width: 160px;
  display: inline-block;
}
.header__nav {
  margin: 0 0 0 64px;
}
.header__btn {
  padding-right: 58px;
  margin: 0 0 0 auto;
  background-image: url("../images/button-icon.png");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: right 22px center;
}
.header__btn span {
  display: none;
}
.header__burger {
  z-index: 101;
}
.header__burger.active svg circle {
  fill: #F13E2E;
}
.header__burger.active svg path {
  stroke: white;
}
.header__burger.active svg path:nth-child(2) {
  transform: rotate(45deg);
  transform-origin: 7px 13px;
}
.header__burger.active svg path:nth-child(3) {
  display: none;
}
.header__burger.active svg path:nth-child(4) {
  transform: rotate(-45deg);
  transform-origin: 8px 19px;
}
.header__burger.active span {
  opacity: 0;
}
.header__burger, .header__btn-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  order: 3;
  cursor: pointer;
  text-decoration: none;
  color: #1D1D1D;
}
.header__burger svg, .header__btn-mobile svg {
  width: 32px;
  height: 32px;
  margin: 0 0 4px;
  border-radius: 50%;
}
.header__burger svg circle, .header__btn-mobile svg circle {
  transition: fill 0.4s;
}
.header__burger svg path, .header__btn-mobile svg path {
  transition: stroke 0.4s, transform 0.4s;
}
.header__burger span, .header__btn-mobile span {
  font-size: 12px;
  line-height: 1;
}
@media only screen and (max-width: 992px) {
  .header__logo {
    width: 120px;
  }
  .header__nav {
    margin-left: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .header__inner {
    padding: 22px 0 14px;
    justify-content: space-between;
  }
  .header__nav {
    display: none;
  }
  .header__logo {
    order: 2;
  }
  .header__btn {
    display: none;
  }
  .header__burger, .header__btn-mobile {
    display: flex;
  }
  .header__btn-mobile {
    order: 1;
  }
}

.hero {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: top;
}
.hero__inner {
  height: 715px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 0 106px;
}
.hero__social {
  align-self: flex-end;
}
.hero__social-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  text-align: right;
  color: #FEFEFF;
  line-height: 1.1;
}
.hero__social-list {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero__social-item:not(:last-child) {
  margin: 0 24px 0 0;
}
.hero__social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #FEFEFF;
  transition: background-color 0.4s;
}
.hero__social-link svg path {
  transition: all 0.4s;
}
.hero__social-link:hover {
  background-color: #F13E2E;
}
.hero__social-link:hover svg path {
  fill: #FEFEFF;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #BAAEAE;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 992px) {
  .hero__inner {
    height: 600px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .hero {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
  }
  .hero__inner {
    height: 690px;
    padding-bottom: 56px;
  }
  .hero__title {
    margin-bottom: 56px;
    font-size: 47px;
    color: #1D1D1D;
  }
  .hero__social {
    align-self: flex-start;
  }
  .hero__social-title {
    text-align: left;
    color: #1D1D1D;
  }
  .hero__social-item:not(:last-child) {
    margin: 0 16px 0 0;
  }
  .hero:before {
    background-color: #EEE7DB;
  }
}

.about__row {
  display: flex;
  flex-wrap: wrap;
}
.about__item {
  width: calc(50% - 42px);
  display: flex;
  margin: 0 84px 84px 0;
}
.about__item-number {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  margin: 0 16px 0 0;
  border: 1px solid #1D1D1D;
  border-radius: 50%;
  font-feature-settings: "liga" off;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 50px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}
.about__item-text {
  margin: 0;
}
.about__item:nth-child(even) {
  margin-right: 0;
}
.about__item:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .about {
    padding-top: 56px;
  }
  .about__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
  .about__item:nth-child(3) {
    margin-bottom: 32px;
  }
}

.mission__inner {
  padding: 40px 52px;
  background-color: #EEE7DB;
  border-radius: 226px;
}
.mission__block {
  position: relative;
  padding: 40px 0;
  text-align: center;
  border-radius: 226px;
  border: 3px dashed #fff;
}
.mission__block::before, .mission__block::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  background-image: url("../images/icon-star.svg");
}
.mission__block::after {
  left: unset;
  right: -28px;
}
.mission__title {
  margin-bottom: 16px;
}
.mission__text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-feature-settings: "liga" off;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (max-width: 992px) {
  .mission__text {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .mission {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 28px;
    margin-bottom: 28px;
    border-radius: 195px;
    background: #EEE7DB;
  }
  .mission__inner {
    padding: 0;
  }
  .mission__block {
    padding: 110px 0 146px;
    border: none;
  }
  .mission__block::before {
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
  }
  .mission__block::after {
    top: unset;
    right: unset;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background-size: cover;
  }
  .mission__title {
    margin-bottom: 26px;
  }
  .mission__text {
    font-size: 25px;
  }
}

.banner__content {
  height: 270px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  background-image: url("../images/belarus.png");
  background-repeat: no-repeat;
  background-size: 486px 269px;
  background-position: center;
}
.banner__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px 0 0;
  background-color: #F13E2E;
  border-radius: 30px;
  box-shadow: 0 4px 5px 0 rgba(132, 17, 17, 0.06), 0px -3px 4px 0px rgba(132, 17, 17, 0.06) inset, 0px 3px 6px 0px rgba(255, 255, 255, 0.08) inset;
  cursor: pointer;
  transition: background-color 0.4s;
}
.banner__btn:hover {
  background-color: #c51c0d;
}
.banner__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}
@media only screen and (max-width: 992px) {
  .banner__content {
    height: 182px;
    background-size: 332px 182px;
    background-position: center top;
  }
}
@media only screen and (max-width: 768px) {
  .banner__content {
    height: 270px;
    background-size: auto 182px;
    flex-direction: column;
  }
  .banner__btn {
    width: 38px;
    height: 38px;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .banner__btn svg circle {
    display: none;
  }
  .banner__text {
    max-width: 100px;
    text-align: right;
  }
}

.valuables__title {
  margin-bottom: 24px;
}
.valuables__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.valuables__item {
  padding: 16px 32px 16px 62px;
  font-size: 24px;
  border-bottom: 1px solid #EEE7DB;
  background-image: url("../images/icon-star.svg");
  background-repeat: no-repeat;
  background-size: 42px 42px;
  background-position: left center;
}
.valuables__item:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 768px) {
  .valuables__item {
    padding-right: 16px;
    padding-left: 32px;
    font-size: 19px;
    background-size: 16px 16px;
    background-position: left 16px;
  }
}

.achievement .container {
  max-width: 1300px;
}
@media only screen and (max-width: 768px) {
  .achievement .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.ideas__title {
  position: relative;
  margin: 0 0 64px;
  font-style: italic;
  font-weight: 600;
  text-transform: unset;
  line-height: 1.25;
  z-index: 1;
}
.ideas__title::before {
  content: "1";
  position: absolute;
  bottom: -73px;
  left: -120px;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 400px;
  font-weight: 600;
  font-style: italic;
  color: #EEE7DB;
  line-height: 1.2;
  z-index: -1;
}
.ideas__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 64px;
}
.ideas__item {
  width: calc(50% - 19px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 35px;
  margin: 0 38px 38px 0;
  border-radius: 30px;
  background: #EEE7DB;
}
.ideas__item-slogan {
  font-family: "Noto Serif Display", sans-serif;
  font-size: 78px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
}
.ideas__item-title {
  margin: 0 0 16px;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
}
.ideas__item-text {
  margin: 0 0 16px;
}
.ideas__item-desc {
  align-self: flex-end;
  margin: auto 0 0 auto;
  text-align: right;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  color: #FEFEFF;
}
.ideas__item:first-child {
  padding: 0;
  background-color: transparent;
}
.ideas__item:nth-child(even) {
  margin-right: 0;
}
.ideas__item:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.ideas__text {
  max-width: 900px;
  margin: 0 auto 38px;
  font-size: 24px;
  text-align: center;
}
.ideas__btns {
  display: flex;
  align-self: center;
  justify-content: center;
}
.ideas__btn {
  padding-right: 64px;
  padding-left: 28px;
  margin: 0 32px 0 0;
  font-size: 19px;
  background-image: url("../images/icon-down.svg");
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: right 22px center;
}
.ideas__btn:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1366px) {
  .ideas .container {
    max-width: 992px;
  }
}
@media only screen and (max-width: 992px) {
  .ideas .container {
    max-width: 100%;
  }
  .ideas__item {
    width: 100%;
    min-height: unset;
    margin-right: 0;
  }
  .ideas__item:nth-last-child(-n+2) {
    margin-bottom: 38px;
  }
  .ideas__item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 992px) {
  .ideas .container {
    max-width: 100%;
  }
  .ideas__item {
    width: 100%;
    min-height: unset;
    margin-right: 0;
  }
  .ideas__item:nth-last-child(-n+2) {
    margin-bottom: 38px;
  }
  .ideas__item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .ideas .container {
    padding: 0;
  }
  .ideas__title {
    padding: 0 30px;
    margin-bottom: 56px;
    font-size: 32px;
  }
  .ideas__title::before {
    bottom: -58px;
    left: unset;
    right: 0;
    font-size: 300px;
  }
  .ideas__item {
    margin-bottom: 24px;
  }
  .ideas__item-slogan {
    font-size: 40px;
  }
  .ideas__item:first-child {
    padding: 0 30px;
  }
  .ideas__item:nth-last-child(-n+2) {
    margin-bottom: 24px;
  }
  .ideas__item:last-child {
    margin-bottom: 0;
  }
}

.services__head {
  position: relative;
  margin: 0 0 60px;
  z-index: 1;
}
.services__head::before {
  content: "2";
  position: absolute;
  top: -80px;
  right: 0;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 300px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  color: #EEE7DB;
  z-index: -1;
}
.services__title {
  max-width: 882px;
  margin-bottom: 16px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
  text-transform: none;
}
.services__text {
  max-width: 812px;
  margin: 0;
  font-size: 24px;
}
.services__accordion {
  padding: 0;
  border: none !important;
}
.services__accordion-list.ui-tabs-nav {
  padding: 0 !important;
  border: none;
  background-color: transparent;
}
.services__accordion-list.ui-tabs-nav li.ui-tabs-tab {
  padding: 0;
  margin: 0 30px 16px 0;
  background: transparent;
  border: none;
}
.services__accordion-list.ui-tabs-nav li.ui-tabs-tab a.ui-tabs-anchor {
  padding: 0;
  margin: 0;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  color: #1D1D1D;
  transition: color 0.4s;
}
.services__accordion-list.ui-tabs-nav li.ui-tabs-tab:last-child {
  margin-right: 0;
}
.services__accordion-list.ui-tabs-nav li.ui-tabs-tab.ui-tabs-active a.ui-tabs-anchor {
  color: #F13E2E;
  text-decoration: underline;
}
.services__accordion-list.ui-tabs-nav li.ui-tabs-tab.ui-state-hover a.ui-tabs-anchor {
  color: #F13E2E;
}
.services__accordion-tab.ui-tabs-panel {
  padding: 0;
}
.services__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 38px;
  grid-row-gap: 38px;
}
.services__item iframe {
  display: block;
  width: 100%;
  height: 318px;
  margin: 0 0 16px;
  border-radius: 30px;
}
.services__item-title {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
}
.services__item-text {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .services__head {
    margin-bottom: 32px;
  }
  .services__head::before {
    top: -104px;
  }
  .services__title {
    margin-bottom: 8px;
    font-size: 32px;
  }
  .services__text {
    font-size: 19px;
  }
  .services__accordion-list.ui-tabs-nav li.ui-tabs-tab {
    margin-right: 24px;
    margin-bottom: 8px;
  }
  .services__accordion-list.ui-tabs-nav li.ui-tabs-tab a.ui-tabs-anchor {
    font-size: 15px;
  }
  .services__row {
    display: flex;
    flex-wrap: wrap;
  }
  .services__item {
    width: 100%;
    margin-bottom: 16px;
    grid-column-gap: unset;
    grid-row-gap: unset;
  }
  .services__item iframe {
    height: auto;
    margin-bottom: 8px;
  }
  .services__item-title {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
  }
  .services__item-text {
    margin: 0;
  }
  .services__item:last-child {
    margin-bottom: 0;
  }
}

.help {
  padding-bottom: 0;
}
.help__wrap {
  background-color: #EEE7DB;
}
.help__inner {
  position: relative;
  padding: 100px 0 140px;
  z-index: 1;
}
.help__inner::before {
  content: "3";
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 600px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(254, 254, 255, 0.7);
  z-index: -1;
}
.help__title {
  max-width: 950px;
  margin-bottom: 24px;
  text-transform: none;
  font-style: italic;
}
.help__list {
  max-width: 820px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.help__list-item {
  padding: 16px 32px 16px 62px;
  font-size: 24px;
  border-bottom: 1px solid #CDC3B2;
  background-image: url("../images/icon-star.svg");
  background-repeat: no-repeat;
  background-size: 42px 42px;
  background-position: left center;
}
.help__list-item:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 768px) {
  .help__inner {
    padding-top: 28px;
    padding-bottom: 56px;
  }
  .help__inner::before {
    top: -24px;
    right: 0;
    bottom: unset;
    font-size: 200px;
  }
  .help__title {
    margin-bottom: 16px;
    font-size: 32px;
  }
  .help__list-item {
    padding-right: 16px;
    padding-left: 32px;
    font-size: 19px;
    background-size: 16px 16px;
    background-position: left 16px;
  }
}

.team {
  padding-top: 128px;
  padding-bottom: 128px;
  background-image: url("../images/figure-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
.team__wrap {
  position: relative;
  margin: 0 0 38px;
}
.team__slider {
  width: 1120px;
  margin: 0 auto;
  user-select: none;
}
.team__slide {
  width: 374px;
}
.team__slide-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.team__slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  transform: translateZ(0) scale(0.8);
  transition: transform 0.6s;
}
.team__slide-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EEE7DB;
  border-radius: 50%;
  opacity: 0.8;
  transform: translateZ(0) scale(0.8);
  transition: transform 0.6s, opacity 0.6s;
  z-index: 2;
}
.team__slide.swiper-slide-active .team__slide-img img {
  transform: translateZ(0) scale(1);
}
.team__slide.swiper-slide-active .team__slide-img::before {
  opacity: 0;
  transform: translateZ(0) scale(1);
}
.team .team-slider-prev,
.team .team-slider-next {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}
.team .team-slider-prev svg path,
.team .team-slider-next svg path {
  transition: all 0.4s;
}
.team .team-slider-prev:hover svg path,
.team .team-slider-next:hover svg path {
  fill: #F13E2E;
}
.team .team-slider-prev {
  left: 0;
}
.team .team-slider-next {
  right: 0;
}
.team__thumbnail-slide .wrap {
  max-width: 525px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
}
.team__thumbnail-slide h3 {
  margin: 0 0 8px;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}
.team__thumbnail-slide p {
  margin: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
}
.team__thumbnail-slide.swiper-slide-active .wrap {
  opacity: 1;
  transition: 0.4s ease-out;
  transition-delay: 0.5s;
}
.team__join {
  max-width: 730px;
  margin: 120px auto 0;
  text-align: center;
}
.team__join-title {
  margin-bottom: 16px;
}
.team__join-title span {
  font-style: italic;
  text-transform: none;
}
.team__join-text {
  margin: 0 0 32px;
  font-size: 20px;
}
.team__join-btn {
  padding-right: 62px;
  padding-left: 62px;
  text-decoration: none;
}
@media only screen and (max-width: 1366px) {
  .team__slider {
    width: 992px;
  }
}
@media only screen and (max-width: 992px) {
  .team__slider {
    width: 768px;
  }
  .team .team-slider-prev {
    left: -32px;
  }
  .team .team-slider-next {
    right: -60px;
  }
}
@media only screen and (max-width: 768px) {
  .team {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .team__slider {
    width: 100%;
  }
  .team .team-slider-prev,
  .team .team-slider-next {
    display: none;
  }
  .team .container {
    padding: 0;
  }
  .team__title {
    padding: 0 32px;
    margin: 0 0 24px;
    font-size: 40px;
  }
  .team__wrap {
    margin-bottom: 16px;
  }
  .team .team__thumbnail-slide h3 {
    font-size: 25px;
  }
  .team .team__thumbnail-slide p {
    font-size: 19px;
  }
  .team__join {
    margin-top: 88px;
    width: 100%;
    padding: 0 32px;
  }
  .team__text {
    font-size: 19px;
  }
}

.footer {
  padding: 60px 0 80px;
  background-color: #EEE7DB;
}
.footer__inner {
  display: flex;
  margin-bottom: 128px;
}
.footer h3 {
  margin: 0 0 16px;
  font-feature-settings: "liga" off;
  font-family: "Noto Serif Display", sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.footer__social {
  width: 60%;
  margin-right: 100px;
}
.footer__social ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__social ul li {
  width: 225px;
  margin: 0 0 32px 0;
}
.footer__social ul li a {
  display: flex;
  text-decoration: none;
}
.footer__social ul li a img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin: 0 8px 0 0;
}
.footer__social ul li a span {
  color: rgba(29, 29, 29, 0.8);
  line-height: 1.2;
  transition: color 0.4s;
}
.footer__social ul li a:hover span {
  color: #F13E2E;
}
.footer__contacts a {
  color: rgba(29, 29, 29, 0.8);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  text-decoration-line: underline;
  transition: color 0.4s;
}
.footer__contacts a:hover {
  color: #F13E2E;
}
.footer__bottom {
  text-align: center;
}
.footer__bottom img {
  width: 60%;
  margin: 0 auto 20px;
}
.footer__bottom p {
  max-width: 600px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding-top: 26px;
    padding-bottom: 40px;
  }
  .footer__inner {
    flex-direction: column;
    margin-bottom: 88px;
  }
  .footer h3 {
    font-size: 25px;
  }
  .footer__social {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
  .footer__social ul li {
    width: 50%;
    padding: 0 16px 0 0;
    margin: 0 0 16px;
  }
  .footer__bottom img {
    width: 100%;
  }
  .footer__bottom p {
    max-width: 100%;
  }
}

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