/*!
Theme Name: steklopack
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: steklopack
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

steklopack is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "Igra Sans";
  font-display: swap;
  src: url("fonts/Igrasans.woff") format("woff"),
    url("fonts/Igrasans.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* Указываем box sizing */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Убираем внутренние отступы */

ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/

ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

a:not([class]):hover {
  color: #2ea8df;
}

a[class] {
  text-decoration: none;
}

/* Упрощаем работу с изображениями */

img {
  max-width: 100%;
  display: block;
}

/* Наследуем шрифты для инпутов и кнопок */

input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */

a,
label,
button,
input,
a *,
button *,
input * {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

:focus {
  outline: none;
}

:root {
  /* Colors */
  --main-color: #0082ba;
  /* Typography - Main */
  --main-font: "Inter", sans-serif;
  --main-font-color: #46536a;
  --main-font-size: 1.6rem;
  --main-font-weight: 400;
  --main-line-height: 1.2;
  --second-font: "Igra Sans", sans-serif;
  --header-height: 10rem;
  --container-max-width: 152.5rem;
}

/* Body */

body {
  font-family: var(--main-font);
  color: var(--main-font-color);
  font-weight: var(--main-font-weight);
  font-size: var(--main-font-size);
  line-height: var(--main-line-height);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 500;
  line-height: 115%;
  font-family: var(--second-font);
  color: #46536a;
}

h1,
.h1 {
  font-size: 5.5rem;
}

h2,
.h2 {
  font-size: 3.5rem;
}

h3,
.h3 {
  font-size: 2.8rem;
}

h4,
.h4 {
  font-size: 2.4rem;
}

h5,
.h5 {
  font-size: 1.6rem;
}

h6,
.h6 {
  font-size: 1.6rem;
}

.noscroll {
  overflow: hidden;
}

/* Section */

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

/* Container Fluid */

.container-fluid {
  width: 100%;
  position: relative;
  z-index: 15;
}

/* Container */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 15;
}

.inner-container {
  max-width: var(--container-max-width);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 15;
}

.container-normal {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 15px;
}

.container-normal h2 {
   margin: 30px 0 15px 0;
}

/* Row */

.row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Columns */

.col {
  position: relative;
  min-height: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.col-100 {
  width: 100%;
}

.col-50 {
  width: 50%;
}

/* Flex */

.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.fd-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.jc-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.jc-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ai-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ai-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* Pointer Events None */

.pe-none {
  pointer-events: none;
}

/* Overlay */

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 10;
}

/* Button Reset */

.btn-reset {
  padding: 0;
  margin: 0;
  border: none;
  background: 0 0;
  cursor: pointer;
}

/* Button Wrap */

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-wrap > * + * {
  margin-left: 3.2rem;
}

.btn-wrap--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-wrap--flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.btn-wrap--fixed {
  width: 100%;
  margin-top: 2.4rem;
}

.btn-wrap--fixed > * + * {
  margin-left: 2.4rem;
}

/* Button */

.btn {
  position: relative;
  background: var(--main-color);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 7.2rem;
  padding: 0 5.5rem;
}

.btn--light {
  color: var(--main-color);
  background: rgba(83, 140, 240, 0.1);
}

/* Paddings */

.pb--1 {
  padding-bottom: 1rem;
}

.pb--2 {
  padding-bottom: 2rem;
}

.pb--25 {
  padding-bottom: 2.5rem;
}

.pb--3 {
  padding-bottom: 3rem;
}

.pb--35 {
  padding-bottom: 3.5rem;
}

.pb--4 {
  padding-bottom: 4rem;
}

.pb--5 {
  padding-bottom: 5rem;
}

.pb--55 {
  padding-bottom: 5.5rem;
}

.pb--65 {
  padding-bottom: 6.5rem;
}

.pt--1 {
  padding-top: 1rem;
}

.pt--2 {
  padding-top: 2rem;
}

.pt--25 {
  padding-top: 2.5rem;
}

.pt--3 {
  padding-top: 3rem;
}

.pt--35 {
  padding-top: 3.5rem;
}

.pt--4 {
  padding-top: 4rem;
}

.pt--5 {
  padding-top: 5rem;
}

.pt--55 {
  padding-top: 5.5rem;
}

.pt--65 {
  padding-top: 6.5rem;
}

/* Section Wrap */

.section-wrap > *,
.section-wrap__inner > * {
  padding-top: 0;
  padding-bottom: 5rem;
}

.section-wrap > .section--pt-none,
.section-wrap__inner > .section--pt-none {
  padding-top: 0;
}

.section-wrap > .section--pb-none,
.section-wrap__inner > .section--pb-none {
  padding-bottom: 0;
}

/* Entry Content */

.entry-content * {
  font-size: 1.8rem;
  line-height: 144%;
}

.entry-content p {
  font-weight: 400;
  padding-bottom: 1.7rem;
}

.entry-content a {
  color: var(--main-color);
  text-decoration: underline !important;
}

.entry-content a:hover {
  text-decoration: none !important;
}

.entry-content strong {
  color: #222222;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: var(--main-font);
  padding-top: 2.8rem;
  padding-bottom: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  color: #222222;
}

.entry-content h2 {
  font-size: 2.4rem;
}

.entry-content h3,
.entry-content h4 {
  font-size: 2.2rem;
}

.entry-content h5,
.entry-content h6 {
  font-size: 2.1rem;
}

.entry-content > img {
  padding-bottom: 6.4rem;
}

.entry-content .aligncenter {
  margin: 0 auto;
}

.entry-content .alignleft {
  float: left;
  margin-bottom: 2rem;
  margin-right: 2.5rem;
}

.entry-content .alignright {
  float: right;
  margin-bottom: 2rem;
  margin-left: 2.5rem;
}

.entry-content img.size-full {
  width: 100%;
  height: auto;
}

.entry-content figure {
  max-width: 100%;
  padding-top: 6.4rem;
  padding-bottom: 4.8rem;
}

.entry-content figure img {
  width: 100%;
}

.entry-content figcaption {
  padding-top: 1.6rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 130%;
  color: #999999;
}

.entry-content ul,
.entry-content ol {
  padding: 0;
  margin: 0;
  margin-left: 0;
  padding-bottom: 1.6rem;
}

.entry-content ol {
  padding-left: 5rem;
  counter-reset: ol-item;
}

.entry-content ol li {
  display: block;
}

.entry-content ol li:before {
  content: counter(ol-item) ". ";
  counter-increment: ol-item;
  color: var(--main-color);
  font-weight: 500;
}

.entry-content ol li + li {
  margin-top: 1.2rem;
}

.entry-content ul {
  list-style: none;
}

.entry-content ul li {
  padding-left: 4.2rem;
  position: relative;
  font-size: 1.7rem;
  line-height: 153%;
}

.entry-content ul li::before {
  content: "";
  position: absolute;
  background: var(--main-color);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  left: 3rem;
  top: 1rem;
}

.entry-content ul li + li {
  margin-top: 1.2rem;
}

.entry-content table {
  border: 1px solid #d5dced;
  width: 100%;
  position: relative;
  border-spacing: 0;
  border-collapse: unset;
}

.entry-content td {
  border-bottom: 1px solid #d5dced;
  text-align: center;
  padding: 1.2rem 1.9rem;
  line-height: 1.4;
  vertical-align: baseline;
}

.entry-content td:nth-child(1) {
  width: 40%;
  text-align: left;
}

.entry-content td + td {
  border-left: 1px solid #d5dced;
}

