@charset "UTF-8";
/*
  Сброс стандартных стилей
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

button {
  border: none;
}

:root {
  --global-color-white: #ffffff;
  --global-color-black: #000000;
  --global-color-blue_1: #00346B;
  --global-color-blue_2: #0067D4;
  --global-color-blue_3: #E3F1FF;
  --global-color-red_gradient: linear-gradient(180deg, #FF5454 0%, #DD3636 100%);
  --global-color-red_1: #DD3636;
  --global-color-red_2: #FFEEEE;
  --global-color-gray_1: #454545;
  --global-color-gray_2: #EEEEEE;
  --global-color-gray_3: #F9F9F9;
  --global-color-gray_15: #DDDDDD;
}

:root {
  --icon_size: 24px;
}

@font-face {
  font-family: "Geologica";
  src: url("/assets/fonts/Geologica/Geologica-Thin.woff2") format("woff2"), url("/assets/fonts/Geologica/Geologica-Thin.woff") format("woff"), url("/assets/fonts/Geologica/Geologica-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/fonts/Geologica/Geologica-ExtraLight.woff2") format("woff2"), url("/assets/fonts/Geologica/Geologica-ExtraLight.woff") format("woff"), url("/assets/fonts/Geologica/Geologica-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/fonts/Geologica/Geologica-Light.woff2") format("woff2"), url("/assets/fonts/Geologica/Geologica-Light.woff") format("woff"), url("/assets/fonts/Geologica/Geologica-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/fonts/Geologica/Geologica-Regular.woff2") format("woff2"), url("/assets/fonts/Geologica/Geologica-Regular.woff") format("woff"), url("/assets/fonts/Geologica/Geologica-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/fonts/Geologica/Geologica-Medium.woff2") format("woff2"), url("/assets/fonts/Geologica/Geologica-Medium.woff") format("woff"), url("/assets/fonts/Geologica/Geologica-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/fonts/Geologica/Geologica-SemiBold.woff2") format("woff2"), url("/assets/fonts/Geologica/Geologica-SemiBold.woff") format("woff"), url("/assets/fonts/Geologica/Geologica-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/fonts/Geologica/Geologica-Bold.woff2") format("woff2"), url("/assets/fonts/Geologica/Geologica-Bold.woff") format("woff"), url("/assets/fonts/Geologica/Geologica-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/fonts/Geologica/Geologica-ExtraBold.woff2") format("woff2"), url("/assets/fonts/Geologica/Geologica-ExtraBold.woff") format("woff"), url("/assets/fonts/Geologica/Geologica-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/fonts/Geologica/Geologica-Black.woff2") format("woff2"), url("/assets/fonts/Geologica/Geologica-Black.woff") format("woff"), url("/assets/fonts/Geologica/Geologica-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/*
  Глобальные стили для основных элементов
*/
/*
  Миксины
*/
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--global-color-gray_1);
  padding-top: 80px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 22px;
    padding-top: 64px;
  }
}

main {
  flex-grow: 1;
}

img {
  max-width: 100%;
}

ul {
  padding: 0 0 0 28px;
}
ul li {
  margin-bottom: 5px;
}
ul li::marker {
  width: 8px;
  height: 8px;
  color: var(--global-color-red_1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
}

ol {
  padding: 0 0 0 28px;
}
ol li {
  margin-bottom: 5px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  overflow-y: visible;
  max-width: 100%;
  overflow-x: auto;
  white-space: normal;
}
table th {
  padding: 12px 24px;
  color: var(--global-color-blue_1);
  background-color: var(--global-color-gray_3);
  text-align: left;
}
table td {
  padding: 12px 24px;
  color: var(--global-color-gray_1);
  border: 1px solid var(--global-color-gray_3);
}
@media (max-width: 1024px) {
  table {
    display: block;
    white-space: nowrap;
  }
}

hr {
  display: block;
  border: 0;
  height: 1px;
  width: 100%;
  background-color: var(--global-color-gray_2);
}

label {
  color: var(--global-color-gray_1);
  font-size: 12px;
  line-height: 16px;
}

.input_block--row label {
  font-size: 16px;
  line-height: 24px;
}

a {
  color: var(--global-color-blue_1);
}
a:hover {
  color: var(--global-color-blue_2);
}
a:active {
  color: var(--global-color-blue_2);
}
a:focus {
  color: var(--global-color-blue_1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--global-color-blue_1);
}

h1 {
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
    line-height: 34px;
  }
}

h2 {
  font-size: 36px;
  line-height: 42px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
}

h3 {
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
}

