/*!
Theme Name: impulse-marine
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: impulse-marine
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.

impulse-marine 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/
*/

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Указываем 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: rgba(57, 87, 211, 1);
  /* Typography - Main */
  --main-font: "Oswald", sans-serif;
  --main-font-color: #333238;
  --main-font-size: 1.6rem;
  --main-font-weight: 400;
  --main-line-height: 1.4;
  /* Typography - Secondary */
  --secondary-font: "Raleway", sans-serif;
  --secondary-font-color: #838192;
  --secondary-font-size: 1.6rem;
  --secondary-font-weight: 400;
  --secondary-line-height: 1.4;
}

/* Body */

body {
  font-family: var(--secondary-font);
  color: var(--main-font-color);
  font-weight: var(--main-font-weight);
  font-size: var(--main-font-size);
  line-height: var(--main-line-height);
}

/* 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: 144rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 15;
}

.inner-container {
  max-width: 144rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

/* 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-10 {
  width: 10%;
}

.col-13 {
  width: 13%;
}

.col-15 {
  width: 15%;
}

.col-16 {
  width: 16.6666666%;
}

.col-17 {
  width: 17%;
}

.col-20 {
  width: 20%;
}

.col-25 {
  width: 25%;
}

.col-27 {
  width: 27%;
}

.col-30 {
  width: 30%;
}

.col-38 {
  width: 38%;
}

.col-33 {
  width: 33.33333%;
}

.col-40 {
  width: 40%;
}

.col-45 {
  width: 45%;
}

.col-50 {
  width: 50%;
}

.col-55 {
  width: 55%;
}

.col-60 {
  width: 60%;
}

.col-66 {
  width: 66.66666%;
}

.col-70 {
  width: 70%;
}

.col-75 {
  width: 75%;
}

.col-80 {
  width: 80%;
}

.col-87 {
  width: 87%;
}

.col-90 {
  width: 90%;
}

.col-100 {
  width: 100%;
}

/* 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;
}

/* Hide On Mobile */

/* Show On Mobile */

.show-on-mobile {
  display: none;
}

/* Hidden */

.hidden {
  display: none;
}

/* 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: 1.6rem;
}

.btn-wrap--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Button */

.btn {
  font-family: var(--main-font);
  background-color: var(--main-color);
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  height: 7rem;
  padding: 0 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;
  text-align: center;
  border-radius: 0.8rem;
}

.btn--white {
  background-color: #fff;
  color: var(--main-font-color);
}

