@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://use.typekit.net/ank5lnr.css");
:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Raleway", sans-serif;
  --third-family: "IBM Plex Sans", sans-serif;
  --font3: "din-condensed", sans-serif; }

* {
  -webkit-user-select: none;
  /* Chrome, Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
  /* стандарт */ }
/*Обнуление*/
* {
  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: 400; }
/*--------------------*/
html {
  scroll-behavior: smooth; }

body {
  background: #f2f2fa;
  color: #151515;
  height: 100%;
  font-size: 16px;
  font-family: var(--font-family); }
  body.hidden {
    overflow: hidden; }

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.page {
  flex: 1 0 auto; }

._container {
  max-width: 1255px;
  padding: 0 15px;
  margin: 0 auto; }

section {
  margin-top: 100px; }
  @media (max-width: 480px) {
  section {
    margin-top: 60px; } }

.main {
  height: 100vh;
  margin-top: 0;
  position: relative; }
  .main__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1; }
  .main__body {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .main__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 8px 20px;
    margin-bottom: 15px; }
    @media (max-width: 480px) {
  .main__label {
    font-size: 14px; } }
  .main__title {
    font-weight: 900;
    font-size: 96px;
    line-height: 120%;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
    margin-bottom: 15px; }
    @media (max-width: 767px) {
  .main__title {
    font-size: 70px; } }
    @media (max-width: 480px) {
  .main__title {
    font-size: 50px; } }
  .main__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    max-width: 700px; }
    @media (max-width: 480px) {
  .main__text {
    font-size: 16px; } }
  .main__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    .main__image::after {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      opacity: 0.5; }
    .main__image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 20px 0; }
  @media (max-width: 480px) {
  .header {
    padding: 15px 0; } }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px; }
  .header__items {
    display: flex;
    align-items: center;
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 10px; }
    @media (max-width: 1300px) {
  .header__items {
    column-gap: 20px; } }
  .header__item {
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    color: #fff;
    transition: 0.5s; }
    .header__item:hover {
      opacity: 0.6; }
  .header__right {
    display: flex;
    align-items: center;
    column-gap: 24px; }
  .header__phone {
    display: flex;
    align-items: center;
    column-gap: 8px; }
    .header__phone span {
      font-weight: 500;
      font-size: 13px;
      line-height: 120%;
      color: #fff; }
  .header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 120%;
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    background: #c79e6b;
    transition: 0.5s; }
    .header__button:hover {
      box-shadow: 0 0 20px #c79e6b; }
  @media (max-width: 1200px) {
    .header__desc {
      display: none; } }
  .header .burger {
    display: none; }
    @media (max-width: 1200px) {
  .header .burger {
    display: block; } }

.header-hover {
  position: relative;
  overflow: hidden; }
  .header-hover:hover {
    overflow: visible; }
    .header-hover:hover .header-hover__hidden {
      opacity: 1; }
  .header-hover__title {
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    color: #fff;
    transition: 0.5s;
    cursor: pointer; }
  .header-hover__hidden {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
    transition: 0.5s; }
  .header-hover__items {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 200px;
    background-color: #fff;
    margin-top: 10px; }
  .header-hover__item {
    font-size: 14px;
    color: #151515;
    line-height: 1.3;
    cursor: pointer; }

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 30px 30px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
  overflow-y: auto;
  background-color: #fff;
  transition: 0.8s;
  transform: translateX(-100%); }
  .menu.active {
    transform: translateX(0); }
  .menu__close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 50px;
    cursor: pointer;
    color: #bbb; }
    @media (max-width: 480px) {
  .menu__close {
    font-size: 40px;
    right: 15px;
    top: 10px; } }
  .menu__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px; }
  .menu .header__item {
    color: #151515;
    font-size: 16px; }