.entry-content tr:nth-child(1) td {
  padding: 1.9rem;
}

.entry-content table {
  margin-bottom: 3.84rem;
}

.entry-content table caption {
  text-align: left;
  font-size: 1.28rem;
  line-height: 1;
  color: #064b8e;
  padding-top: 2rem;
}

.entry-content > :first-child {
  padding-top: 0 !important;
}

.entry-content > :last-child {
  padding-bottom: 0 !important;
}

/* Featured Image */

figure.featured-image,
img.featured-image {
  padding-top: 0;
}

/* Entry Block */

.entry-block {
  width: 100%;
  position: relative;
  margin-top: 3.2rem;
  margin-bottom: 2.4rem;
}

/* Text Align Center */

.ta-center {
  text-align: center;
}

/* Color White */

.color-white {
  color: #fff;
}

/* Text Transform Uppercase */

.tt-uppercase,
.tt-uppercase * {
  text-transform: uppercase;
}

/* Title */

.title,
.title * {
  font-weight: 600;
  font-size: 5rem;
  line-height: 100%;
  letter-spacing: -0.02em;
}

.title span {
  color: var(--main-color);
}

/* Text */

.text,
.text p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 189%;
  color: #7c8494;
}

.text p + p {
  padding-top: 1rem;
}

.text span {
  color: var(--main-color);
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  padding-bottom: 1rem;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 120%;
  color: var(--main-font-color);
}

.text * + h1,
.text * + h2,
.text * + h3,
.text * + h4,
.text * + h5,
.text * + h6 {
  padding-top: 2.8rem;
}

/* Image */

.image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
}

.image__wrap {
  width: 100%;
  position: relative;
}

.image img {
  width: 100%;
  position: relative;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 15;
}

.image--left {
  padding-right: 4.4rem;
}

.image--end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.image--strech {
  height: 100%;
}

.image--strech img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.image--strech-end img {
  -o-object-position: right;
  object-position: right;
}

/* Grid */

.grid {
  display: grid;
  gap: 3.2rem;
  row-gap: 4rem;
}

.grid--col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid__item--2 {
  grid-column-end: span 2;
}

.grid-item-2 {
  grid-column-end: span 2;
}

/* Breadcrumbs */

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbs,
.breadcrumbs * {
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333333;
}

.breadcrumbs a {
  color: rgba(51, 51, 51, 0.4);
}

.breadcrumbs__separator {
  width: 0.3rem;
  height: 0.3rem;
  background: #333333;
  opacity: 0.4;
  border-radius: 50%;
  margin: 0 1rem;
  display: inline-block;
}

.breadcrumbs > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Form */

.form {
  width: 100%;
  position: relative;
}

/* Form Wrap */

.form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form-wrap--contacts > .form-row + .form-row {
  margin-top: 2.1rem;
}

/* Form Input */

.form-input {
  width: 100%;
  color: #000;
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 0;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  padding: 1.8rem 2.6rem 3.8rem;
}

.form-input::-webkit-input-placeholder {
  color: #8d8d8d;
}

.form-input::-moz-placeholder {
  color: #8d8d8d;
}

.form-input:-ms-input-placeholder {
  color: #8d8d8d;
}

.form-input::-ms-input-placeholder {
  color: #8d8d8d;
}

.form-input::placeholder {
  color: #8d8d8d;
}

.form-input:focus {
  border-color: var(--main-color);
}

.form-label-wrap {
  position: relative;
  display: flex;
}

.form-label-wrap > span:nth-child(1) {
  width: 100%;
}

.form-label-span {
  position: absolute;
  left: 2.6rem;
  bottom: 1.8rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 130%;
  color: #a2a2a2;
}

/* Form Textarea */

.form-textarea {
  height: 17.7rem;
  resize: none;
}

/* Form Submit */

.form-submit {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
}

/* Form Text */

.form-text {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 100%;
  margin-bottom: 2.4rem;
}

/* Form Row */

.form-row {
  width: 100%;
}

.form-row + .form-row {
  margin-top: 1.6rem;
}

/* Form Column */

.form-col {
  position: relative;
}

/* Form Label */

.form-label {
  position: relative;
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 0.4rem;
}

.form-label img {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 0.4rem;
}

.form-label--space {
  opacity: 0;
  pointer-events: none;
}

.form-label--checkbox {
  padding-bottom: 0.8rem;
}

/* Form Grid */

.form-grid {
  display: grid;
  gap: 2.1rem;
}

.form-grid--contacts {
  gap: 3.9rem;
}

.form-grid--col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.form-grid--col-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Radio Like Checkbox */

.radio-like-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.radio-like-checkbox > * + * {
  margin-left: 2.4rem;
}

.radio-like-checkbox > span > label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  cursor: pointer;
}

.radio-like-checkbox > span [type="radio"] {
  display: none;
}

.radio-like-checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 2.4rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 100%;
}

.radio-like-checkbox .wpcf7-list-item-label::before {
  content: "";
  background: #fff;
  border: 1px solid #e0e0e0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio-like-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-image: url(img/radio-like-checkbox.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio-like-checkbox
  > span
  [type="radio"]:checked
  ~ .wpcf7-list-item-label:after {
  opacity: 1;
}

/* Form Checkbox */

.form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-checkbox,
.form-checkbox * {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: #000000;
}

.form-checkbox a {
  text-decoration: underline;
  color: var(--main-color);
}

.form-checkbox > * + * {
  margin-left: 2.4rem;
}

.form-checkbox label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  cursor: pointer;
}

.form-checkbox > span [type="checkbox"] {
  display: none;
}

.form-checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-checkbox .wpcf7-list-item-label::before {
  content: "";
  background: #fff;
  border: 1px solid #e0e0e0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  position: absolute;
  left: 0;
  top: 0;
}

.form-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  background-image: url(img/check.svg);
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  left: 0;
  top: 0;
}

.form-checkbox > span [type="checkbox"]:checked ~ .wpcf7-list-item-label:after {
  opacity: 1;
}

/* File Upload Input */

.file-upload-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.file-upload-input__message {
  position: relative;
  font-weight: 400;
  font-size: 2rem;
  line-height: 130%;
  color: #ffffff;
  padding-left: 6.4rem;
}

.file-upload-input__message::before {
  content: "";
  position: absolute;
  width: 3.8rem;
  height: 2.6rem;
  left: 0;
  top: calc(50% - 0.2rem);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(img/file-upload-input.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.file-upload-input span.wpcf7-form-control-wrap {
  display: none;
}

/* Date Input */

.date-input label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 100%;
  margin-bottom: 1.6rem;
}

.date-input input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  height: 5.3rem;
  font-size: 1.4rem;
}

/* Form Select */

.form-select {
  width: 100%;
  color: #000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  background: #fff;
  border: 1px solid rgba(34, 95, 90, 0.5);
  border-radius: 0.9rem;
  padding: 0 1.6rem;
  height: 6.4rem;
}

.form-select option {
  color: black;
}

/* Submit Btn */

.submit-btn {
  position: relative;
  width: 100%;
  height: 7.2rem;
  border: 3px solid #ffffff;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.submit-btn span {
  position: relative;
  padding-right: 6.7rem;
}