h4 {
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

h5 {
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 768px) {
  h5 {
    font-size: 18px;
    line-height: 26px;
  }
}

h6 {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 768px) {
  h6 {
    font-size: 16px;
    line-height: 24px;
  }
}

blockquote {
  background: var(--global-color-gray_3);
  padding: 24px 32px 24px 72px;
  border-radius: 8px;
  position: relative;
  color: var(--global-color-gray_1);
}
blockquote::after {
  content: "";
  display: block;
  width: var(--icon_size);
  height: var(--icon_size);
  background-image: url("/assets/icons/quotes_red.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 24px;
  left: 32px;
}

.note {
  background: var(--global-color-blue_3);
  padding: 24px 32px 24px 32px;
  color: var(--global-color-gray_1);
  border-radius: 8px;
}

p.lead {
  font-size: 22px;
  line-height: 28px;
}
p.small {
  font-size: 16px;
  line-height: 22px;
}

.container {
  width: 100%;
  max-width: 1448px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 40px;
}
@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 40px 16px;
    gap: 24px;
  }
}

.container.is-narrow {
  max-width: 968px;
}
@media (max-width: 768px) {
  .container.is-narrow {
    gap: 24px;
  }
}

.container.has-sidebar {
  flex-direction: row;
  justify-content: space-between;
  gap: 143px;
}
@media (max-width: 1200px) {
  .container.has-sidebar {
    gap: 80px;
  }
}
@media (max-width: 1024px) {
  .container.has-sidebar {
    flex-direction: column;
  }
}

.footer_copyright .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.container.is-centered {
  align-items: center;
  justify-content: center;
}