.menu-hover__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #151515; }
  .menu-hover__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    margin-top: 10px; }
  .menu-hover__item {
    font-size: 14px;
    line-height: 1.2;
    color: #333; }

.footer {
  padding: 48px 0px 32px;
  background: #2e3849;
  background: #2e3849; }
  .footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px; }
    @media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
    margin-bottom: 32px; } }
  .footer__socials {
    display: flex;
    align-items: center;
    column-gap: 16px; }
    @media (max-width: 480px) {
  .footer__socials {
    column-gap: 10px; } }
  .footer__social {
    transition: 0.5s; }
    .footer__social:hover {
      transform: scale(1.1); }
    @media (max-width: 480px) {
    .footer__social img {
      width: 40px;
      height: 40px; } }
  .footer__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px; }
    @media (max-width: 992px) {
  .footer__items {
    grid-template-columns: 1fr; } }
    @media (max-width: 480px) {
  .footer__items {
    row-gap: 15px; } }
  .footer__item-title {
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    color: #fff;
    margin-bottom: 10px; }
  .footer__item-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #fff; }
  .footer__foot {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(112, 112, 118, 0.25); }
    .footer__foot span {
      font-weight: 400;
      font-size: 13px;
      line-height: 140%;
      color: #fff; }
      @media (max-width: 480px) {
  .footer__foot span {
    font-size: 11px; } }
    .footer__foot a {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px; }

.title {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #000;
  padding-left: 24px;
  position: relative; }
  .title.mb {
    margin-bottom: 24px; }
  .title::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #c79e6b;
    border-radius: 50%; }

.about {
  background-color: #fff;
  margin-top: 0;
  padding-top: 50px;
  overflow: hidden; }
  .about__top {
    border-bottom: 4px solid #f2f2fa; }
    .about__top ._container {
      display: grid;
      grid-template-columns: 1fr 2fr;
      column-gap: 76px; }
      @media (max-width: 767px) {
  .about__top ._container {
    grid-template-columns: 1fr;
    row-gap: 20px; } }
  .about__text {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #000;
    margin-bottom: 40px;
    position: relative; }
    @media (max-width: 480px) {
  .about__text {
    font-size: 14px;
    margin-bottom: 20px; } }
    .about__text::after {
      content: "";
      display: block;
      position: absolute;
      left: -24px;
      width: 4px;
      height: 500px;
      background-color: #f2f2fa;
      top: -100px; }
      @media (max-width: 767px) {
  .about__text::after {
    display: none; } }
  .about__image {
    position: relative;
    z-index: 1; }
    .about__image img {
      width: 100%;
      height: 400px;
      object-fit: cover; }
      @media (max-height: 480px) {
  .about__image img {
    height: 150px; } }
  .about__items {
    border-top: 4px solid #f2f2fa; }
    .about__items ._container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr; }
      @media (max-width: 767px) {
  .about__items ._container {
    grid-template-columns: 1fr; } }
  .item-about {
    padding: 24px;
    display: flex;
    column-gap: 24px;
    border-left: 4px solid #f2f2fa; }
  @media (max-width: 992px) {
  .item-about {
    flex-direction: column; } }
  @media (max-width: 480px) {
  .item-about {
    padding: 20px 15px; } }
  .item-about:last-child {
    border-right: 4px solid #f2f2fa; }
  @media (max-width: 767px) {
  .item-about {
    border-right: 4px solid #f2f2fa;
    border-bottom: 4px solid #f2f2fa; } }
  .item-about__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (max-width: 992px) {
  .item-about__left {
    flex-direction: row;
    column-gap: 15px; } }
  .item-about__number {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: #707076; }
    @media (max-width: 480px) {
  .item-about__number {
    font-size: 18px; } }
  .item-about__title {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    font-family: var(--second-family);
    margin-bottom: 24px; }
    @media (max-width: 480px) {
  .item-about__title {
    font-size: 18px;
    margin-bottom: 15px; } }
  .item-about__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #707076; }
    @media (max-width: 480px) {
  .item-about__text {
    font-size: 14px; } }

.groups__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px; }
  @media (max-width: 992px) {
    .groups__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .groups__items {
      grid-template-columns: 1fr; } }
  .groups__item {
    padding: 24px;
    background-color: #fff;
    display: flex;
    flex-direction: column; }
  @media (max-width: 480px) {
    .groups__item {
      padding: 20px 15px; } }
  .groups__image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(112, 112, 118, 0.25);
    margin-bottom: 20px;
    padding: 10px; }
  .groups__image img {
    max-width: 100%;
    max-height: 100%; }
  .groups__name {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    font-family: var(--second-family);
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    .groups__name {
      font-size: 18px;
      margin-bottom: 10px; } }
  .groups__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #707076;
    margin-bottom: 18px;
    flex-grow: 1; }
  @media (max-width: 480px) {
    .groups__text {
      font-size: 14px;
      margin-bottom: 12px; } }
  .groups__button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #fff;
    border-radius: 99999px;
    padding: 12px 24px;
    background: #c79e6b;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .groups__button {
      font-size: 14px;
      padding: 8px 10px; } }
  .groups__button:hover {
    box-shadow: 0 0 20px #c79e6b; }

.numbers {
  padding: 48px 0;
  background: #2e3849; }
  .numbers__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    column-gap: 24px;
    row-gap: 15px;
    margin-bottom: 24px;
    flex-wrap: wrap; }
  .numbers__title {
    color: #fff; }
  .numbers__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .numbers__text {
      font-size: 14px; } }
  .numbers__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4px; }
  @media (max-width: 992px) {
    .numbers__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .numbers__items {
      grid-template-columns: 1fr; } }
  .item-numbers {
    padding: 24px;
    background: rgba(255, 255, 255, 0.1); }
  @media (max-width: 480px) {
  .item-numbers {
    padding: 20px 15px; } }
  .item-numbers__number {
    font-weight: 400;
    font-size: 61px;
    line-height: 100%;
    color: #fff;
    font-family: var(--second-family);
    margin-bottom: 18px; }
  @media (max-width: 480px) {
    .item-numbers__number {
      font-size: 40px;
      margin-bottom: 14px; } }
  .item-numbers__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 110%;
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .item-numbers__title {
      font-size: 20px;
      margin-bottom: 15px; } }
  .item-numbers__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.5); }
  @media (max-width: 480px) {
    .item-numbers__text {
      font-size: 14px; } }