.btn--border {
  background-color: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.btn--clear {
  background-color: #fff;
  color: #838192;
}

.btn--disable {
  opacity: 0;
  pointer-events: none;
}

/* 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--fixed-header {
  padding-top: 8.5rem;
}

.section-wrap > * {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.section-wrap > .section--pt-none {
  padding-top: 0;
}

.section-wrap > .section--pb-none {
  padding-bottom: 0;
}

.section-wrap > *:last-child {
  padding-bottom: 14rem;
}

.section-wrap--bg-lines {
  background-image: url(img/lines-bg.png);
  background-size: 139rem;
  background-position: top right;
  background-repeat: no-repeat;
}

/* Entry Content */

.entry-content * {
  font-size: var(--main-font-size);
  line-height: var(--main-line-height);
  color: var(--main-font-color);
}

.entry-content p {
  padding-bottom: 2.4rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  padding-top: 1.6rem;
  padding-bottom: 1.28rem;
  line-height: 1.2;
  font-weight: 300;
  margin: 0;
}

.entry-content h2 {
  font-size: 3.04rem;
}

.entry-content h3,
.entry-content h4 {
  font-size: 3.04rem;
}

.entry-content h5,
.entry-content h6 {
  font-size: 2.08rem;
}

.entry-content img {
  border-radius: 1.28rem;
}

.entry-content img.aligncenter {
  margin: 0 auto;
}

.entry-content img.size-full {
  height: auto;
}

.entry-content figure {
  padding-bottom: 2.4rem;
}

.entry-content figure img {
  width: 100%;
}

.entry-content figcaption {
  padding-top: 1.6rem;
  font-size: 1.28rem;
  line-height: 1.2;
  text-align: center;
  color: #8c9cab;
}

.entry-content ul,
.entry-content ol {
  padding: 0;
  margin: 0;
  padding-bottom: 2.4rem;
}

.entry-content ul {
  list-style: none;
}

.entry-content ul li {
  padding-left: 1.76rem;
  position: relative;
}

.entry-content ul li::before {
  content: "";
  position: absolute;
  background: #8c9cab;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  left: 0;
  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;
}

/* Entry Block */

.entry-block {
  width: 100%;
  position: relative;
  margin-bottom: 2.4rem;
}

/* Text Align Center */

.ta-center {
  text-align: center;
}

/* Text Transform Uppercase */

.tt-uppercase,
.tt-uppercase * {
  text-transform: uppercase;
}

/* Subtitle */

.subtitle,
.subtitle * {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 140%;
}

.subtitle--blue,
.subtitle--blue * {
  color: var(--main-color);
}

/* Title */

.title,
.title * {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 4rem;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.title span {
  color: var(--main-color);
}

.title--small,
.title--small * {
  font-size: 3.2rem;
}

.title--big,
.title--big * {
  font-size: 5.6rem;
}

/* Text */

.text {
  font-size: 1.6rem;
  line-height: 140%;
}

.text--big {
  font-size: 1.8rem;
}

.text--gray {
  color: #838192;
}

/* 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;
}

.grid--gap-small {
  gap: 2.4rem;
}

.grid--gap-medium {
  gap: 7rem;
}

.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);
}

/* Breadcrumbs */

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbs,
.breadcrumbs * {
  font-size: 1.2rem;
  line-height: 140%;
  line-height: 1;
  color: var(--main-font-color);
}

.breadcrumbs a {
  color: var(--main-color);
}

.breadcrumbs__sep {
  margin: 0 0.8rem;
  display: inline-block;
}

/* Form */

.form {
  width: 100%;
  position: relative;
}

.form__wrap {
  position: relative;
}

.form__wrap > * + * {
  margin-top: 2.4rem;
}

.form__row {
  width: 100%;
}

.form__col {
  position: relative;
}

.form__label {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  padding-bottom: 1.6rem;
}

.form__input {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(131, 129, 146, 0.2);
  border-radius: 0.8rem;
  padding: 3.2rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #838192;
}

.form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form__radio > span {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__radio > span + span {
  margin-top: 2.4rem;
}

.form__radio label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__radio label span {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  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: 3rem 4rem 3rem 8.8rem;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.form__radio > span [type="radio"] {
  display: none;
}

.form__radio .wpcf7-list-item-label:before {
  content: "";
  background: #fff;
  border: 2px solid var(--main-color);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  position: absolute;
  left: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form__radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0;
  left: 4.7rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form__radio > span [type="radio"]:checked ~ .wpcf7-list-item-label:after {
  opacity: 1;
}

.form__radio > span [type="radio"]:checked ~ .wpcf7-list-item-label::before {
  background: var(--main-color);
}

.form__checkbox {
  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 > span {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__checkbox > span + span {
  margin-top: 2.4rem;
}

.form__checkbox label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__checkbox label span {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  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: 3rem 4rem 3rem 8.8rem;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.form__checkbox > span [type="checkbox"] {
  display: none;
}

.form__checkbox .wpcf7-list-item-label:before {
  content: "";
  background: #fff;
  border: 2px solid var(--main-color);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  position: absolute;
  left: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form__checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  opacity: 0;
  left: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(img/check.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.form__checkbox
  > span
  [type="checkbox"]:checked
  ~ .wpcf7-list-item-label:after {
  opacity: 1;
}

.form__checkbox
  > span
  [type="checkbox"]:checked
  ~ .wpcf7-list-item-label::before {
  background: var(--main-color);
}

.form__simple-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form__simple-checkbox > span {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form__simple-checkbox > span + span {
  margin-top: 2.4rem;
}

.form__simple-checkbox label span {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  background: #ffffff;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding-left: 4rem;
}

.form__simple-checkbox > span [type="checkbox"] {
  display: none;
}

.form__simple-checkbox .wpcf7-list-item-label:before {
  content: "";
  background: #fff;
  border: 2px solid var(--main-color);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form__simple-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  opacity: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(img/check.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.form__simple-checkbox
  > span
  [type="checkbox"]:checked
  ~ .wpcf7-list-item-label:after {
  opacity: 1;
}

.form__simple-checkbox
  > span
  [type="checkbox"]:checked
  ~ .wpcf7-list-item-label::before {
  background: var(--main-color);
}

.ajax-loader,
.wpcf7-spinner {
  display: none !important;
}

/* Form Message */

.wpcf7-not-valid-tip,
.ajax-loader {
  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.4rem;
  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;
}

/* Modal Wrap */

.modal-wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 500;
  top: 0;
  right: 0;
  background: rgba(112, 112, 112, 0.7);
}

/* 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: 86rem;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0.8rem 0.8rem 1.6rem 0.24rem rgba(0, 0, 0, 0.1);
  box-shadow: 0.8rem 0.8rem 1.6rem 0.24rem rgba(0, 0, 0, 0.1);
  border-radius: 0.8rem;
  z-index: 20;
  margin: 0 2rem;
}

.modal-wrap--big .modal__container {
  max-width: 105rem;
}

.modal__close {
  position: absolute;
  top: 3.2rem;
  right: 3.2rem;
  cursor: pointer;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 0.8rem;
  -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;
  background: #fff;
}

.modal__close svg {
  width: 2.4rem;
  height: 2.4rem;
}

.modal-wrap--big .modal__close {
  top: 0;
  right: -5rem;
  width: 4rem;
  height: 4rem;
}

.modal__content {
  padding: 6.4rem 8rem;
}

.modal-wrap--big .modal__content {
  padding: 1rem;
}

.modal__close-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

/* Hamburger */

.hamburger {
  display: none;
}

/* Logo */

.logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo img {
  width: 8rem;
  height: 8rem;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Header */

.header {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 350;
}

.header--fixed {
  position: fixed;
  top: 0;
  right: 0;
}

.header__top {
  border-bottom: 1px solid rgba(51, 50, 56, 0.1);
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.header__row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__contacts > * + * {
  margin-left: 12rem;
}

.header__bottom {
  border-bottom: 1px solid rgba(51, 50, 56, 0.1);
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.header__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__bottom-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__bottom-icons > * + * {
  margin-left: 2.5rem;
}

/* Lang Dropdown */

.lang-dropdown__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lang-dropdown__list > .lang-dropdown__item + .lang-dropdown__item {
  margin-left: 12rem;
}

.lang-dropdown__url {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--main-font-color);
  text-transform: uppercase;
}

.lang-dropdown__has-children {
  position: relative;
}

.lang-dropdown__parent-wrap {
  position: relative;
  z-index: 10;
}

.lang-dropdown__parent-url-wrap {
  position: relative;
}

.lang-dropdown__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;
}

.lang-dropdown__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: 1.4rem !important;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.lang-dropdown__drop-children .lang-dropdown__item + .lang-dropdown__item {
  margin-top: 0.8rem;
}

/* Menu */

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__list > .menu__item + .menu__item {
  margin-left: 12rem;
}

.menu__url {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--main-font-color);
  text-transform: uppercase;
}

.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;
}

/* Mini Cart */

.mini-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
}

.mini-cart > svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Contact Item */

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2rem;
}

.contact-item__icon svg {
  width: 100%;
  height: 100%;
}

.contact-item__content {
  width: calc(100% - 2rem);
  padding-left: 2rem;
}

.contact-item__label {
  font-size: 1.2rem;
  line-height: 140%;
  color: var(--main-font-color);
  padding-bottom: 0.4rem;
}

.contact-item__contacts * {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--main-font-color);
}

/* Hero Slide */

.hero-slide {
  height: 84.5rem;
  overflow: hidden;
  position: relative;
}

.hero-slide__container {
  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;
  height: 100%;
  position: relative;
  z-index: 15;
}

.hero-slide__overlay {
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(9.72%, rgba(0, 0, 0, 0.3)),
      color-stop(28.57%, rgba(0, 0, 0, 0))
    ),
    -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(
      top,
      rgba(0, 0, 0, 0.3) 9.72%,
      rgba(0, 0, 0, 0) 28.57%
    ),
    -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 9.72%,
      rgba(0, 0, 0, 0) 28.57%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.hero-slide__title {
  color: #fff;
}

.hero-slide__subtitle {
  color: #fff;
  font-weight: 600;
}

.hero-slide__btns {
  padding-top: 3.2rem;
}

/* Category Item */

.category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -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);
}

.category-item__image {
  width: 100%;
  height: 30rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.category-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.8rem;
}

.category-item__content {
  padding: 2.4rem;
}

.category-item__title {
  margin-bottom: 1.6rem;
}

.category-item__title,
.category-item__title * {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--main-font-color);
}

.category-item__text,
.category-item__text * {
  font-size: 1.6rem;
  color: #838192;
}

/* Advantage */

.advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.advantage__icon {
  width: 4.8rem;
  height: 4.8rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.advantage__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.advantage__content {
  width: calc(100% - 4.8rem);
  padding-left: 2.4rem;
}

.advantage__title {
  padding-bottom: 1.6rem;
}

.advantage__title,
.advantage__title * {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--main-font-color);
}

.advantage__text,
.advantage__text * {
  font-size: 1.6rem;
  line-height: 140%;
  color: #838192;
}

/* 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__image {
  width: 54%;
}

.text-image__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.8rem;
}

.text-image__content {
  width: 46%;
  padding-left: 8rem;
}

.text-image--reverse .text-image__content {
  padding-left: 0;
  padding-right: 8rem;
}

.text-image__subtitle {
  padding-bottom: 0.8rem;
}

.text-image__title {
  padding-bottom: 2.4rem;
}

.text-image__btns {
  padding-top: 3.2rem;
}

/* Double Text */

.double-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.double-text__col-1 {
  width: 54%;
  padding-right: 12rem;
}

.double-text--reverse .double-text__col-1 {
  padding-right: 0;
  padding-left: 12rem;
}

.double-text__col-2 {
  width: 46%;
}

.double-text__subtitle {
  padding-bottom: 0.8rem;
}

.double-text__title {
  padding-bottom: 2.4rem;
}

.double-text__btns {
  padding-top: 3.2rem;
}

/* Footer */

.footer {
  padding: 6.5rem 0;
  border-top: 1px solid rgba(51, 50, 56, 0.1);
}

.footer__row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.footer__info {
  width: 35%;
  padding-right: 18rem;
}

.footer__text,
.footer__text * {
  color: #838192;
}

.footer__socials {
  margin-top: 1.6rem;
}

.footer__menus {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__menus-col + .footer__menus-col {
  margin-left: 18rem;
}

/* Footer Title */

.footer-title {
  margin-bottom: 1.6rem;
}

.footer-title,
.footer-title * {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--main-font-color);
}

.footer-title--blue,
.footer-title--blue * {
  color: var(--main-color);
}

/* Socials */

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.socials__item + .socials__item {
  margin-left: 2.4rem;
}

.socials__item * {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Footer Menu */

.footer-menu {
  max-width: 22.5rem;
}

.footer-menu__item + .footer-menu__item {
  margin-top: 0.8rem;
}

.footer-menu__url {
  font-size: 1.6rem;
  line-height: 140%;
  color: #838192;
}

/* Product Item */

.product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -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);
}

.product-item__image {
  width: 100%;
  height: 30rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.8rem;
}

.product-item__content {
  padding: 2.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-item__title {
  margin-bottom: 1.6rem;
}

.product-item__title,
.product-item__title * {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--main-font-color);
}

.product-item__text {
  margin-bottom: 1.6rem;
}

.product-item__text,
.product-item__text * {
  font-size: 1.6rem;
  color: #838192;
}

.product-item__bottom {
  margin-top: 1.6rem;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-item__price,
.product-item__price * {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--main-color);
}

.product-item__btn {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
}

.product-item__btn > *,
.woocommerce .product-item__btn a.button,
.woocommerce .product-item__btn button.button,
.woocommerce .product-item__btn input.button {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  background-image: url(img/shopping-cart.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  padding: 0 !important;
  font-size: 0 !important;
  position: relative;
  display: inline-block;
  border-radius: 0;
}

.product-item__btn .added,
.woocommerce .product-item__btn a.added,
.woocommerce .product-item__btn button.added,
.woocommerce .product-item__btn input.added {
  background-image: url(img/blue-check.svg);
}

.woocommerce .product-item__btn .added_to_cart {
  display: none;
}

/* Pagination */

.pagination {
  padding-top: 4rem;
}

.pagination__nav-links {
  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;
}

.pagination__page-numbers {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 100%;
  width: 3rem;
  height: 3rem;
  border-radius: 0.2rem;
  color: var(--main-color);
  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;
}

.pagination__page-numbers--current {
  background: var(--main-color);
  color: #fff;
}

.pagination__page-numbers + .pagination__page-numbers {
  margin-left: 0.9rem;
}

/* Store Header */

.store-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.store-header__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.store-header__filters > * + * {
  margin-left: 2.4rem;
}

/* Filter Icon */

.filter-icon {
  font-size: 1.4rem;
  line-height: 140%;
  color: var(--main-font-color);
  padding-left: 2.4rem;
  position: relative;
}

.filter-icon::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-image: url(img/filter.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Sort Icon */

.sort-icon {
  font-size: 1.4rem;
  line-height: 140%;
  color: var(--main-font-color);
  padding-left: 2.4rem;
  padding-right: 1.4rem;
  position: relative;
}

.sort-icon::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-image: url(img/sort.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sort-icon::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-image: url(img/angle-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Accordion */

.accordion {
  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;
}

.accordion + .accordion {
  margin-top: 2.4rem;
}

.accordion__head {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  width: 100%;
  padding: 3.2rem 5.8rem 3.2rem 4rem;
  color: #333333;
  text-align: left;
  position: relative;
}

.accordion__number {
  color: var(--main-color);
  padding-right: 2.4rem;
}

.accordion__content {
  display: none;
  padding: 3.2rem 4rem 4rem;
  border-top: 1px solid rgba(131, 129, 146, 0.1);
}

.accordion__plus {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  right: 4rem;
  top: 3.2rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion__plus::before {
  content: "";
  background-color: var(--main-color);
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 1rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion__plus::after {
  content: "";
  background-color: var(--main-color);
  width: 2px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 1rem;
}

.accordion--open .accordion__plus {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion--open .accordion__plus::before {
  opacity: 0;
}

/* Docs Grid */

.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding-top: 3.2rem;
}

/* Document */

.document {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.document__icon {
  width: 3.2rem;
  height: 3.2rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.document__icon--pdf {
  background-image: url(img/pdf.svg);
}

.document__icon--xls {
  background-image: url(img/xls.svg);
}

.document__content {
  width: calc(100% - 3.2rem);
  padding-left: 0.8rem;
}

.document__title {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 132%;
  color: #3957d3;
  padding-bottom: 0.8rem;
}

.document__size {
  font-size: 1.4rem;
  line-height: 150%;
  color: #838192;
}

/* Sidebar Cart */

.sidebar-cart {
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  -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 0 0 0.8rem;
  width: 57rem;
  height: 100vh;
  z-index: 400;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar-cart--open {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.sidebar-cart__wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 4rem;
}

.sidebar-cart__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid rgba(51, 50, 56, 0.1);
  height: 6.5rem;
}

.sidebar-cart__title {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 100%;
  text-align: center;
  color: #1f2123;
}

.sidebar-cart__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.sidebar-cart__close svg {
  width: 100%;
  height: 100%;
}

.sidebar-cart__content {
  height: calc(100% - 24.5rem - 6.5rem);
  overflow-y: scroll;
  padding-right: 1rem;
}

.sidebar-cart__content::-webkit-scrollbar {
  width: 0.4rem;
}

.sidebar-cart__content::-webkit-scrollbar-track {
  background: rgba(48, 48, 48, 0);
}

.sidebar-cart__content::-webkit-scrollbar-thumb,
.sidebar-cart__content::-webkit-scrollbar-thumb:hover {
  background: rgba(51, 50, 56, 0.2);
  border-radius: 0.8rem;
}

.sidebar-cart__bottom {
  height: 24.5rem;
  border-top: 1px solid rgba(51, 50, 56, 0.1);
}

.sidebar-cart__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(51, 50, 56, 0.1);
  margin-bottom: 3.2rem;
}

.sidebar-cart__total {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 100%;
  color: var(--main-font-color);
  text-transform: uppercase;
}

.sidebar-cart__total * {
  font-size: 2.4rem;
}

.sidebar-cart__total strong {
  display: none;
}

.sidebar-cart__total span {
  color: var(--main-color);
}

.sidebar-cart__clear {
  font-size: 1.6rem;
  line-height: 100%;
  color: #838192;
}

.sidebar-cart__btns > * + * {
  margin-top: 1.6rem;
}

/* Mini Cart Product */

.mini-cart-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.4rem 0;
}

.mini-cart-product:not(:last-child) {
  border-bottom: 1px solid rgba(51, 50, 56, 0.1);
}

.mini-cart-product__thumb {
  width: 12rem;
  height: 12rem;
}

.mini-cart-product__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.8rem;
}

.mini-cart-product__content {
  width: calc(100% - 12rem);
  padding-left: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mini-cart-product__bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mini-cart-product__title {
  margin-bottom: 0.8rem;
}

.mini-cart-product__title,
.mini-cart-product__title * {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 100%;
  color: var(--main-font-color);
}

.mini-cart-product__text,
.mini-cart-product__text * {
  font-size: 1.4rem;
  line-height: 100%;
  color: #838192;
}

.mini-cart-product__price {
  margin-left: auto;
}

.mini-cart-product__price,
.mini-cart-product__price * {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 100%;
  text-align: center;
  color: var(--main-color);
}

.mini-cart-product__remove {
  font-size: 1.2rem !important;
  line-height: 100% !important;
  text-align: center !important;
  color: #838192 !important;
  opacity: 0.6 !important;
  display: flex !important;
  align-items: center !important;
}

/* Clear Cart */

.clear-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Map */

.map iframe {
  width: 100%;
  height: 40rem;
}

/* Contact */

.contact {
  position: relative;
  padding-left: 3.2rem;
}

.contact::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  left: 0;
  top: 0;
}

.contact--phone::before {
  background-image: url(img/phone.svg);
}

.contact--email::before {
  background-image: url(img/envelope.svg);
}

.contact--time::before {
  background-image: url(img/gray-clock.svg);
}

.contact--address::before {
  background-image: url(img/map.svg);
}

.contact__label {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  color: #838192;
  margin-bottom: 0.8rem;
}

.contact__content {
  font-size: 1.6rem;
  line-height: 140%;
  color: #222222;
}

/* Project */

.project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.project__content {
  width: 51%;
  padding-right: 6.5rem;
}

.project__slider {
  width: 49%;
}

/* Icon Item */

.icon-item__icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.6rem;
}

.icon-item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.icon-item__text {
  font-size: 1.6rem;
  line-height: 140%;
  color: #838192;
}

/* Simple Slider */

.simple-slider {
  overflow: hidden;
  position: relative;
}

/* Video */

.video {
  position: relative;
  width: 100%;
  height: 53rem;
  border-radius: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  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;
}

.video__play {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: #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;
}

.video__play svg {
  width: 3.2rem;
  height: 3.2rem;
}

/* Slider Navigation */

.slider-navigation__prev,
.slider-navigation__next {
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 0.8rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 15;
  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;
}

.slider-navigation__prev svg,
.slider-navigation__next svg {
  width: 2.4rem;
  height: 2.4rem;
}

.slider-navigation__prev {
  left: 2.4rem;
}

.slider-navigation__next {
  right: 2.4rem;
}

/* Youtube Video */

.youtube-video iframe {
  width: 100%;
  height: 65rem;
  border-radius: 0.8rem;
}

/* Brief */

.brief__title {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 1.6rem;
}

.brief__info {
  font-size: 1.6rem;
  line-height: 140%;
  text-align: center;
  color: #838192;
  margin-bottom: 4.8rem;
}

.brief__item {
  display: none;
}

.brief__item--active {
  display: block;
}

.brief__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 6.5rem;
}

.brief__question {
  padding-bottom: 2.5rem;
}

.brief__question-text {
  padding-bottom: 6.5rem;
}

/* Brief Submit */

.brief-submit {
  display: none;
}

/* Mobile Langs */

.mobile-langs,
.mobile-langs * {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--main-font-color);
  text-transform: uppercase;
}

/* 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: 300;
  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%);
}

/* woocommerce single product */
.single-product-content {
  display: flex;
}

.single-product-content__image {
  width: 50%;
}

.single-product-content__content {
  width: 50%;
  padding-left: 3.2rem;
}

.product_title {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 4rem;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-bottom: 2.4rem;
}

.single-product-content__text > h2:first-child {
  display: none;
}

.single-product-content__text ul li {
  padding-left: 0;
}

.single-product-content__text ul li + li {
  margin-top: 0.8rem;
}

.single-product-content__text ul li::before {
  display: none;
}

.single-product-content__add-to-cart {
  padding-top: 2.4rem;
  display: flex;
  align-items: center;
}

.single-product-content__add-to-cart .price {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 4rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #3957d3;
  margin-right: 3.2rem;
}

/* Thumbnails Grid */
.thumbnails-grid-response .woocommerce-product-gallery__image img {
  width: 100%;
  height: 55rem;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 0.8rem;
}

.thumbnails-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.thumbnails-grid__item {
  width: 100%;
  height: 17rem;
}

.thumbnails-grid__btn {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.thumbnails-grid__btn:hover,
.thumbnails-grid__btn--active {
  opacity: 1;
}

.thumbnails-grid__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

/* Shop Table */
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  width: 100%;
  padding: 3rem 2rem;
  border-radius: 0.2rem;
  border: 1px solid #e8e9eb;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item {
  border-bottom: 1px solid rgba(51, 50, 56, 0.1);
}

.woocommerce-cart-form .shop_table .product-thumbnail {
  width: 10%;
  height: 12rem;
  padding-right: 2rem;
}

.woocommerce-cart-form .shop_table .product-thumbnail a {
  display: flex;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.woocommerce-cart-form .shop_table .product-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background: #fff;
  padding: 0;
  border: none;
  border-radius: 0.8rem;
}

.woocommerce-cart-form .shop_table .product-name {
  width: 50%;
  height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.woocommerce-cart-form .shop_table .product-price {
  width: 10%;
}

.woocommerce-cart-form .shop_table .product-price,
.woocommerce-cart-form .shop_table .product-price * {
  width: 10%;
  font-size: 1.6rem;
  font-weight: 500;
  color: #484e53;
  line-height: 1.5;
}

.woocommerce-cart-form .shop_table .product-quantity {
  width: 10%;
}

.woocommerce-cart-form .shop_table .product-subtotal {
  width: 20%;
}

.woocommerce-cart-form .shop_table .product-subtotal,
.woocommerce-cart-form .shop_table .product-subtotal * {
  font-size: 1.6rem;
  font-weight: 500;
  color: #484e53;
  line-height: 1.5;
  text-align: right;
}

.product-name-wrap__url {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 100%;
  color: var(--main-font-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.product-name-wrap__text {
  font-size: 1.4rem;
  line-height: 120%;
  color: #838192;
  max-width: 35rem;
}

.woocommerce .product-quantity .quantity .qty {
  background: #ffffff;
  border: 1px solid rgba(131, 129, 146, 0.2);
  border-radius: 0.8rem;
  padding: 2rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #838192;
  width: 10rem;
}

.shop_table__header {
  display: flex;
  border-bottom: 1px solid rgba(51, 50, 56, 0.1);
}

.shop_table__header > * {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #484e53;
  padding: 2rem 0;
}

.shop_table__header-product {
  width: 60%;
}

.shop_table__header-price {
  width: 10%;
}

.shop_table__header-quantity {
  width: 10%;
}

.shop_table__header-total {
  width: 20%;
  text-align: right;
}

.shop_table .product-remove {
  display: flex;
}

.shop_table .product-remove a.remove {
  font-weight: 400 !important;
  font-size: 1.2rem !important;
  line-height: 100% !important;
  color: #838192 !important;
  opacity: 0.6;
  text-align: left;
  width: unset;
  height: unset;
  border-radius: unset;
  background: transparent !important;
}

.cart-bottom {
  margin-top: 25px;
  margin-bottom: 35px;
}

.cart-bottom > * {
  display: flex;
  align-items: center;
}

.cart-bottom > * button {
  padding: 10px 18px !important;
}

.cart-bottom > * > * + * {
  margin-left: 25px;
}

@media screen and (min-width: 767px) {
  .lang-dropdown__has-children:hover .lang-dropdown__parent-url-icon {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
  }

  .lang-dropdown__drop-children {
    opacity: 0;
    pointer-events: none;
  }

  .lang-dropdown__has-children:hover .lang-dropdown__drop-children {
    opacity: 1;
    pointer-events: all;
  }

  .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: 1499px) {
  html {
    font-size: calc(2.5px + 7.5 * (100vw - 768px) / 1152);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10px + 11 * (100vw - 320px) / 447);
  }

  :root {
    --main-font-size: 1.4rem;
    --secondary-font-size: 1.4rem;
  }

  .section {
    overflow: hidden;
  }

  .container {
    padding: 0 2rem;
  }

  .inner-container {
    padding: 0 2rem;
  }

  .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;
  }

  .hide-on-mobile {
    display: none;
  }

  .show-on-mobile {
    display: block;
  }

  .btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .btn-wrap > * + * {
    margin-top: 1.6rem;
    margin-left: 0;
  }

  .btn {
    font-size: 1.3rem;
    height: 5rem;
    padding: 0 2rem;
  }

  .section-wrap > * {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-wrap > *:last-child {
    padding-bottom: 7rem;
  }

  .entry-content * {
    font-size: 1.4rem;
  }

  .title,
  .title * {
    font-size: 3rem;
  }

  .text,
  .text * {
    font-size: 1.4rem;
  }

  .image--left {
    padding-right: 0;
  }

  .grid--gap-medium {
    gap: 3.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);
  }

  .form__label {
    font-size: 1.4rem;
    line-height: 1;
    padding-bottom: 0.8rem;
  }

  .form__input {
    padding: 1.2rem;
    font-size: 1.3rem;
  }

  .form__radio > span + span {
    margin-top: 1rem;
  }

  .form__radio label span {
    padding: 1.5rem 2.5rem 1.5rem 4rem;
    font-size: 1.5rem;
  }

  .form__radio .wpcf7-list-item-label:before {
    width: 1.6rem;
    height: 1.6rem;
    left: 1.4rem;
  }

  .form__radio .wpcf7-list-item-label::after {
    left: 1.7rem;
  }

  .form__checkbox > span + span {
    margin-top: 1rem;
  }

  .form__checkbox label span {
    padding: 1.5rem 2.5rem 1.5rem 4rem;
    font-size: 1.5rem;
  }

  .form__checkbox .wpcf7-list-item-label:before {
    width: 1.6rem;
    height: 1.6rem;
    left: 1.4rem;
  }

  .form__checkbox .wpcf7-list-item-label::after {
    width: 1.6rem;
    height: 1.6rem;
    left: 1.4rem;
  }

  .form__simple-checkbox label span {
    font-size: 1.5rem;
    padding-left: 2.5rem;
  }

  .form__simple-checkbox > span + span {
    margin-top: 1rem;
  }

  .form__simple-checkbox .wpcf7-list-item-label:before {
    width: 1.6rem;
    height: 1.6rem;
    top: 0.1rem;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }

  .form__simple-checkbox .wpcf7-list-item-label::after {
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    top: 0.1rem;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }

  .modal-wrap--big .modal__close {
    top: -5rem;
    right: 0;
  }

  .modal__content {
    padding: 1rem;
  }

  .modal__close {
    top: 1rem;
    right: 1rem;
  }

  .hamburger {
    display: block;
    width: 3.5rem;
    height: 2rem;
    position: relative;
  }

  .hamburger div {
    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 div:nth-child(1) {
    top: 0;
  }

  .hamburger div:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .hamburger div:nth-child(3) {
    bottom: 0;
  }

  .hamburger--open > div:nth-child(1) {
    top: 1rem;
    right: 0rem;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .hamburger--open > div:nth-child(2) {
    opacity: 0;
  }

  .hamburger--open > div:nth-child(3) {
    top: 1rem;
    right: 0rem;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .logo img {
    width: 6rem;
    height: 6rem;
  }

  .header__top {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .header__bottom,
  .header__contacts {
    display: none;
  }

  .header__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__btns > * + * {
    margin-left: 2rem;
  }

  .menu--desktop {
    display: none;
  }

  .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: 1.5rem;
    font-weight: 400;
    padding: 1.1rem 0;
    line-height: 1;
    color: #1f2123;
  }

  .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;
  }

  .hero-slide {
    height: auto;
    padding: 5rem 0;
  }

  .text-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .text-image__image {
    width: 100%;
  }

  .text-image__content {
    width: 100%;
    padding-left: 0;
    padding-top: 2rem;
  }

  .text-image--reverse .text-image__content {
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .text-image__title {
    padding-bottom: 1rem;
  }

  .double-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .double-text__col-1 {
    width: 100%;
    padding-right: 0;
    padding-bottom: 3rem;
  }

  .double-text--reverse .double-text__col-1 {
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }

  .double-text__col-2 {
    width: 100%;
  }

  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__info {
    width: 100%;
    padding-right: 0;
    margin-bottom: 4rem;
  }

  .footer__menus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__menus-col {
    width: 100%;
  }

  .footer__menus-col + .footer__menus-col {
    margin-top: 4rem;
    margin-left: 0;
  }

  .store-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .store-header__filters {
    padding-top: 2rem;
  }

  .accordion__head {
    font-size: 1.4rem;
    padding: 1.5rem 5rem 1.5rem 2rem;
  }

  .accordion__plus {
    width: 1.4rem;
    height: 1.4rem;
    right: 1.5rem;
    top: 1.5rem;
  }

  .accordion__content {
    padding: 2rem 1.5rem 2rem;
  }

  .accordion__number {
    padding-right: 1rem;
  }

  .docs-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .document__title {
    font-size: 1.3rem;
    padding-bottom: 0.4rem;
  }

  .document__size {
    font-size: 1.2rem;
  }

  .project {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .project__content {
    width: 100%;
    padding-right: 0;
    padding-bottom: 6.5rem;
  }

  .project__slider {
    width: 100%;
  }

  .video {
    height: 28rem;
  }

  .video__play {
    width: 6rem;
    height: 6rem;
  }

  .video__play svg {
    width: 3.2rem;
    height: 3.2rem;
  }

  .slider-navigation__prev {
    left: 1rem;
  }

  .slider-navigation__next {
    right: 1rem;
  }

  .youtube-video iframe {
    height: 28rem;
  }

  .brief__title {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
  }

  .brief__question {
    padding-bottom: 1rem;
    font-size: 2.5rem;
  }

  .brief__question-text {
    padding-bottom: 2rem;
  }

  .brief__nav {
    padding-top: 2rem;
  }

  .brief__info {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  /* woocommerce single product */
  .single-product-content {
    flex-wrap: wrap;
  }

  .single-product-content__image {
    width: 100%;
  }

  .single-product-content__content {
    width: 100%;
    padding-left: 0;
    padding-top: 2rem;
  }

  .single-product-content__add-to-cart {
    flex-wrap: wrap;
  }

  .single-product-content__add-to-cart .price {
    margin-bottom: 2rem;
  }

  /* Thumbnails Grid */
  .thumbnails-grid-response .woocommerce-product-gallery__image img {
    height: 25rem;
  }

  .thumbnails-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .thumbnails-grid__item {
    width: 100%;
    height: 13.2rem;
  }

  /* Cart */
  .shop_table .product-thumbnail {
    width: 100%;
    padding: 0;
  }

  .shop_table .product-name {
    width: 100%;
    padding-top: 1rem;
  }

  .shop_table .product-price {
    width: 100%;
    padding: 2rem 0 1rem;
  }

  .shop_table .product-quantity {
    width: 100%;
  }

  .product-name-wrap,
  .product-name-wrap__url {
    font-size: 1.4rem;
  }

  .shop_table .product-price,
  .shop_table .product-price * {
    font-size: 2rem;
  }

  .shop_table .product-subtotal {
    width: 100%;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
  }

  .shop_table .product-subtotal *,
  .shop_table .product-subtotal::before {
    font-size: 2.5rem;
    font-weight: 500;
    color: #484e53;
    line-height: 1.5;
    text-align: right;
    font-family: var(--main-font);
  }

  .shop_table .product-subtotal::before {
    content: attr(data-title);
  }

  .shop_table .cart_item + .cart_item {
    border-top: 1px solid #e8e9eb;
  }

  .shop_table__header-product {
    width: 100%;
  }

  .shop_table__header > * {
    padding: 15px 0;
  }

  .shop_table__header-price {
    display: none;
  }

  .shop_table__header-quantity {
    display: none;
  }

  .shop_table__header-total {
    display: none;
  }
}

@media (max-width: 1500px) and (min-width: 1024px) {
  html {
    font-size: calc(3.5px + 7.5 * (100vw - 768px) / 1152);
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  html {
    font-size: calc(6.8px + 1.5 * (100vw - 768px) / 256);
  }
}

@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;
  }
}