.submit-btn span::before {
  content: "";
  position: absolute;
  width: 4.7rem;
  height: 3.3rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(img/contacts-us-circle-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}

/* Search Btn */

.search-btn {
  width: 100%;
  height: 5.5rem;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 0.9rem;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 100%;
  color: #fff;
}

.search-btn span {
  position: relative;
  padding-left: 2.8rem;
}

.search-btn span::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(img/heroicons_magnifying-glass.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Form Message */

.wpcf7-not-valid-tip,
.ajax-loader,
.wpcf7-spinner {
  display: none !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  line-height: 1.3;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 1rem 1rem;
  border: none;
  -webkit-box-shadow: 0 0.16rem 1.28rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.16rem 1.28rem rgba(0, 0, 0, 0.08);
  border-radius: 0.3rem;
  background: #fff;
}

/* Select */

.select {
  position: relative;
  width: 100%;
  max-width: 38rem;
}

.select__selected {
  position: relative;
  height: 7.2rem;
  background: #0082ba;
  border: 2px solid #0082ba;
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 2rem;
  margin-top: 0.8rem;
  cursor: pointer;
}

.select__selected::before {
  content: "";
  background-image: url(/steklopack-wp/wp-content/uploads/2023/02/select-angle.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  width: 1.8rem;
  height: 1.3rem;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.select__selected--active::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.select__select {
  position: absolute;
  width: 100%;
  left: 0;
  top: 8rem;
  background: #fff;
  -webkit-box-shadow: 0 0.4rem 2.8rem 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.4rem 2.8rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.32rem;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 25;
}

.select--hide {
  opacity: 0;
  pointer-events: none;
}

.select__btn {
  width: 100%;
  position: relative;
  padding: 0 1.6rem;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  border: 2px solid #0082ba;
  border-top: none;
  height: 7.2rem;
  color: #46536a;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.select__btn:hover {
  color: #0082ba;
}

/* Modal Wrap */

.modal-wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 500;
  top: 0;
  right: 0;
  background: rgba(31, 38, 80, 0.25);
}

.modal-wrap--scroll {
  overflow-y: scroll;
}

.modal-wrap--scroll .modal {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: unset;
}

.modal-wrap--scroll .modal__close-overlay,
.modal-wrap--scroll .modal-close-overlay {
  position: fixed;
}

/* Modal */

.modal {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal__container {
  position: relative;
  max-width: 54.4rem;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0 2.8rem 8rem rgba(0, 0, 0, 0.04),
    0 1.2rem 3.3rem rgba(0, 0, 0, 0.0287542),
    0 0.6rem 1.7rem rgba(0, 0, 0, 0.0238443), 0 0.3rem 1rem rgba(0, 0, 0, 0.02),
    0 0.2rem 0.5rem rgba(0, 0, 0, 0.0161557),
    0 0.07rem 0.2rem rgba(0, 0, 0, 0.0112458);
  box-shadow: 0 2.8rem 8rem rgba(0, 0, 0, 0.04),
    0 1.2rem 3.3rem rgba(0, 0, 0, 0.0287542),
    0 0.6rem 1.7rem rgba(0, 0, 0, 0.0238443), 0 0.3rem 1rem rgba(0, 0, 0, 0.02),
    0 0.2rem 0.5rem rgba(0, 0, 0, 0.0161557),
    0 0.07rem 0.2rem rgba(0, 0, 0, 0.0112458);
  border-radius: 1.6rem;
  z-index: 20;
  margin: 0 2rem;
}

.modal__close {
  position: absolute;
  top: 0;
  right: -4rem;
  cursor: pointer;
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal__close svg {
  width: 100%;
  height: 100%;
}

.modal__close-overlay,
.modal-close-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

.modal__space-bottom {
  width: 100%;
  height: 5rem;
}

.modal__content {
  padding: 3.2rem;
}

.serach-modal-content {
  padding: 2rem;
}

.serach-bar-wrap__container {
  height: 100%;
}

.search-form__icon {
  display: flex;
  width: 3.2rem;
  height: 3.2rem;
}

.search-form__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.search-form label {
  width: calc(100% - 3.2rem);
  height: 100%;
}

.search-submit {
  position: relative;
  line-height: 1;
  padding: 0 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  height: 4.8rem;
  border-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 11.2rem;
}

.search-field {
  width: 100%;
  color: rgba(0, 0, 0, 1);
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  background: #fff;
  border-radius: 0;
  height: 100%;
  padding: 0 2rem;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.search-field::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.search-wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 500;
  top: 0;
  right: 0;
  background: rgba(31, 38, 80, 0.25);
}

.serach-bar-wrap {
  position: relative;
  width: 100%;
  height: var(--header-height);
  background: #fff;
}

.search-list {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-top: 1.5rem !important;
}

.search-list__item {
  position: relative;
  padding-left: 2.5rem;
}

.search-list__item + .search-list__item {
  margin-top: 2rem;
}

.search-list__item:before {
  content: "";
  background: var(--main-color);
  width: 1.3rem;
  height: 0.2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.search-title,
.search-title * {
  font-size: 2.7rem;
  line-height: 1;
  color: var(--main-color);
  font-weight: 500;
}

/* Hamburger */

.hamburger {
  display: block;
  width: 1.6rem;
  height: 1.4rem;
  position: relative;
}

.hamburger * {
  position: absolute;
  background: var(--main-color);
  width: 100%;
  height: 0.2rem;
  border-radius: 10rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.hamburger *:nth-child(1) {
  top: 0;
}

.hamburger *:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hamburger *:nth-child(3) {
  bottom: 0;
}

.header--white .hamburger *,
.hamburger--white * {
  background: #fff;
}

.hamburger--open > :nth-child(1) {
  top: 0.65rem;
  right: 0rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger--open > :nth-child(1) {
  top: 0.65rem;
  right: 0rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger--open > :nth-child(1) {
  top: 0.65rem;
  right: 0rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger--open > :nth-child(2) {
  opacity: 0;
}

.hamburger--open > :nth-child(3) {
  top: 0.65rem;
  right: 0rem;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Logo */

.logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo img {
  width: 22.4rem;
  height: 4.475rem;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Menu */

.menu {
  height: 100%;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.menu__item {
  height: 100%;
}

.menu__list > .menu__item + .menu__item {
  margin-left: 2.9rem;
}

.menu__url {
  position: relative;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 100%;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.2rem 0.4rem;
  height: 100%;
  white-space: nowrap;
}

.menu__url::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.4rem;
  bottom: 0;
  right: 0;
  background-color: var(--main-color);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.menu__url:hover,
.current-menu-item .menu__url {
  color: var(--main-color);
}

.menu__url:hover::before,
.current-menu-item .menu__url::before {
  opacity: 1;
}

.menu__has-children {
  position: relative;
}

.menu__parent-wrap {
  position: relative;
  z-index: 10;
}

.menu__parent-url-wrap {
  position: relative;
}

.menu__parent-url-icon {
  background-image: url(img/chevron-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  right: -2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__drop-children {
  position: absolute;
  background: #ffffff;
  -webkit-box-shadow: 0 0 1.9rem rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 1.9rem rgba(0, 0, 0, 0.07);
  border-radius: 0.8rem;
  padding: 2.4rem !important;
  min-width: 25rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__drop-children .menu__item + .menu__item {
  margin-top: 0.8rem;
}

/* Mobile Menu Modal */

.mobile-menu-modal {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0rem;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 360;
  display: block;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.mobile-menu-modal--open {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

/* Header */

.header {
  position: relative;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  z-index: 300;
}

.header__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #f7f7f9;
  height: 100%;
}

.header__content {
  width: calc(100% - 31rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.header__search {
  width: 6rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  width: 25rem;
  height: 100%;
  border-right: 1px solid #f7f7f9;
  display: flex;
  align-items: center;
}

.open-search {
  display: flex;
  width: 3.2rem;
  height: 3.2rem;
}

/* Fixed Header */

.fixed-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 375;
  -webkit-box-shadow: 0rem 0.3rem 1rem 0rem rgba(0, 0, 0, 0.1);
  box-shadow: 0rem 0.3rem 1rem 0rem rgba(0, 0, 0, 0.1);
}

.fixed-header--open-menu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.fixed-header--scroll {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Header Menu */

.header-menu {
  width: calc(100% - 38rem);
  padding-left: 2.3rem;
  padding-right: 2.9rem;
  border-left: 1px solid #f7f7f9;
}

/* Header Btn Wrap */

.header-btn-wrap {
  width: 16.5rem;
  height: 100%;
}

/* Header Contact Btn */

.header-contact-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background-color: var(--main-color);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0 2.6rem;
}

/* Header Contacts */

.header-contacts {
  position: relative;
  width: 21.5rem;
  height: 100%;
  padding: 0 2.6rem;
  border-left: 1px solid #f7f7f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Header Phone */

.header-phone {
  position: relative;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 130%;
  color: #3c3c3c;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

/* Header Email */

.header-email {
  position: relative;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 130%;
  color: #3c3c3c;
}

/* Hero */

.hero {
  padding-top: 4rem;
}

.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Section Subtitle */

.section-subtitle {
  position: relative;
  padding-top: 2.9rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.38;
  color: #9d9d9f;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 0.4rem;
  background-color: var(--main-color);
  top: 0;
  left: 0;
}

.section-subtitle span {
  position: relative;
  padding-right: 2.8rem;
  margin-right: 1rem;
  color: var(--main-color);
}

.section-subtitle span::before {
  content: "";
  position: absolute;
  width: 1.8rem;
  height: 1px;
  background-color: #9d9d9f;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Section Slider Nav */

.section-slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2.5rem;
}

/* Hero Title */

.hero-title {
  padding-top: 2.4rem;
  padding-bottom: 2.7rem;
}

.hero-title::first-letter {
  color: var(--main-color);
}

/* Hero Text */

.hero-text {
  padding-bottom: 1.5rem;
  
}

.hero-text,
.hero-text * {
  line-height: 160%;
}

.hero-text * {
  padding-right: 1rem;
  padding-right: 3em;
}

/* Line Link */

.line-link {
  position: relative;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 130%;
  color: var(--main-color);
  padding-left: 6rem;
}

.line-link::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 2px;
  background: var(--main-color);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Hero Article Wrap */

.hero-article-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* Hero Article */

.hero-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.hero-article__image {
  width: 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-article__content {
  width: 55%;
  padding-left: 1.7rem;
}

.hero-article__title {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 100%;
  padding-bottom: 1.5rem;
}

.hero-article__title::first-letter {
  color: var(--main-color);
}

.hero-article__text,
.hero-article__text * {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 160%;
  color: #7c8494;
}

.hero-article__btn {
  margin-top: 3.9rem;
}

/* Marquee Section */

/* Marquee Animation */

@-webkit-keyframes marquee {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

@keyframes marquee {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

/* Marquee */

.marquee {
  position: relative;
  height: 9.65rem;
  overflow: hidden;
}

/* Marquee Content */

.marquee-content {
  width: 200%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.marquee-content img {
  width: 50%;
  padding: 0 5rem;
}

/* About Us Section */

/* Section Title */

.section-title {
  padding-top: 1.5rem;
  text-transform: uppercase;
}

.section-title::first-letter {
  color: var(--main-color);
}

.section-title span {
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 153%;
  text-transform: lowercase;
  color: rgba(70, 83, 106, 0.5);
}

/* Section Container */

.section-container {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-container .section-header {
  width: 25%;
}

.section-container .section-content {
  width: 75%;
}

/* Section Header */

.section-header--map {
  position: relative;
}

.section-header--map::before {
  content: "ПРОФСТЕКЛОПАК";
  position: absolute;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 11.5rem;
  line-height: 84%;
  color: rgba(124, 132, 148, 0.41);
  bottom: 0;
  left: 0;
  z-index: 1;
}

/* Decorative Text */

.decorative-text {
  position: relative;
}

.decorative-text::before {
  content: "ПРОФСТЕКЛОПАК";
  position: absolute;
  font-family: var(--second-font);
  color: rgba(70, 83, 106, 0.1);
  bottom: 50%;
  right: 0;
  -webkit-transform: rotate(90deg) translate(50%, -100%);
  -ms-transform: rotate(90deg) translate(50%, -100%);
  transform: rotate(90deg) translate(50%, -100%);
  font-size: 7rem;
  line-height: 1;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

/* Block About Us */

.block-about-us {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-about-us__text {
  width: 38rem;
}

.block-about-us__images {
  position: relative;
  width: calc(100% - 38rem);
  padding-left: 4.3rem;
}

.block-about-us__btn {
  position: absolute;
  bottom: 8.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 4.2rem;
  background-color: #fff;
}

/* Images About Us */

.images-about-us {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.2rem;
}

/* Contacts Us Circle */

.contacts-us-circle {
  position: relative;
  background: var(--main-color);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 7.2rem;
  padding: 0 5.5rem;
}

.contacts-us-circle span {
  position: relative;
  padding-right: 6.7rem;
}

.contacts-us-circle span::before {
  content: "";
  position: absolute;
  width: 4.7rem;
  height: 3.3rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(img/contacts-us-circle-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}

.contacts-us-circle--light {
  color: var(--main-color);
  background: rgba(83, 140, 240, 0.1);
}

.contacts-us-circle--light span::before {
  background-image: url(img/contacts-us-circle--light.svg);
}

/* Advantages Section */

/* Inline Advantage */

.inline-advantage {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-increment: advantage;
}

.inline-advantage + .inline-advantage {
  margin-top: 4.2rem;
}

.inline-advantage::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  border: 3px solid var(--main-color);
  z-index: 5;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

.inline-advantage:hover::before {
  opacity: 1;
}

.inline-advantage__icon {
  position: relative;
  width: 38rem;
  min-height: 18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #dedede;
}

.inline-advantage__icon::before {
  content: counter(advantage);
  position: absolute;
  width: 6.1rem;
  height: 6.1rem;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f7f9fe;
  font-size: 2rem;
  line-height: 1;
  color: var(--main-color);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.inline-advantage__icon::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  right: -2px;
  background-color: var(--main-color);
  z-index: 5;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

.inline-advantage:hover .inline-advantage__icon::before {
  color: #fff;
  background: var(--main-color);
}

.inline-advantage:hover .inline-advantage__icon::after {
  opacity: 1;
}

.inline-advantage__content {
  width: calc(100% - 38rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3.6rem 0 3.6rem 4.3rem;
}

.inline-advantage__title,
.inline-advantage__title * {
  padding-bottom: 2.5rem;
  font-size: 2.5rem;
  line-height: 100%;
  font-family: var(--main-font);
  text-transform: uppercase;
}

.inline-advantage__text,
.inline-advantage__text * {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 189%;
  color: #7c8494;
}

/* Form Section */

.form-section__title {
  padding-bottom: 5.5rem;
}

.form-section__title,
.form-section__title * {
  font-weight: 400;
  text-transform: uppercase;
}

.form-section__title span {
  color: var(--main-color);
}

/* Blue Form */

.blue-form {
  position: relative;
  padding-top: 6.7rem;
  padding-bottom: 5.1rem;
  background-image: url(img/blue-form.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Blue Form Content */

.blue-form-content {
  max-width: 76rem;
  width: 100%;
  margin: 0 auto;
}

/* Text Image Section */

/* Text Image */

.text-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
/*   align-items: center; */
}

.text-image + .text-image {
  margin-top: 4rem;
}

.text-image--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.text-image > * {
  position: relative;
  width: 50%;
}

.text-image__image--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 313px);
    gap: 4.4rem;
    height: 100%;
}

.text-image__image img {
  width: 100%;
}

.text-image__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-image__text {
  padding-left: 4.3rem;
  padding-top: 3rem;
	padding-bottom: 3rem;
}

.text-image--reverse .text-image__text {
  padding-left: 0;
  padding-right: 4.3rem;
}


/* Blog Section */

.blog-section__btn {
  width: 100%;
  padding-bottom: 4rem;
}

.blog-section__btn > * {
  width: 25%;
}

/* Map Section */

.map-section__text {
  padding-top: 2rem;
}

.map-section__text,
.map-section__text * {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 160%;
  color: #7c8494;
}

/* Blog Slider */

.blog-slider {
  overflow: hidden;
}

/* Blog Slide */

.blog-slide__image {
  width: 100%;
  height: 34.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.blog-slide__content {
  padding: 2rem;
}

.blog-slide__title {
  padding-bottom: 1.5rem;
}

.blog-slide__title,
.blog-slide__title * {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 150%;
  color: #46536a;
}

.blog-slide__title > * {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-slide__text,
.blog-slide__text * {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 160%;
  color: #7c8494;
}

.blog-slide__date {
  padding-top: 2.5rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 160%;
  color: var(--main-color);
}

/* Slider Square Nav */

.slider-square-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 8.3rem;
  height: 8.3rem;
}

.slider-square-nav > * {
  width: 100%;
  height: 100%;
}

/* Map Block */

.map-block {
  position: relative;
}

.map-block > * {
  height: 52rem;
}

/* Contacts Section */

/* Call Us */

.call-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 5.5rem;
}

.call-us span {
  font-family: var(--second-font);
  width: 25%;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 100%;
  color: var(--main-color);
  text-transform: uppercase;
}

.call-us p {
  width: 75%;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 160%;
  color: #7c8494;
}

/* Full Width Phone */

.full-width-phone,
.full-width-phone * {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 17.6rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--main-color);
}

/* Footer */

.footer {
  background: #f5f5f5;
  padding: 7.4rem 0;
}

/* Footer Col */

.footer-col {
  width: 25%;
}

/* Footer Title */

.footer-title {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  color: #46536a;
  padding-bottom: 2rem;
}

/* Footer Text */

.footer-text,
.footer-text * {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #46536a;
}

.footer-text a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Link Underline */

.link-underline {
  color: var(--main-color);
  text-decoration-line: underline !important;
}

/* Copyright */

.copyright {
  padding: 3.2rem 0;
  background-color: var(--main-color);
  text-align: center;
}

.copyright,
.copyright * {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  color: #ffffff;
}

.copyright a {
  text-decoration-line: underline !important;
}

/* Simple Page */

.simple-page {
  padding-top: 3rem;
}

/* Simple Page Breadcrumbs */

.simple-page-breadcrumbs {
  padding-bottom: 3rem;
}

/* Page Header */

.page-header {
  height: 33.8rem;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Page Header Content */

.page-header-content {
	width: 100%;
	background-color: #fff;
	max-width: min-content;
    padding-left: 8.2rem;
}

/* Page Header Image */

.page-header-image {
  padding-bottom: 1rem;
}

.page-header-image img {
  height: 15rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

/* Brand First Letter */

.brand-first-letter::first-letter {
  color: var(--main-color);
}

/* Page Title */

.page-title {
  text-transform: uppercase;
  padding-bottom: 1.5rem;
  padding-right: 1em;
  padding-top: 1.5rem;
  font-variant: no-common-ligatures;
}

.page-title > span:nth-child(1) {
  margin-right: -1.4rem;
}

/* Services Grid */

.services-grid {
  gap: 0;
}

/* Service Item */

.service-item {
  position: relative;
  padding: 10rem 4rem 4rem;
  counter-increment: service;
}

.service-item::before {
  content: counter(service);
  position: absolute;
  width: 6.1rem;
  height: 6.1rem;
  top: 0;
  left: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f7f9fe;
  font-size: 2rem;
  line-height: 1;
  color: var(--main-color);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.service-item:hover::before {
  color: #fff;
  background: var(--main-color);
}

.service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  border: 3px solid var(--main-color);
  z-index: 5;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

.service-item:hover::after {
  opacity: 1;
}

.service-item__title {
  padding-bottom: 2.5rem;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 147%;
  color: #46536a;
}

.service-item__title span {
  color: var(--main-color);
}

.service-item__text {
  padding-bottom: 3rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 156%;
  color: #7c8494;
}

.service-item__image img {
  width: 100%;
  height: 19rem;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Blog Item */

.blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-item + .blog-item {
  margin-top: 3rem;
}

.blog-item__image {
  width: 20%;
  height: 140px;
  border: 1px solid #dedede;
}

.blog-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blog-item__content {
  /*width: 66.6667%;*/
  padding-left: 3rem;
}

.blog-item__title {
  padding-bottom: 1.5rem;
}

.blog-item__title,
.blog-item__title * {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 150%;
  color: #46536a;
}

.blog-item__text,
.blog-item__text * {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 160%;
  color: #7c8494;
}

.blog-item__date {
  padding-top: 1.0rem;
  font-weight: 400;
  font-size: 1.0rem;
  line-height: 160%;
  color: #0082ba;
}

/* Blog Page Btn */

.blog-page-btn {
  padding-top: 5rem;
  gap: 0;
}

/* Square Image Slider */

.square-image-slider {
  overflow: hidden;
}

/* Square Image Slide */

.square-image-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.square-image-slide img {
  width: 100%;
  height: 68.4rem;
}

/* Square Image Slider Nav */

.square-image-slider-nav {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

/* Square Image Slider Count */

.square-image-slider-count {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 15;
  background: #ffffff;
  width: 100%;
  max-width: 50%;
  padding: 1.8rem;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
  color: #46536a;
  text-align: center;
}

.square-image-slider-count span {
  font-weight: 400;
  font-size: 5.6rem;
  line-height: 1;
  color: var(--main-color);
}

/* About Us Gallery */

.about-us-gallery {
  display: grid;
  grid-template: repeat(10, 7.8rem) / repeat(3, 1fr);
  gap: 4.3rem;
}

.about-us-gallery a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-us-gallery span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-us-gallery a:nth-child(1) {
  grid-column: 1 / span 1;
  grid-row: 1 / span 3;
}

.about-us-gallery span:nth-child(1) {
  grid-column: 1 / span 1;
  grid-row: 1 / span 3;
}

.about-us-gallery a:nth-child(2) {
  grid-column: 2 / span 1;
  grid-row: 1 / span 3;
}

.about-us-gallery span:nth-child(2) {
  grid-column: 2 / span 1;
  grid-row: 1 / span 3;
}

.about-us-gallery a:nth-child(3) {
  grid-column: 3 / span 1;
  grid-row: 1 / span 3;
}

.about-us-gallery span:nth-child(3) {
  grid-column: 3 / span 1;
  grid-row: 1 / span 3;
}

.about-us-gallery a:nth-child(4) {
  grid-column: 1 / span 1;
  grid-row: 4 / span 3;
}

.about-us-gallery span:nth-child(4) {
  grid-column: 1 / span 1;
  grid-row: 4 / span 3;
}

.about-us-gallery a:nth-child(5) {
  grid-column: 2 / span 1;
  grid-row: 4 / span 3;
}

.about-us-gallery span:nth-child(5) {
  grid-column: 2 / span 1;
  grid-row: 4 / span 3;
}

.about-us-gallery a:nth-child(6) {
  grid-column: 3 / span 1;
  grid-row: 4 / span 3;
}

.about-us-gallery span:nth-child(6) {
  grid-column: 3 / span 1;
  grid-row: 4 / span 3;
}

.about-us-gallery a:nth-child(7) {
  grid-column: 1 / span 1;
  grid-row: 7 / span 3;
}

.about-us-gallery span:nth-child(7) {
  grid-column: 1 / span 1;
  grid-row: 7 / span 3;
}

.about-us-gallery a:nth-child(8) {
  grid-column: 2 / span 1;
  grid-row: 7 / span 3;
}

.about-us-gallery span:nth-child(8) {
  grid-column: 2 / span 1;
  grid-row: 7 / span 3;
}

.about-us-gallery a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-us-gallery span img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* About Us Gallery Btn */

.about-us-gallery-btn {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.3rem;
}

/* Production Block */

.production-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.production-block__text {
  width: 38rem;
}

.production-block__images {
  position: relative;
  width: calc(100% - 38rem);
  padding-right: 4.3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.2rem;
}

/* Production Cases */

.production-cases {
  padding-top: 5rem;
}

/* Production Cases Title */

.production-cases-title {
  padding-bottom: 4rem;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: #46536a;
}

/* Production Cases Grid */

.production-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.production-cases-grid a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.production-cases-grid img {
  width: 100%;
  height: 34.1rem;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Contacts Col */

.contacts-col {
  width: 25%;
}

/* Contacts Container */

.contacts-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Contacts Title */

.contacts-title {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  color: #46536a;
  padding-bottom: 2rem;
}

/* Contacts Text */

.contacts-text,
.contacts-text * {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #46536a;
}

.contacts-text a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Single Post Container */

.single-post-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Single Post Meta */

.single-post-meta {
  padding-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-post-meta > * + * {
  margin-left: 2.5rem;
}

/* Single Post Category */

.single-post-category {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #0082ba;
  padding: 0.3rem 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 136%;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Single Post Date */

.single-post-date {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 138%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222222;
}

/* Single Post Sidebar */

.single-post-sidebar {
  width: 31.1rem;
  border-top: 1px solid #f7f7f9;
}

/* Single Post Content */

.single-post-content {
  width: calc(100% - 31.1rem);
  padding-left: 7rem;
}

/* Single Post Title */

.single-post-title {
  padding-bottom: 1.6rem;
}

.single-post-title,
.single-post-title * {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 125%;
  color: #222222;
}

/* Big Text */

.big-text,
.big-text p {
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 127%;
  color: #515151;
}

.big-text p {
  padding-bottom: 1.6rem;
}

/* Sidebar Post Item */

.sidebar-post-item {
  padding: 3rem 0;
  border-bottom: 1px solid #f7f7f9;
}

.sidebar-post-item__title {
  padding-bottom: 1.5rem;
}

.sidebar-post-item__title,
.sidebar-post-item__title * {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 2rem;
  line-height: 150%;
  color: #46536a;
}

.sidebar-post-item__title > * {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-post-item__text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 160%;
  color: #7c8494;
}

.sidebar-post-item__date {
  padding-top: 1.5rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 160%;
  color: #0082ba;
}

/* Single Post Bottom */

.single-post-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 4.2rem;
}

/* Single Post Author */

.single-post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.single-post-author__image {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
}

.single-post-author__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-post-author__content {
  padding-left: 1.6rem;
}

/* Not Found Page */

.not-found-page {
  padding: 15rem 0;
}

/* Hide On Mobile */

/* Show On Mobile */

.show-on-mobile {
  display: none;
}

/* Hidden */

.hidden {
  display: none;
}

@media screen and (min-width: 767px) {
  .menu__has-children:hover .menu__parent-url-icon {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
  }

  .menu__drop-children {
    opacity: 0;
    pointer-events: none;
  }

  .menu__has-children:hover .menu__drop-children {
    opacity: 1;
    pointer-events: all;
  }
}

@media (min-width: 2500px) {
  html {
    font-size: calc(2.5px + 4.8 * (100vw - 768px) / 1152);
  }
}

@media (max-width: 1919px) {
  :root {
    --container-max-width: 135rem;
  }

  .menu__list > .menu__item + .menu__item {
    margin-left: 2rem;
  }

  .menu__url {
    font-size: 1.5rem;
    padding: 0 0.5rem 0.4rem;
  }

  .header-phone {
    font-size: 1.6rem;
  }

  .header-email {
    font-size: 1.6rem;
  }

  .decorative-text::before {
    display: none;
  }
}

@media screen and (max-width: 1919px) {
  .marquee-section {
    padding: 0;
  }

  .full-width-phone,
  .full-width-phone * {
    font-size: 15rem;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10px + 11 * (100vw - 320px) / 447);
    font-size: 10px;
  }

  :root {
    --main-font-size: 1.4rem;
    --header-height: 6rem;
  }

  h1,
  .h1 {
    font-size: 3.1rem;
  }

  h2,
  .h2 {
    font-size: 3rem;
  }

  h3,
  .h3 {
    font-size: 2.5rem;
  }

  .section {
    overflow: hidden;
  }

  .container {
    padding: 0 1.6rem;
  }

  .inner-container {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }

  .col-50 {
    width: 100%;
  }

  .col-50 + .col-50 {
    margin-top: 4rem;
  }

  .fd-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .btn-wrap--center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .btn-wrap > * + * {
    margin-top: 1.6rem;
    margin-left: 0;
  }

  .btn {
    padding: 0 2rem;
    font-size: 1.7rem;
    height: 5rem;
  }

  .section-wrap > * {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-wrap > *:last-child {
    padding-bottom: 4.8rem;
  }

  .entry-content * {
    font-size: 1.6rem;
  }

  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6 {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .entry-content h2 {
    font-size: 2.4rem;
  }

  .entry-content h3,
  .entry-content h4 {
    font-size: 2.2rem;
  }

  .entry-content h5,
  .entry-content h6 {
    font-size: 2rem;
  }

  .entry-content figure {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .entry-content figcaption {
    padding-top: 1.6rem;
  }

  .entry-content ul,
  .entry-content ol {
    padding-bottom: 1.5rem;
  }

  .entry-content ol {
    padding-left: 1.5rem;
  }

  .entry-content ul li {
    padding-left: 1.5rem;
  }

  .entry-content ul li::before {
    left: 0.5rem;
  }

  .title,
  .title * {
    font-size: 3.3rem;
  }

  .text,
  .text p {
    font-size: 1.4rem;
    line-height: 160%;
  }

  .text h1,
  .text h2,
  .text h3,
  .text h4,
  .text h5,
  .text h6 {
    padding-bottom: 0.5rem;
    font-size: 2rem;
  }

  .text * + h1,
  .text * + h2,
  .text * + h3,
  .text * + h4,
  .text * + h5,
  .text * + h6 {
    padding-top: 1.5rem;
  }

  .image--left {
    padding-right: 0;
  }

  .grid {
    row-gap: 4rem;
  }

  .entry-content .grid {
    row-gap: 1rem;
    padding-bottom: 2rem;
  }

  .grid--gap-4 {
    gap: 2rem;
  }

  .grid--col-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid--col-3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid--col-4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid__item--2 {
    grid-column-end: span 1;
  }

  .grid-item-2 {
    grid-column-end: span 1;
  }

  .grid-item-mobile-2 {
    grid-column-end: span 2;
  }

  .breadcrumbs > span {
    display: inline-block;
  }

  .breadcrumbs > span > span {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .form-input {
    padding: 1rem 1rem 3rem;
    font-size: 1.5rem;
  }

  .form-label-span {
    left: 1rem;
    bottom: 1rem;
    font-size: 1.2rem;
  }

  .form-textarea {
    height: 10rem;
  }

  .form-row + .form-row {
    margin-top: 1.5rem;
  }

  .form-col .btn {
    width: 100%;
  }

  .form-label--space {
    display: none;
  }

  .form-grid {
    gap: 1.5rem;
  }

  .form-grid--col-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .form-grid--col-3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .radio-like-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .radio-like-checkbox > * + * {
    margin-left: 0;
    margin-top: 1rem;
  }

  .file-upload-input__message {
    font-size: 1.6rem;
    padding-left: 4rem;
  }

  .file-upload-input__message::before {
    width: 3rem;
    height: 2rem;
    top: 50%;
  }

  .submit-btn {
    height: 6rem;
    border: 2px solid #fff;
    font-size: 1.6rem;
  }

  .logo img {
    width: 15rem;
    height: 3rem;
  }

  .menu {
    height: unset;
  }

  .menu--desktop {
    display: none;
  }

  .menu__list {
    height: unset;
  }

  .menu__item {
    height: unset;
  }

  .menu--mobile {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 15;
    padding-top: 10rem;
  }

  .menu--mobile .menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .menu__item {
    width: 100%;
    text-align: left;
    padding: 0 2.5rem;
  }

  .menu__list > .menu__item + .menu__item {
    margin-left: 0;
  }

  .menu__parent-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
  }

  .menu__parent-url-wrap {
    width: 100%;
  }

  .menu__url {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 600;
    padding: 1.6rem 0;
    line-height: 1;
  }

  .menu__parent-url-icon {
    background-image: url(img/plus.svg);
    width: 2.5rem;
    height: 2.5rem;
    right: 0;
    bottom: 1.2rem;
    background-color: rgba(57, 87, 211, 0.15);
    background-size: 1rem;
    border-radius: 0.4rem;
  }

  .menu__has-children .menu__drop-children {
    display: none;
    width: 100% !important;
    position: relative;
    top: 0;
    margin: 0 !important;
    bottom: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    min-width: unset !important;
    max-width: unset !important;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background: transparent;
    padding: 1rem 0 !important;
  }

  .menu__drop-children .menu__url {
    padding: 0;
  }

  .header__container {
    border-bottom: 0px solid #f7f7f9;
    height: unset;
  }

  .header__content {
    width: auto;
    margin-left: auto;
  }

  .header-logo {
    width: auto;
    border-right: 0px solid #f7f7f9;
  }

  .section-subtitle {
    font-size: 1.3rem;
  }

  .hero-title {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-text {
    padding-bottom: 0;
	padding-right: 1.5rem;
  }
  
  .hero-text * {
    padding-right: 1.5rem;
}

  .line-link {
    padding-left: 3.5rem;
    font-size: 1.5rem;
  }

  .line-link::before {
    width: 2.5rem;
  }

  .hero-article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero-article__image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .hero-article__content {
    width: 100%;
    padding-left: 0;
    padding-top: 2rem;
  }

  .hero-article__title {
    font-size: 2.1rem;
    padding-bottom: 1rem;
  }

  .hero-article__text,
  .hero-article__text * {
    font-size: 1.4rem;
  }

  .hero-article__btn {
    margin-top: 2rem;
  }

  .marquee-section {
    padding: 0;
  }

  .marquee {
    height: 5rem;
  }

  .marquee-content {
    width: 1920px;
    -webkit-animation: marquee 18s linear infinite;
    animation: marquee 18s linear infinite;
  }

  .section-title span {
    font-size: 3rem;
    line-height: 120%;
  }

  .section-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-container .section-header {
    width: 100%;
  }

  .section-container .section-content {
    width: 100%;
  }

  .section-header {
    padding-bottom: 3rem;
  }

  .section-header--map::before {
    display: none;
  }

  .block-about-us {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .block-about-us__text {
    width: 100%;
  }

  .block-about-us__images {
    width: 100%;
    padding-left: 0;
    padding-top: 2rem;
  }

  .block-about-us__btn {
    bottom: 12rem;
    padding: 1.5rem;
  }

  .images-about-us {
    gap: 1.5rem;
  }

  .contacts-us-circle {
    font-size: 1.4rem;
    height: 5.5rem;
    padding: 0 3rem;
  }

  .inline-advantage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .inline-advantage__icon {
    width: 100%;
  }

  .inline-advantage__icon::after {
    content: "";
    width: 100%;
    height: 3px;
    top: unset;
    bottom: -2px;
    right: unset;
  }

  .inline-advantage__content {
    width: 100%;
    padding: 3rem 2rem;
  }

  .inline-advantage__title,
  .inline-advantage__title * {
    padding-bottom: 1rem;
    font-size: 2rem;
  }

  .inline-advantage__text,
  .inline-advantage__text * {
    font-size: 1.4rem;
    line-height: 160%;
  }

  .form-section__title {
    padding-bottom: 2rem;
  }

  .blue-form {
    padding: 3rem 2rem;
  }

  .text-image,
  .text-image--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .text-image + .text-image {
    margin-top: 5rem;
  }

  .text-image > * {
    width: 100%;
  }

  .text-image__image--grid {
        gap: 2rem;
    height: auto;
    grid-template-rows: unset;
  }

  .text-image__text,
  .text-image--reverse .text-image__text {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2rem;
  }

  .inline-case,
  .inline-case:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .inline-case + .inline-case {
    margin-top: 5rem;
  }

  .inline-case > * {
    width: 100%;
  }

  .inline-case__image img {
    height: 20rem;
  }

  .inline-case__content,
  .inline-case:nth-child(even) .inline-case__content {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2rem;
  }

  .inline-case__title,
  .inline-case__title * {
    font-size: 2.5rem;
  }

  .blog-section__btn {
    width: 100%;
    padding-bottom: 2rem;
  }

  .blog-section__btn > * {
    width: 25rem;
  }

  .blog-slide__content {
    padding: 2rem 0 0;
  }

  .blog-slide__title {
    padding-bottom: 0.5rem;
  }

  .blog-slide__title,
  .blog-slide__title * {
    font-size: 2rem;
  }

  .blog-slide__text,
  .blog-slide__text * {
    font-size: 1.4rem;
  }

  .blog-slide__date {
    padding-top: 1rem;
    font-size: 1.4rem;
  }

  .slider-square-nav {
    width: 5rem;
    height: 5rem;
  }

  .map-block > * {
    height: 25rem;
  }

  .call-us {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 1.5rem;
  }

  .call-us span {
    width: 100%;
    font-size: 2rem;
    padding-bottom: 1rem;
  }

  .call-us p {
    font-size: 1.4rem;
  }

  .full-width-phone,
  .full-width-phone * {
    font-size: 3.8rem;
  }

  .footer {
    padding: 4rem 0;
  }

  .footer-col {
    width: 100%;
  }

  .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-container > * + * {
    margin-top: 4rem;
  }

  .footer-title {
    font-size: 2rem;
    padding-bottom: 2rem;
  }

  .footer-text,
  .footer-text * {
    font-size: 1.4rem;
    line-height: 1;
  }

  .copyright {
    padding: 1.5rem 0;
  }

  .copyright,
  .copyright * {
    font-size: 1.4rem;
  }

  .page-header {
    height: unset;
    background: transparent;
  }

  .page-header-content {
    padding: 0;
  }

  .page-title {
    padding-bottom: 1.5rem;
    padding-top: 2rem;
    padding-right: 1em;
    width: fit-content;
  }

  .page-title > span:nth-child(1) {
    margin-right: -0.8rem;
  }

  .service-item {
    padding: 7rem 0 0;
  }

  .service-item::before {
    left: 0;
    width: 5.5rem;
    height: 5.5rem;
  }

  .service-item::after {
    display: none;
  }

  .service-item__title {
    padding-bottom: 1rem;
    font-size: 2rem;
  }

  .service-item__text {
    font-size: 1.4rem;
  }

  .blog-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .blog-item__image {
    width: 100%;
  }

  .blog-item__content {
    width: 100%;
    padding-left: 0;
    padding-top: 2rem;
  }

  .square-image-slide img {
    height: unset;
  }

  .square-image-slider-count {
    padding: 1rem;
  }

  .square-image-slider-count span {
    font-size: 3rem;
  }

  .about-us-gallery {
    grid-template: unset;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-us-gallery a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .about-us-gallery a:nth-child(1),
  .about-us-gallery a:nth-child(2),
  .about-us-gallery a:nth-child(3),
  .about-us-gallery a:nth-child(4),
  .about-us-gallery a:nth-child(5),
  .about-us-gallery a:nth-child(6),
  .about-us-gallery a:nth-child(7),
  .about-us-gallery a:nth-child(8) {
    grid-column: unset;
    grid-row: unset;
  }

  .about-us-gallery a img {
    height: 17rem;
  }

  .about-us-gallery-btn {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .production-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .production-block__text {
    width: 100%;
    padding-top: 2rem;
  }

  .production-block__images {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    padding-right: 0;
    gap: 1.5rem;
  }

  .production-cases {
    padding-top: 3rem;
  }

  .production-cases-title {
    font-size: 3rem;
    padding-bottom: 2rem;
  }

  .production-cases-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }

  .production-cases-grid img {
    height: unset;
  }

  .contacts-col {
    width: 100%;
  }

  .contacts-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacts-container > * + * {
    margin-top: 4rem;
  }

  .contacts-title {
    font-size: 2rem;
    padding-bottom: 2rem;
  }

  .contacts-text,
  .contacts-text * {
    font-size: 1.4rem;
    line-height: 1;
  }

  .single-post-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .single-post-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-post-meta > * + * {
    margin-left: 0;
    margin-top: 1rem;
  }

  .single-post-sidebar {
    width: 100%;
    padding-top: 5rem;
  }

  .single-post-content {
    width: 100%;
    padding-left: 0;
  }

  .single-post-title,
  .single-post-title * {
    font-size: 2.5rem;
  }

  .big-text,
  .big-text p {
    font-size: 1.8rem;
  }

  .sidebar-post-item {
    padding: 1rem 0;
  }

  .sidebar-post-item__title {
    padding-bottom: 1rem;
  }

  .sidebar-post-item__title,
  .sidebar-post-item__title * {
    line-height: 125%;
  }

  .sidebar-post-item__date {
    padding-top: 1rem;
  }

  .hide-on-mobile {
    display: none;
  }

  .show-on-mobile {
    display: block;
  }

  .show-on-mobile--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .show-on-mobile--grid {
    display: grid;
  }
}

@media (max-width: 2499px) and (min-width: 1920px) {
  html {
    font-size: calc(2.5px + 7.5 * (100vw - 768px) / 1152);
  }
}

@media (max-width: 1919px) and (min-width: 1440px) {
  html {
    font-size: calc(5.63px + 7.5 * (100vw - 768px) / 1152);
  }
}

@media (max-width: 1439px) and (min-width: 1024px) {
  html {
    font-size: calc(3.5px + 15 * (100vw - 768px) / 1152);
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  html {
    font-size: calc(7px + 1.5 * (100vw - 768px) / 256);
  }

  :root {
    --container-max-width: 100rem;
  }

  .header-menu {
    display: none;
  }

  .header-contacts {
    display: none;
  }

  .header-btn-wrap {
    display: none;
  }

  .header__search {
    display: none;
  }

  .header__content {
    width: auto;
    margin-left: auto;
  }

  .hamburger {
    display: block;
  }

  .hero-title {
    padding-top: 2.4rem;
    padding-bottom: 2.7rem;
    font-size: 4rem;
  }

  .hero-article {
    align-items: flex-start;
  }

  .block-about-us__btn {
    bottom: 11.2rem;
    padding: 1rem;
  }

  .section-header--map::before {
    font-size: 8.5rem;
  }

  .full-width-phone,
  .full-width-phone * {
    font-size: 11rem;
  }

  .blog-slide__image {
    height: 20rem;
  }

  .blog-section__btn > * {
    width: 33.3333%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    -o-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.not-found-page__text {
  margin: 15px 0 20px 0;
}

/* Inline Case */

.inline-case {
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;*/
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inline-case + .inline-case {
  margin-top: 4rem;
}

/*.inline-case:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}*/

/*.inline-case > * {
  width: 50%;
}*/

.inline-case__image img {
  width: 100%;
  height: 40.4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.inline-case__image {
  align-self: center;
  width: 80%;
}

/*.inline-case__content {
  padding-left: 4.3rem;
}

.inline-case:nth-child(even) .inline-case__content {
  padding-left: 0;
  padding-right: 4.3rem;
}*/

.inline-case__title {
  padding-bottom: 1.5rem;
}

.inline-case__title,
.inline-case__title * {
  font-style: normal;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: #46536a;
  text-align: center;
}

.inline-case__btn {
  padding-top: 1.5rem;
}

.inline-case__btn a {
	margin: 0 auto;
}

.cases-filter-wrap {
  display: flex;
  padding-bottom: 5rem;
}


.cases-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
	padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
	.cases-wrap {
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
	}
	.inline-case__image img {
    	height: 20rem;
	}
}

.inline-case {
    display: flex;
    flex-direction: column;
    height: 100%;
	align-self: end;
}

inline-case__image,
.inline-case__content {
    display: block;
    width: 100%;
}

.inline-case__content {
    margin-top: 15px;
	flex-grow: 1;
	align-content: end;
}

/* -- datail -- */

.img-datail-title {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding-top: 6px;
	padding-bottom: 6px;
}

.img-datail-title {
  width: 100%;
  margin-bottom: 20px;
}

.img-datail-title img {
	min-width:11rem;
	width:11rem;
}

/* Десктопная версия (два столбца) */
@media (min-width: 768px) {
  .text-image__text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .img-datail-title {
    width: calc(50% - 60px); /* учитываем промежуток между колонками */
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
  }
  
  /* Обеспечиваем одинаковую высоту для элементов в одной строке */
  .text-image__text::after {
    content: "";
    width: calc(50% - 60px);
  }
}

/* Общие стили для всех устройств */
.img-datail-title img {
  max-width: 100%;
  height: auto;
}

.img-datail-title p {
  margin-top: 10px;
  flex-grow: 1; /* Растягиваем текст, чтобы высота была одинаковой */
}

.text-image__text.text.detail {
	padding-left:0;
	padding-bottom:0;
}

@media screen and (max-width: 767px) {
	.text-image__text.text.detail {
		padding-bottom:0;
	}
}