.sferas__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  margin-top: 24px; }
  .sferas__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(112, 112, 118, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.5s;
    cursor: pointer; }
  .sferas__arrow svg path {
    transition: 0.5s; }
  .sferas__arrow:hover {
    background-color: #c79e6b;
    border-color: transparent; }
    .sferas__arrow:hover svg path {
      stroke: #fff;
      stroke-opacity: 1; }
  .sferas__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    column-gap: 15px; }
  @media (max-width: 480px) {
    .sferas__pagination {
      column-gap: 0; } }
  .sferas .swiper-slide {
    height: auto; }

.item-sferas {
  height: 100%;
  display: flex;
  flex-direction: column; }
  .item-sferas__image {
    position: relative;
    display: block;
    padding-bottom: 70%;
    overflow: hidden; }
  .item-sferas__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-sferas__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 24px; }
  @media (max-width: 480px) {
    .item-sferas__content {
      padding: 20px 15px; } }
  .item-sferas__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    margin-bottom: 15px;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .item-sferas__title {
      font-size: 18px;
      margin-bottom: 10px; } }
  .item-sferas__text {
    flex-grow: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #707076;
    margin-bottom: 18px; }
  @media (max-width: 480px) {
    .item-sferas__text {
      font-size: 14px;
      margin-bottom: 14px; } }
  .item-sferas__button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #151515;
    border-radius: 99999px;
    padding: 12px 24px;
    border: 1px solid rgba(112, 112, 118, 0.25);
    background-color: transparent;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .item-sferas__button {
      font-size: 14px;
      padding: 8px 10px; } }
  .item-sferas__button:hover {
    background-color: #c79e6b;
    color: #fff;
    border-color: transparent; }