/*
  Стили компонента - Иконка с подписью
*/
.icon_with_text {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--global-color-gray_1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.icon_with_text img {
  display: block;
  width: 20px;
  height: 20px;
}
.icon_with_text.is-white {
  color: var(--global-color-white);
}
.icon_with_text.is-blue {
  color: var(--global-color-blue_1);
}
.icon_with_text.is-medium {
  font-size: 16px;
  line-height: 24px;
}
.icon_with_text.is-big {
  font-size: 18px;
  line-height: 24px;
}
.icon_with_text.is-big-icon img {
  width: 24px;
  height: 24px;
}

.single_project_card .icon_with_text {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .single_project_card .icon_with_text img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 768px) {
  .single_project_card .icon_with_text {
    margin-top: 16px;
  }
}

@media (max-width: 1024px) {
  .header_container .icon_with_text img {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}
@media (max-width: 1024px) {
  .header_container .icon_with_text span {
    display: none;
  }
}

.contacts_card .icon_with_text {
  align-items: start;
}
.contacts_card .icon_with_text:hover {
  color: var(--global-color-gray_1);
}

.footer .icon_with_text {
  align-items: start;
  font-weight: 300;
}

/*
  Стили компонента - Кнопка
  Кнопка бывает двух видов: primary и outline
*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: fit-content;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Geologica", sans-serif;
}
.button--primary {
  background-color: var(--global-color-red_1);
  padding: 16px 32px;
  color: var(--global-color-white);
}
.button--primary:hover {
  background: var(--global-color-red_gradient);
  color: var(--global-color-white);
}
.button--primary:active {
  background-color: var(--global-color-red_1);
  color: var(--global-color-white);
  border: 3px solid #B12B2B;
  padding: 13px 29px;
}
.button--primary:focus {
  color: var(--global-color-white);
  outline-offset: 3px;
  outline-color: var(--global-color-blue_1);
  outline-width: 3px;
}
.button--primary:disabled {
  background-color: var(--global-color-red_1);
  color: var(--global-color-white);
  opacity: 0.5;
  pointer-events: none;
}
.button--outline {
  background-color: var(--global-color-white);
  padding: 16px 32px;
  border: 1px solid var(--global-color-red_1);
  color: var(--global-color-red_1);
}
.button--outline:hover {
  background-color: var(--global-color-red_2);
  color: var(--global-color-red_1);
}
.button--outline:active {
  background-color: var(--global-color-red_2);
  border: 3px solid var(--global-color-red_1);
  padding: 14px 30px;
  color: var(--global-color-red_1);
}
.button--outline:disabled {
  background-color: var(--global-color-white);
  opacity: 0.5;
  color: var(--global-color-red_1);
  pointer-events: none;
}
.button--full-width {
  width: 100%;
}

/*
  Стили компонента - Заголовок секции слайдера
  Состоит из заголовка h2 и кнопок управления слайдером
*/
.slider_title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1448px;
  margin: 0 auto 40px auto;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .slider_title h2 {
    width: 100%;
  }
}
.slider_title_controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.slider_title_controls .button {
  padding: 12px;
}
.slider_title_controls .button:active {
  padding: 9px;
}
.slider_title_controls .button.slider_button_next img {
  transform: rotateZ(180deg);
}
.slider_title_controls .button img {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .slider_title_controls {
    display: none;
  }
}
@media (max-width: 1440px) {
  .slider_title {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .slider_title {
    max-width: 1024px;
  }
}
@media (max-width: 1024px) {
  .slider_title {
    max-width: 768px;
  }
}
@media (max-width: 768px) {
  .slider_title {
    max-width: 100%;
    margin-bottom: 24px;
  }
}

/*
  Стили компонента - Карточка проекта
*/
.single_project_card {
  display: flex;
  flex-direction: column;
  height: auto;
}
.single_project_card_image {
  border-radius: 8px;
  height: 320px;
  min-height: 320px;
  width: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
@media (max-width: 768px) {
  .single_project_card_image {
    height: 185px;
    min-height: 185px;
  }
}
.single_project_card_title {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--global-color-blue_1);
  text-decoration: none;
  font-weight: 400;
}
@media (max-width: 768px) {
  .single_project_card_title {
    -webkit-line-clamp: 7;
  }
}
.single_project_card_tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.single_project_card_tags span {
  padding: 6px 12px;
  border-radius: 4px;
  background-color: var(--global-color-gray_2);
  font-size: 12px;
  line-height: 16px;
  color: var(--global-color-blue_1);
  font-weight: 400;
}
@media (max-width: 768px) {
  .single_project_card_tags span {
    padding: 4px 8px;
  }
}
.single_project_card_bottom {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
}
@media (max-width: 768px) {
  .single_project_card_bottom {
    gap: 16px;
  }
}

/*
  Стили компонента - Карточка отзыва
*/
.single_review_card {
  padding: 40px;
  background: var(--global-color-gray_3);
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 8px;
}
.single_review_card_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}
.single_review_card_header_image {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.single_review_card_header_quotes {
  display: flex;
}
@media (max-width: 768px) {
  .single_review_card_header_quotes {
    padding: 16px 16px 0 0;
  }
}
.single_review_card_title {
  display: flex;
  flex-direction: column;
}
.single_review_card_title_name {
  font-size: 22px;
  line-height: 28px;
  color: var(--global-color-blue_1);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.single_review_card_title_work {
  font-size: 16px;
  line-height: 22px;
  color: var(--global-color-blue_1);
}
@media (max-width: 768px) {
  .single_review_card_title_work {
    font-size: 12px;
    line-height: 16px;
  }
}
.single_review_card_description {
  color: var(--global-color-gray_1);
}
@media (max-width: 768px) {
  .single_review_card {
    padding: 16px;
  }
}

/*
  Стили компонента - Карточка поста
  Используется для новостей и статей
*/
.single_post_card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--global-color-gray_2);
  padding-bottom: 24px;
}
.single_post_card_link {
  text-decoration: none;
  display: -webkit-flex;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-direction: row;
  gap: 16px;
}
.single_post_card_link_icon {
  display: block;
  height: fit-content;
  margin-top: 2px;
  object-fit: contain;
}
.single_post_card_link h3 {
  font-size: 16px;
  line-height: 24px;
  text-transform: none;
  font-weight: 400;
}
.single_post_card_link h3:hover {
  color: var(--global-color-blue_2);
}
.single_post_card_link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .single_post_card {
    min-height: 88px;
  }
}

.articles_news_section .single_post_card h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
}
@media (max-width: 768px) {
  .articles_news_section .single_post_card h3 {
    overflow: visible;
    text-overflow: clip;
    -webkit-line-clamp: none;
    line-clamp: none;
    display: block;
  }
}

/*
  Стили компонента - Хлебные крошки
*/
.breadcrumbs {
  padding: 65px 0;
  margin-bottom: 0;
}
.breadcrumbs_container {
  flex-direction: row;
  gap: 8px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.breadcrumbs_link {
  font-size: 12px;
  line-height: 16px;
  color: var(--global-color-blue_1);
  text-decoration: none;
}
.breadcrumbs_link:hover {
  text-decoration: underline;
}
.breadcrumbs_link_icon {
  width: 20px;
  height: 20px;
  display: block;
}
.breadcrumbs_separator {
  font-size: 12px;
  line-height: 16px;
  color: var(--global-color-gray_1);
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 40px 0 0 0;
  }
}

.breadcrumbs .container.is-narrow {
  gap: 8px;
}