.history {
  padding: 48px 0;
  background-color: #fff;
  overflow: hidden; }
  .history__body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 76px; }
  @media (max-width: 767px) {
    .history__body {
      grid-template-columns: 1fr;
      row-gap: 20px; } }
  .history__items {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    position: relative; }
  .history__items::after {
    content: "";
    display: block;
    position: absolute;
    left: -24px;
    top: -100px;
    bottom: -100px;
    background: #f2f2fa;
    width: 4px; }
  .item-history {
    display: flex;
    align-items: start;
    column-gap: 120px; }
  @media (max-width: 480px) {
  .item-history {
    column-gap: 60px; } }
  .item-history__year {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #707076;
    white-space: nowrap; }
  @media (max-width: 480px) {
    .item-history__year {
      font-size: 18px; } }
  .item-history__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #000;
    margin-bottom: 16px;
    position: relative; }
  @media (max-width: 480px) {
    .item-history__title {
      font-size: 18px;
      margin-bottom: 12px; } }
  .item-history__title::after {
    content: "";
    display: block;
    position: absolute;
    left: -70px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 5px solid #c79e6b;
    top: 5px; }
    @media (max-width: 480px) {
    .item-history__title::after {
      left: -38px; } }
  .item-history__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #707076;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .item-history__text {
      font-size: 14px; } }

.advantages__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  column-gap: 24px;
  row-gap: 15px;
  margin-bottom: 24px;
  flex-wrap: wrap; }
  .advantages__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #707076;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .advantages__text {
      font-size: 14px; } }
  .advantages__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4px; }
  @media (max-width: 992px) {
    .advantages__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .advantages__items {
      grid-template-columns: 1fr; } }
  .advantages__item {
    background: #fff;
    padding: 24px; }
  @media (max-width: 480px) {
    .advantages__item {
      padding: 20px 15px; } }
  .advantages__icon {
    margin-bottom: 18px; }
  @media (max-width: 480px) {
    .advantages__icon {
      margin-bottom: 14px; } }
  .advantages__name {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    margin-bottom: 15px;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .advantages__name {
      font-size: 18px;
      margin-bottom: 10px; } }
  .advantages__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #707076; }
  @media (max-width: 480px) {
    .advantages__desc {
      font-size: 14px; } }

.media__item {
  position: relative;
  display: block;
  padding-bottom: 60%;
  overflow: hidden;
  display: block; }
  .media__item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5; }
  .media__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .media__item svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; }
  .media__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    margin-top: 24px; }
  .media__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(112, 112, 118, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.5s;
    cursor: pointer; }
  .media__arrow svg path {
    transition: 0.5s; }
  .media__arrow:hover {
    background-color: #c79e6b;
    border-color: transparent; }
    .media__arrow:hover svg path {
      stroke: #fff;
      stroke-opacity: 1; }
  .media__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    column-gap: 15px; }
  @media (max-width: 480px) {
    .media__pagination {
      column-gap: 0; } }
  .media__pagination .swiper-pagination-bullet {
    transition: 0.5s;
    background-color: #c79e6b !important;
    width: 8px !important;
    height: 8px !important; }
  .projects__image {
    position: relative;
    display: block;
    padding-bottom: 70%;
    overflow: hidden;
    margin-bottom: 18px; }
  .projects__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .projects__name {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #000;
    font-family: var(--second-family);
    margin-bottom: 12px; }
  .projects__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #707076; }
  .projects__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    margin-top: 24px; }
  .projects__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(112, 112, 118, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.5s;
    cursor: pointer; }
  .projects__arrow svg path {
    transition: 0.5s; }
  .projects__arrow:hover {
    background-color: #c79e6b;
    border-color: transparent; }
    .projects__arrow:hover svg path {
      stroke: #fff;
      stroke-opacity: 1; }
  .projects__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    column-gap: 15px; }
  @media (max-width: 480px) {
    .projects__pagination {
      column-gap: 0; } }
  .projects__pagination .swiper-pagination-bullet {
    transition: 0.5s;
    background-color: #c79e6b !important;
    width: 8px !important;
    height: 8px !important; }
  .charters__item {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 144%; }
  .charters__item:hover::after {
    opacity: 0; }
  .charters__item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    transition: 0.5s; }
  .charters__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .charters__name {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #fff; }
  .charters__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    margin-top: 24px; }
  .charters__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(112, 112, 118, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.5s;
    cursor: pointer; }
  .charters__arrow svg path {
    transition: 0.5s; }
  .charters__arrow:hover {
    background-color: #c79e6b;
    border-color: transparent; }
    .charters__arrow:hover svg path {
      stroke: #fff;
      stroke-opacity: 1; }
  .charters__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    column-gap: 15px; }
  @media (max-width: 480px) {
    .charters__pagination {
      column-gap: 0; } }
  .charters__pagination .swiper-pagination-bullet {
    transition: 0.5s;
    background-color: #c79e6b !important;
    width: 8px !important;
    height: 8px !important; }
  .partners__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: flex-end; }
  @media (max-width: 767px) {
    .partners__body {
      grid-template-columns: 1fr; } }
  .partners__text {
    font-weight: 400;
    font-size: 21px;
    line-height: 125%;
    color: #707076;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .partners__text {
      font-size: 14px; } }
  .partners__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; }
  .partners__item {
    display: flex;
    align-items: center;
    justify-content: center; }
  .partners__item img {
    max-width: 100%;
    max-height: 100%; }

.contacts__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin-bottom: 4px; }
  @media (max-width: 767px) {
    .contacts__items {
      grid-template-columns: 1fr 1fr; } }
  .contacts__map {
    height: 405px; }
  .contacts__map iframe, .contacts__map div {
    width: 100%;
    height: 100%; }

.contact {
  padding: 24px;
  background-color: #fff; }
  @media (max-width: 480px) {
  .contact {
    padding: 20px 15px; } }
  .contact__icon {
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .contact__icon {
      margin-bottom: 15px; } }
  .contact__title {
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    color: #707076;
    margin-bottom: 5px; }
  @media (max-width: 480px) {
    .contact__title {
      font-size: 12px; } }
  .contact__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #000; }
  @media (max-width: 480px) {
    .contact__text {
      font-size: 12px; } }

.achievements__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4px; }
  @media (max-width: 992px) {
    .achievements__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .achievements__items {
      grid-template-columns: 1fr; } }
  .achievements__item {
    border-radius: 12px;
    padding: 24px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .achievements__item {
      padding: 20px 15px; } }
  .achievements__item:hover {
    background-color: #39c; }
    .achievements__item:hover .achievements__icon path[stroke] {
      stroke: #fff; }
      .achievements__item:hover .achievements__icon path[fill] {
        fill: #fff; }
    .achievements__item:hover .achievements__text, .achievements__item:hover .achievements__year {
      color: #fff; }
  .achievements__icon {
    margin-bottom: 18px; }
  @media (max-width: 480px) {
    .achievements__icon {
      margin-bottom: 14px; } }
  .achievements__icon path {
    transition: 0.5s; }
  .achievements__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #000;
    margin-bottom: 15px;
    flex-grow: 1;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .achievements__text {
      margin-bottom: 10px;
      font-size: 14px; } }
  .achievements__year {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #707076;
    font-family: var(--second-family);
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 480px) {
    .achievements__year {
      font-size: 14px; } }

.swiper-pagination-bullet {
  transition: 0.5s;
  background-color: #c79e6b !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 9999px !important; }
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 28px !important; }