/*
  Стили компонента - Карточка вакансии
*/
.single_vacancy_card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--global-color-gray_2);
}
.single_vacancy_card_title {
  color: var(--global-color-blue_1);
  text-decoration: none;
}
.single_vacancy_card_title h3 {
  font-size: 16px;
  line-height: 24px;
  text-transform: none;
  font-weight: 400;
}
.single_vacancy_card_title h3:hover {
  color: var(--global-color-blue_2);
}
.single_vacancy_card_title:hover {
  text-decoration: underline;
}
.single_vacancy_card_about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .single_vacancy_card_about {
    flex-direction: column;
    align-items: start;
  }
}
.single_vacancy_card_footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.single_vacancy_card_footer_element {
  padding: 6px 12px;
  border-radius: 4px;
  background-color: var(--global-color-gray_2);
  font-size: 12px;
  line-height: 16px;
  color: var(--global-color-gray_1);
}
.single_vacancy_card_footer_salary {
  padding: 0;
  background: none;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .single_vacancy_card_footer {
    flex-direction: column;
    align-items: start;
  }
}

/*
  Стили компонента - Карточка результата
  Используется в слайдере "Результаты" на странице проекта
*/
.single_result_card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.single_result_card_image {
  border-radius: 8px;
  height: 360px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .single_result_card_image {
    height: 185px;
  }
}
.single_result_card_text {
  color: var(--global-color-gray_1);
}
@media (max-width: 768px) {
  .single_result_card {
    max-width: 260px;
  }
}

/*
  Стили первой секции главной страницы
*/
.welcome_section {
  background-image: url("../images/welcome_section_background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 440px;
  position: relative;
  display: flex;
}
.welcome_section_container {
  margin: auto;
  z-index: 1;
  position: relative;
  gap: 0;
}
.welcome_section_container h1 {
  font-size: 96px;
  line-height: 100%;
  position: relative;
  left: -8px;
}
@media (max-width: 1024px) {
  .welcome_section_container h1 {
    font-size: 76px;
    left: auto;
  }
}
@media (max-width: 768px) {
  .welcome_section_container h1 {
    font-size: 46px;
    line-height: 40px;
  }
}
.welcome_section_container span {
  font-size: 18px;
  line-height: 24px;
  color: var(--global-color-blue_1);
  margin-top: 8px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .welcome_section_container span {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .welcome_section_container span {
    margin-top: 8px;
    font-size: 16px;
    max-width: 450px;
  }
}
.welcome_section_container .button {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .welcome_section_container .button {
    margin-top: 24px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .welcome_section_container {
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .welcome_section_container {
    margin-top: 192px;
    padding: 0 16px;
  }
}
.welcome_section_blur {
  position: absolute;
  background: var(--global-color-gray_3);
  opacity: 0.7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.welcome_section_arrow_next {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 20px;
  width: 32px;
  height: 32px;
  z-index: 1;
  display: none;
}
@media (max-width: 1024px) {
  .welcome_section_arrow_next {
    display: block;
  }
}
@media (max-width: 768px) {
  .welcome_section {
    height: 600px;
    background-size: cover;
    margin-bottom: 0;
  }
}

/*
  Стили секции "О компании"
*/
@media (max-width: 768px) {
  .about_section .container {
    padding: 0;
  }
}
.about_section_container {
  background-color: var(--global-color-gray_3);
  padding: 40px;
  gap: 80px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about_section_container_top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
.about_section_container_top_content {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.about_section_container_top_content_text {
  margin-top: 24px;
  color: var(--global-color-gray_1);
}
.about_section_container_top_content_text > * {
  margin-top: 24px;
}
.about_section_container_top_content_text > *:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .about_section_container_top_content_text {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .about_section_container_top_content_text {
    margin-top: 0;
  }
}
.about_section_container_top_content h2 {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .about_section_container_top_content h2 {
    text-align: center;
  }
}
.about_section_container_top_content a {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .about_section_container_top_content a {
    margin-top: 32px;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
  }
}
.about_section_container_top_content img {
  display: none;
  max-width: 500px;
  margin: 24px auto 32px auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .about_section_container_top_content img {
    max-width: 350px;
    display: block;
  }
}
@media (max-width: 1024px) {
  .about_section_container_top_content {
    width: 100%;
  }
}
.about_section_container_top_map {
  display: flex;
}
@media (max-width: 1024px) {
  .about_section_container_top_map {
    display: none;
  }
}
.about_section_container_bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .about_section_container_bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about_section_container_bottom {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .about_section_container {
    border-radius: 0;
    padding: 40px 16px;
    gap: 38px;
  }
}

/*
  Стили секции-слайдера
*/
.slider_section {
  position: relative;
}
.slider_section .swiper-scrollbar-horizontal {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: calc(100% - 32px);
  height: 8px;
  background: var(--global-color-gray_2);
}
.slider_section .swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  background: var(--global-color-blue_1);
  border-radius: 2px;
}
@media (min-width: 768px) {
  .slider_section .swiper-scrollbar-horizontal {
    display: none;
  }
}
.slider_section .swiper {
  padding: 0 16px;
}
@media (max-width: 768px) {
  .slider_section .single_review_card {
    width: 260px;
    padding: 16px;
    gap: 16px;
  }
}
@media (max-width: 1440px) {
  .slider_section {
    padding: 0 16px;
  }
}
@media (max-width: 1200px) {
  .slider_section {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .slider_section {
    padding: 40px 0;
  }
}

/*
  Стили секции c партерами
*/
.partners_section_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.partners_section_grid_card {
  height: 200px;
  background-color: var(--global-color-gray_3);
  border-radius: 8px;
  display: flex;
}
.partners_section_grid_card_image {
  margin: auto;
  mix-blend-mode: luminosity;
}
@media (max-width: 768px) {
  .partners_section_grid_card_image {
    max-height: 32px;
  }
}
@media (max-width: 768px) {
  .partners_section_grid_card {
    height: 99px;
  }
}
@media (max-width: 1024px) {
  .partners_section_grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .partners_section_grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/*
  Стили секции с новостями и статьями (2 колонки)
*/
.articles_news_section_container {
  flex-direction: row;
  gap: 24px;
}
.articles_news_section_container_column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 50%;
}
@media (max-width: 768px) {
  .articles_news_section_container_column .button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .articles_news_section_container_column {
    width: 100%;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .articles_news_section_container {
    flex-direction: column;
    gap: 80px;
  }
}

/*
  Стили секции-заголовка страницы h1 с фоновым изображением
*/
.page_title_section {
  background-image: url("../images/welcome_section_background.png");
  background-repeat: no-repeat;
  background-position: center;
  min-height: 200px;
  display: flex;
  margin-bottom: 64px;
  padding: 40px;
}
.page_title_section .container {
  gap: 24px;
  z-index: 1;
  margin: auto;
}
@media (max-width: 768px) {
  .page_title_section .container h1 {
    text-align: center;
  }
}
.page_title_section .container .button {
  padding: 8px 16px;
  font-size: 18px;
  line-height: 24px;
}
.page_title_section .container .button:hover, .page_title_section .container .button:active, .page_title_section .container .button:focus {
  background: var(--global-color-red_1);
  cursor: unset;
  border: none;
}
@media (max-width: 768px) {
  .page_title_section .container .button {
    padding: 4px 8px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .page_title_section .container {
    padding: 20px 16px;
    align-items: center;
    gap: 16px;
  }
}
.page_title_section_blur {
  position: absolute;
  background: var(--global-color-gray_3);
  opacity: 0.7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .page_title_section {
    margin-bottom: 0;
    height: auto;
    padding: 0;
    min-height: unset;
  }
}

.page_title_section--no-vertical-margins {
  margin-top: 0;
  margin-bottom: 0;
}

/*
  Стили тела поста
*/
.post_body_section_header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post_body_section_header_about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .post_body_section_header_about {
    flex-direction: column;
    align-items: start;
  }
}
.post_body_section_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.post_body_section_content {
  color: var(--global-color-gray_1);
}
.post_body_section_content > * {
  margin-bottom: 20px;
}
.post_body_section_content > *:last-child {
  margin-bottom: 0;
}
.post_body_section_content > *:first-child {
  margin-top: 0;
}
.post_body_section_content h1,
.post_body_section_content h2,
.post_body_section_content h3,
.post_body_section_content h4,
.post_body_section_content h5,
.post_body_section_content h6 {
  margin: 40px 0 20px 0;
}

/*
  Стили секции с контактами персонального менеджера
*/
@media (max-width: 768px) {
  .personal_manager_section_container {
    padding-top: 0;
  }
}
.personal_manager_section .personal_manager {
  display: flex;
  flex-direction: column;
  padding: 32px 40px;
  border-radius: 8px;
  border: 1px solid var(--global-color-gray_2);
  gap: 32px;
}
.personal_manager_section .personal_manager_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.personal_manager_section .personal_manager_header_avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
}
.personal_manager_section .personal_manager_header_title {
  display: flex;
  flex-direction: column;
}
.personal_manager_section .personal_manager_header_title_name {
  font-size: 22px;
  line-height: 28px;
  color: var(--global-color-blue_1);
}
.personal_manager_section .personal_manager_header_title_work {
  font-size: 16px;
  line-height: 22px;
  color: var(--global-color-blue_1);
}
@media (max-width: 768px) {
  .personal_manager_section .personal_manager_header {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}
.personal_manager_section .personal_manager_contact {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
.personal_manager_section .personal_manager_contact .icon_with_text:hover:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .personal_manager_section .personal_manager_contact .icon_with_text:hover {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .personal_manager_section .personal_manager_contact {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .personal_manager_section .personal_manager {
    padding: 16px;
  }
}

/*
  Стили секции "Контакты"
*/
.contacts_section {
  margin-bottom: 64px;
}
.contacts_section .contacts_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 30px;
}
@media (max-width: 1024px) {
  .contacts_section .contacts_container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .contacts_section .contacts_container {
    padding: 40px 0 0 0;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .contacts_section {
    margin-bottom: 0;
  }
}

/*
  Стили секции с видео
*/
.video_section {
  padding: 61px 0;
  background-image: url("../images/welcome_section_background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.video_section_container {
  position: relative;
  z-index: 1;
}
.video_section_container_video {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video_section_container_video {
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .video_section_container {
    padding: 0;
  }
}
.video_section_blur {
  position: absolute;
  background: var(--global-color-gray_3);
  opacity: 0.7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .video_section {
    padding: 0;
  }
}

.main_navigation {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.main_navigation a {
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .footer .main_navigation {
    order: -1;
  }
}
@media (max-width: 540px) {
  .footer .main_navigation {
    align-items: center;
    gap: 8px;
  }
}

.logo {
  width: 80px;
  height: 48px;
  display: flex;
}
.logo img {
  object-fit: contain;
  margin: auto;
  height: 100%;
}
@media (max-width: 768px) {
  .logo {
    width: 53px;
    height: 40px;
  }
}

.mobile_menu_burger {
  display: none;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.mobile_menu_burger img {
  padding: 8px;
  width: 40px;
  height: 40px;
}
@media (max-width: 1024px) {
  .mobile_menu_burger {
    display: flex;
  }
}

.mobile_menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--global-color-blue_1);
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 40px 16px;
}
.mobile_menu_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile_menu_footer {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.mobile_menu_footer .icon_with_text {
  color: var(--global-color-white);
  font-size: 16px;
  line-height: 24px;
}
.mobile_menu_close {
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

.red_title_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: fit-content;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--global-color-red_1);
  padding: 4px 16px;
  color: var(--global-color-white);
}
@media (max-width: 768px) {
  .red_title_badge {
    font-size: 12px;
    line-height: 16px;
  }
}

.about_info_card {
  background-color: var(--global-color-white);
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about_info_card_description {
  color: var(--global-color-gray_1);
}
@media (max-width: 768px) {
  .about_info_card_description {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 768px) {
  .about_info_card {
    gap: 4px;
    padding: 16px;
  }
}
.about_info_card--bordered {
  border: 1px solid var(--global-color-gray_2);
}

.company_name {
  font-size: 16px;
  line-height: 24px;
  color: var(--global-color-white);
}

.contacts_card {
  border: 1px solid var(--global-color-gray_2);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
}
.contacts_card_title {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 1024px) {
  .contacts_card {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .contacts_card {
    width: calc(100% - 32px);
    padding: 16px;
  }
}

/* Форма обратной связи */
.contacts_card.contacts_card_form {
  display: none;
  grid-area: 1/1/4/3;
  gap: 32px;
}
@media (max-width: 768px) {
  .contacts_card.contacts_card_form h2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contacts_card.contacts_card_form {
    gap: 24px;
  }
}

/* Карта */
.contacts_card.contacts_card_map {
  grid-area: 2/1/2/3;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  padding: 0;
  gap: 0;
}
@media (max-width: 768px) {
  .contacts_card.contacts_card_map iframe {
    width: 100%;
    height: 375px;
  }
}
@media (max-width: 1024px) {
  .contacts_card.contacts_card_map {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .contacts_card.contacts_card_map {
    width: 100%;
    height: 375px;
    border-radius: 0;
    margin: 0;
  }
}

/* Фотография офиса */
.contacts_card.contacts_card_image {
  border-radius: 8px;
  grid-area: 2/3/2/4;
  overflow: hidden;
  border: none;
  padding: 0;
  gap: 0;
}
.contacts_card.contacts_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .contacts_card.contacts_card_image {
    border-radius: 0;
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .projects_swiper .single_project_card {
    max-width: 260px;
  }
}

.projects_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px 24px;
}
.projects_grid_button {
  margin: 40px auto auto auto;
}
@media (max-width: 768px) {
  .projects_grid_button {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .projects_grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .projects_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/*
  Стили главной страницы.
  Override стилей модулей и компонентов
*/
.index_page_title {
  font-size: 48px;
  line-height: 56px;
}
@media (max-width: 768px) {
  .index_page_title {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
  }
}
.index_page_subtitle {
  font-size: 36px;
  line-height: 42px;
}
@media (max-width: 768px) {
  .index_page_subtitle {
    font-size: 22px;
    line-height: 28px;
  }
}

/*
  Стили страницы со списком записей (постов или статей).
  Override стилей модулей и компонентов
*/
.posts_list_page .container .button:not(.pagination_item) {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .posts_list_page .container .button:not(.pagination_item) {
    width: 100%;
  }
}
.posts_list_page > section:last-child {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .posts_list_page > section:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .other_posts_section .button {
    width: 100%;
  }
}

.projects_section {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .projects_section {
    margin-bottom: 0;
  }
}

.news_body_section {
  margin-bottom: 80px;
}

.form_base {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-grow: 1;
  position: relative;
}
.form_base_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form_base_inner .input_block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form_base_inner .input_block--row {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.form_base_message {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--global-color-white);
}
@media (max-width: 768px) {
  .form_base {
    gap: 24px;
  }
}

.input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--global-color-gray_2);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 18px;
  line-height: 24px;
  color: var(--global-color-gray_1);
}
.input:hover {
  border: 1px solid var(--global-color-gray_15);
}
.input:focus {
  outline: none;
  border: 1px solid var(--global-color-blue_1);
}
.input:disabled {
  border: 1px solid var(--global-color-gray_2);
}

.checkbox {
  appearance: none;
  position: relative;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background: none;
  border-radius: 2px;
  border: 1px solid var(--global-color-gray_2);
  cursor: pointer;
}

.checkbox:checked {
  background-image: url("../icons/checkmark_blue_icon.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

.section_title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section_title_content {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 540px) {
  .section_title_content {
    font-size: 16px;
  }
}

.section_title--centered {
  align-items: center;
  text-align: center;
}

.gallery_base {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.gallery_base_item {
  border-radius: 8px;
  border: 1px solid var(--global-color-gray_2);
  padding: 32px 40px;
}
.gallery_base_item img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_base_item--no-border {
  border: none;
}
.gallery_base_item--no-padding {
  padding: 0;
}
.gallery_base.gallery_base--four-columns {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .gallery_base.gallery_base--four-columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .gallery_base.gallery_base--four-columns {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .gallery_base.gallery_base--four-columns {
    grid-template-columns: 1fr;
  }
}
.gallery_base.gallery_base--two-columns {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 540px) {
  .gallery_base.gallery_base--two-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .gallery_base {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .gallery_base {
    grid-template-columns: 1fr;
  }
}

.single_review_link_card {
  width: 100%;
  height: 100%;
  border: 1px solid var(--global-color-gray_2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.single_review_link_card_document {
  background: var(--global-color-gray_3);
  padding: 16px 24px;
  max-height: 372px;
  overflow: hidden;
}
.single_review_link_card_document img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: auto;
}
.single_review_link_card_content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  flex-grow: 1;
}
.single_review_link_card_details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single_review_link_card_block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--global-color-blue_1);
}
.single_review_link_card_block_label {
  font-size: 12px;
  line-height: 16px;
  color: var(--global-color-gray_1);
}

.single_review {
  display: flex;
  flex-direction: row;
  gap: 36px;
}
.single_review_document {
  width: 100%;
  max-width: 320px;
  min-width: 320px;
  border: 1px solid var(--global-color-gray_2);
  height: fit-content;
}
.single_review_document img {
  width: 100%;
  object-fit: contain;
  cursor: pointer;
}
@media (max-width: 540px) {
  .single_review_document {
    max-width: none;
  }
}
.single_review_content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .single_review_content {
    gap: 24px;
  }
}
.single_review_info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--global-color-gray_2);
}
.single_review_info_block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: var(--global-color-blue_1);
}
.single_review_info_block_label {
  font-size: 12px;
  line-height: 16px;
  color: var(--global-color-gray_1);
  font-weight: 400;
}
@media (max-width: 768px) {
  .single_review {
    flex-direction: column;
    gap: 24px;
  }
}

.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  flex-wrap: wrap;
  width: fit-content;
}
.pagination .pagination_item {
  padding: 8px;
  width: 40px;
  height: 40px;
}
.pagination .pagination_item.pagination_item--current {
  border: none;
  color: var(--global-color-gray_1);
  cursor: default;
  pointer-events: none;
}
@media (max-width: 540px) {
  .pagination .pagination_item {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

.main_navigation.is-vertical {
  flex-direction: column;
  justify-content: start;
  gap: 12px;
}
.main_navigation.is-vertical a {
  color: var(--global-color-white);
}
.main_navigation.is-vertical a:hover {
  color: var(--global-color-white);
}

.main_navigation.is-grow {
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .main_navigation.is-desktop {
    display: none;
  }
}

.mobile_menu.is-active {
  display: flex;
}

.logo.is-big {
  width: 95px;
  height: 70px;
}
@media (max-width: 768px) {
  .logo.is-big {
    width: 95px;
    height: 70px;
  }
}

.about_section.single_project_about_section .about_section_container_bottom {
  grid-template-columns: repeat(3, 1fr);
}
.about_section.single_project_about_section .about_section_container_bottom_card {
  padding: 32px;
}
.about_section.single_project_about_section .about_section_container_bottom_card h3 {
  font-size: 20px;
  line-height: 24px;
}
.about_section.single_project_about_section .about_section_container_bottom_card span {
  font-size: 16px;
  line-height: 22px;
}
@media (max-width: 1024px) {
  .about_section.single_project_about_section .about_section_container_bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about_section.single_project_about_section .about_section_container_bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}

.slider_section.result_slider_section {
  padding-bottom: 32px;
  margin-bottom: 72px;
}
.slider_section.result_slider_section .swiper-scrollbar-horizontal {
  bottom: 0;
}
@media (max-width: 768px) {
  .slider_section.result_slider_section {
    margin-bottom: 0;
  }
}

.page_title_section.single_project_page_title_section {
  min-height: 439px;
}
@media (max-width: 768px) {
  .page_title_section.single_project_page_title_section {
    min-height: unset;
  }
}

.post_body_section.vacancy_post_body {
  margin-bottom: 80px;
}
.post_body_section.vacancy_post_body .post_body_section_container.is-narrow {
  gap: 40px;
}
@media (max-width: 768px) {
  .post_body_section.vacancy_post_body {
    margin-bottom: 0;
  }
}

.mb-64px {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .mb-64px {
    margin-bottom: 0;
  }
}

.mb-80px {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .mb-80px {
    margin-bottom: 0;
  }
}

/*
  Стили Футера
*/
.footer {
  background-color: var(--global-color-blue_1);
  color: var(--global-color-white);
  display: flex;
  flex-direction: column;
}
.footer_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px 32px;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer_grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer_grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.footer_legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--global-color-blue_3);
  opacity: 0.7;
}
@media (max-width: 540px) {
  .footer_legal {
    order: -2;
    align-items: center;
  }
}
.footer_contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 540px) {
  .footer_contacts {
    align-items: center;
    text-align: center;
    gap: 8px;
    max-width: 326px;
    margin: auto;
  }
}
.footer_copyright {
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  color: var(--global-color-blue_3);
  border-top: 1px solid rgba(255, 255, 255, 0.0784313725);
  opacity: 0.7;
}
@media (max-width: 540px) {
  .footer_copyright {
    text-align: center;
  }
}

/*
  Стили Хедера
*/
.header {
  background: var(--global-color-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #EEEEEE;
  font-weight: 400;
}
.header_container {
  flex-direction: row;
  justify-content: space-between;
  padding: 16px 24px;
  align-items: center;
  max-width: 1448px;
}
.header_container_left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 96px;
}
.header_container_right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}
@media (max-width: 768px) {
  .header_container {
    padding: 12px 16px;
  }
}
@media (max-width: 768px) {
  .header {
    border-bottom: 1px solid var(--global-color-gray_2);
  }
}

/*
  Стили Сайдбара
*/
.sidebar {
  width: 332px;
  min-width: 332px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.sidebar_section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1200px) {
  .sidebar {
    width: 300px;
    min-width: 300px;
  }
}
@media (max-width: 1024px) {
  .sidebar {
    width: 100%;
    min-width: unset;
  }
}

section {
  position: relative;
  max-width: 1920px;
  margin: 0 auto 104px auto;
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  section {
    margin: 0 auto;
  }
}

.section--is-first {
  padding-top: 64px;
}
@media (max-width: 768px) {
  .section--is-first {
    padding-top: 0;
  }
}