@charset "UTF-8";
/*========= VARIABLES ==========*/
:root {
  --primary: #e3000f;
  --second: #fff;
  --third: #1a1a18;
  --primary-hover: #1a1a18;
  --secondary-hover: #fff;
  --thirdly-hover: #e3000f;
  --head-primary: #1a1a18;
  --main-text-primary: #3c3c3c;
  --main-text-secondary: #808080;
  --head-secondary: #fff;
  --secondary-text: #eee;
  --background: #f9f9f9;
  --background-secondary: #fff;
  --background-thirdly: #1a1a18;
  --stroke: #e3000f;
  --stroke-secondary: #1a1a18;
  --stroke-thirdly: #e2e2e2;
  --font-family: "NotoSans", sans-serif; }

/*============= ALIGNES ===============*/
.alignwide {
  width: 100%; }

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px; }

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset; } }
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box; }

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  box-sizing: inherit; }
  *::-webkit-scrollbar {
    width: 6px;
    /* ширина для вертикального скролла */
    height: 2px;
    /* высота для горизонтального скролла */
    background-color: var(--stroke-thirdly); }
  *::-webkit-scrollbar-thumb {
    background-color: var(--stroke-thirdly);
    border-radius: 9em;
    box-shadow: inset 1px 1px 10px var(--primary); }

body {
  background-color: var(--background);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto; }

a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: all 0.3s ease-in; }
  a:hover {
    color: var(--primary); }

ul li {
  list-style-position: inside;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  margin-bottom: 10px; }
  ul li::marker {
    color: var(--primary); }

ol li {
  list-style-position: inside;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  margin-bottom: 10px; }

p {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary); }
  p:last-child {
    margin-bottom: 0; }

strong {
  font-weight: 700; }

h1.page-title {
  font-weight: 700;
  font-size: 64px;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--third);
  margin-top: 0;
  margin-bottom: 30px; }

h2,
h2.block-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--third);
  margin-top: 0;
  margin-bottom: 40px; }

h2 {
  margin-top: 40px;
  margin-bottom: 35px;
  text-transform: unset;
  text-align: left; }

h3 {
  margin-top: 35px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--third); }

h4 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--third); }

h5 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--third); }

h6 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: var(--third); }

h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0; }

.breadcrumbs {
  padding: 20px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--stroke-thirdly); }
  .breadcrumbs span {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: var(--main-text-primary);
    border-bottom: 1px solid transparent; }
    .breadcrumbs span.current-item {
      color: var(--primary);
      border-color: var(--primary); }
  .breadcrumbs a {
    color: var(--main-text-primary);
    border-bottom: 1px solid transparent; }
    .breadcrumbs a:hover {
      border-color: var(--main-text-primary); }

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px; }

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: transparent;
  border-radius: 8px;
  border: 1px solid var(--third);
  outline: none;
  padding: 20px 40px;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: var(--third);
  cursor: pointer;
  transition: all 0.3s ease-in; }
  .btn:hover {
    color: var(--second);
    background-color: var(--primary);
    border-color: var(--primary); }
  .btn.dark {
    background-color: var(--third);
    border-color: var(--third);
    color: var(--second); }
    .btn.dark:hover {
      color: var(--second);
      background-color: var(--primary);
      border-color: var(--primary); }
  .btn.white {
    background-color: var(--second);
    border-color: var(--second);
    color: var(--third); }
    .btn.white:hover {
      color: var(--second);
      background-color: var(--primary);
      border-color: var(--primary); }
  .btn.red {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--second); }
    .btn.red:hover {
      color: var(--second);
      background-color: var(--third);
      border-color: var(--third); }
  .btn.red-white {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--second); }
    .btn.red-white:hover {
      color: var(--third);
      background-color: var(--second);
      border-color: var(--second); }
  .btn.transparent {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--second); }
    .btn.transparent:hover {
      color: var(--second);
      background-color: var(--primary);
      border-color: var(--primary); }
  .btn:has(.arrow) {
    padding: 20px 40px 20px 80px;
    gap: 30px;
    position: relative; }
    .btn:has(.arrow) .arrow {
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--second);
      border-radius: 5px;
      transition: background-color .3s ease-in, left .3s ease-in;
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      text-align: center; }
      .btn:has(.arrow) .arrow svg,
      .btn:has(.arrow) .arrow img {
        width: 20px;
        height: 20px; }
      .btn:has(.arrow) .arrow svg {
        transition: fill .3s ease-in; }
    .btn:has(.arrow):hover {
      padding: 20px 80px 20px 40px; }
      .btn:has(.arrow):hover .arrow {
        background-color: var(--primary);
        left: calc(100% - 50px); }
        .btn:has(.arrow):hover .arrow svg path {
          fill: var(--second); }

#main,
#primary {
  min-height: 60vh; }

.b-margin {
  margin-top: 120px;
  margin-bottom: 120px; }

.b-margin-bot {
  margin-bottom: 120px; }

.b-padding {
  padding-top: 120px;
  padding-bottom: 120px; }

.b-padding-top {
  padding-top: 120px; }

.b-padding-bot {
  padding-bottom: 120px; }

.slider-nav-holder {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px; }

.slider-buttons-holder {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px; }

.slider-button {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid var(--third);
  outline: none;
  transition: background-color 0.3s ease-in, border-color .3s ease-in; }
  .slider-button.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none; }
  .slider-button svg path {
    transition: fill 0.3s ease-in; }
  .slider-button:hover {
    background-color: var(--third); }
    .slider-button:hover svg path {
      fill: var(--second); }
  .slider-button.dark {
    background-color: var(--third); }
    .slider-button.dark svg path {
      fill: var(--third); }
    .slider-button.dark:hover {
      border-color: var(--primary);
      background-color: var(--primary); }
      .slider-button.dark:hover svg path {
        fill: var(--second); }

.slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content !important;
  gap: 10px; }
  .slider-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    opacity: 1;
    background-color: var(--third);
    width: 10px;
    height: 2px;
    border-radius: 100px; }
    .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background-color: var(--primary); }

a.logo-holder {
  display: flex;
  max-width: 80px; }
  a.logo-holder img {
    width: 100%;
    object-fit: contain; }

.menu-holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 50px; }
  .menu-holder li {
    list-style-type: none;
    margin-bottom: 0; }
    .menu-holder li a {
      border-bottom: 1px solid transparent;
      color: var(--main-text-primary); }
      .menu-holder li a:hover {
        border-color: var(--main-text-primary); }
    .menu-holder li.active > a {
      border-color: var(--main-text-primary); }
    .menu-holder li.has-childs {
      position: relative; }
      .menu-holder li.has-childs > a {
        position: relative;
        padding-right: 10px; }
        .menu-holder li.has-childs > a:after {
          content: '';
          width: 6px;
          height: 6px;
          border-radius: 50%;
          background-color: var(--third);
          display: inline-block;
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          transition: right .3s ease-in; }
      .menu-holder li.has-childs:hover > a {
        padding-right: 0;
        padding-left: 10px;
        border-color: var(--main-text-primary); }
        .menu-holder li.has-childs:hover > a:after {
          right: calc(100% - 5px); }
      .menu-holder li.has-childs:hover > ul.sub-menu {
        opacity: 1;
        pointer-events: all; }
      .menu-holder li.has-childs > ul.sub-menu {
        position: absolute;
        left: -30px;
        top: 100%;
        border-radius: 0 0 8px 8px;
        padding: 15px 30px;
        width: 330px;
        background-color: var(--second);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        opacity: 0;
        transition: opacity .3s ease-in;
        pointer-events: none; }
        .menu-holder li.has-childs > ul.sub-menu li {
          border-bottom: 1px solid var(--stroke-thirdly);
          width: 100%; }
          .menu-holder li.has-childs > ul.sub-menu li:last-child {
            border: none; }
          .menu-holder li.has-childs > ul.sub-menu li a {
            display: block;
            padding: 15px 0;
            font-weight: 400;
            font-size: 16px;
            line-height: 120%;
            color: var(--main-text-primary) !important;
            border: none; }
            .menu-holder li.has-childs > ul.sub-menu li a:hover {
              color: var(--primary) !important; }

.soc-holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 30px; }
  .soc-holder.white .soc {
    background-color: var(--second); }
    .soc-holder.white .soc:hover {
      background-color: var(--primary);
      border-color: var(--primary); }
      .soc-holder.white .soc:hover svg path {
        fill: var(--second); }
  .soc-holder .soc {
    width: 60px;
    height: 60px;
    border: 1px solid var(--stroke-thirdly);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .soc-holder .soc svg,
    .soc-holder .soc img {
      width: 36px;
      height: 36px;
      object-fit: contain; }
    .soc-holder .soc svg path {
      transition: fill .3s ease-in; }
    .soc-holder .soc:hover {
      background-color: var(--primary);
      border-color: var(--primary); }
      .soc-holder .soc:hover svg path {
        fill: var(--second); }
      .soc-holder .soc:hover img {
        filter: brightness(10); }

.phone,
.email {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--third); }
  .phone:hover,
  .email:hover {
    color: var(--primary); }

.grampus {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-text-primary);
  margin: 0 auto; }
  .grampus__text {
    margin-bottom: 0;
    color: inherit; }
  .grampus .grampus__img {
    width: 111px;
    height: 17px;
    mask-image: url("../images/gmask.png");
    mask-origin: border-box;
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--main-text-primary);
    position: relative;
    cursor: pointer;
    display: inline-flex;
    vertical-align: sub;
    transition: background-color .3s ease-in; }
    .grampus .grampus__img:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      transform: translateX(100%);
      transition: transform .7s ease-in;
      background: linear-gradient(90deg, #fe6604 10%, #ee0a76 30%, #ee0a76 60%, #fe6604 101%) repeat-x 0 0;
      background-size: 100px;
      animation-duration: 5s;
      animation-name: slideUp;
      animation-iteration-count: infinite;
      animation-delay: 3s; }
  .grampus:hover {
    color: var(--primary); }
    .grampus:hover .grampus__img:before {
      transform: translateX(0);
      animation: unset; }

@keyframes slideUp {
  0% {
    transform: translateX(-100%); }
  50% {
    transform: translateX(0); }
  100% {
    transform: translateX(100%); } }
.service-card {
  width: 100%;
  display: grid;
  grid-template-columns: 15fr 16fr;
  align-items: center;
  border-bottom: 1px solid var(--stroke-thirdly);
  transition: background-color .3s ease-in; }
  .service-card.hidden {
    display: none; }
  .service-card:first-child {
    border-top: 1px solid var(--stroke-thirdly); }
  .service-card__left, .service-card__right {
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
    gap: 50px;
    display: flex;
    flex-direction: row;
    align-items: center; }
  .service-card__left {
    justify-content: flex-start;
    padding-left: 25px;
    padding-right: 50px;
    border-right: 1px solid var(--stroke-thirdly);
    height: 100%; }
  .service-card__right {
    justify-content: space-between;
    padding-right: 50px;
    padding-left: 50px; }
  .service-card__image {
    border-radius: 8px;
    max-width: 260px;
    height: auto;
    aspect-ratio: 26 / 12;
    object-fit: cover; }
  .service-card__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%; }
    .service-card__info-top {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 15px; }
  .service-card__tag {
    border: 1px solid var(--stroke-thirdly);
    border-radius: 3px;
    padding: 8px 15px;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    line-height: 145%;
    color: var(--third); }
    .service-card__tag:nth-child(even) {
      background: var(--second); }
  .service-card__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: var(--third);
    margin-top: 0;
    margin-bottom: 0; }
  .service-card__pseudo-btn {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--third);
    flex-shrink: 0;
    transition: background-color .3s ease-in; }
    .service-card__pseudo-btn svg {
      width: 36px;
      height: 36px;
      object-fit: contain; }
      .service-card__pseudo-btn svg path {
        fill: var(--second); }
  .service-card:hover {
    background-color: var(--second); }
    .service-card:hover .service-card__pseudo-btn {
      background-color: var(--primary); }

.projects,
.services {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start; }

.archive-loadmore {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 35px 0;
  border: none;
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid var(--stroke-thirdly);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--third);
  transition: color .3s ease-in, background-color .3s ease-in;
  cursor: pointer; }
  .archive-loadmore svg {
    width: 35px;
    height: 35px;
    object-fit: contain; }
    .archive-loadmore svg path {
      fill: var(--third);
      transition: fill .3s ease-in; }
  .archive-loadmore:hover {
    background-color: var(--second);
    color: var(--primary); }
    .archive-loadmore:hover svg path {
      fill: var(--primary); }

.project-card {
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 3fr 3fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--stroke-thirdly);
  transition: background-color .3s ease-in; }
  .project-card.hidden {
    display: none; }
  .project-card:first-child {
    border-top: 1px solid var(--stroke-thirdly); }
  .project-card__column {
    padding: 40px 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px solid var(--stroke-thirdly); }
    .project-card__column:last-child {
      border-right: unset; }
  .project-card__date {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    margin-bottom: 25px; }
    .project-card__date:after {
      content: '';
      position: absolute;
      right: -15px;
      top: -5px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--primary); }
  .project-card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: var(--third); }
  .project-card__attribute {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; }
    .project-card__attribute-title {
      font-weight: 400;
      font-size: 16px;
      line-height: 140%;
      color: var(--main-text-secondary);
      margin-bottom: 25px; }
    .project-card__attribute-value {
      font-weight: 700;
      font-size: 20px;
      line-height: 120%;
      color: var(--third); }
      .project-card__attribute-value sup {
        font-weight: inherit;
        font-size: 12px; }
  .project-card__pseudo-btn {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--third);
    flex-shrink: 0;
    transition: background-color .3s ease-in; }
    .project-card__pseudo-btn svg {
      width: 36px;
      height: 36px;
      object-fit: contain; }
      .project-card__pseudo-btn svg path {
        fill: var(--second); }
  .project-card:hover {
    background-color: var(--second); }
    .project-card:hover .project-card__pseudo-btn {
      background-color: var(--primary); }

.project-card-large {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 180px 50px 50px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .project-card-large__bg {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(26, 26, 24, 0.7);
    background-blend-mode: multiply;
    pointer-events: none;
    transition: transform .3s ease-in; }
  .project-card-large__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%; }
  .project-card-large__bot {
    width: 100%;
    display: grid;
    grid-template-columns: 4fr 2fr;
    padding-top: 30px; }
  .project-card-large__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--second); }
  .project-card-large__date {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--secondary-text);
    margin-bottom: 25px; }
    .project-card-large__date:after {
      content: '';
      position: absolute;
      right: -15px;
      top: -5px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--primary); }
  .project-card-large__attributes {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%; }
  .project-card-large__attribute {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: var(--second);
    padding-bottom: 25px;
    width: 100%;
    padding-left: 10px; }
    .project-card-large__attribute sup {
      font-weight: inherit;
      font-size: 12px; }
    .project-card-large__attribute + .project-card-large__attribute {
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.2); }
    .project-card-large__attribute:last-child {
      padding-bottom: 0; }
  .project-card-large:hover .project-card-large__bg {
    transform: scale(1.1); }

.form-v2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0; }
  .form-v2 textarea,
  .form-v2 input[type=text],
  .form-v2 input[type=tel],
  .form-v2 input[type=number],
  .form-v2 input[type=email] {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-secondary);
    border-bottom: 1px solid var(--stroke-thirdly);
    padding: 19px 20px; }
    .form-v2 textarea:first-child,
    .form-v2 input[type=text]:first-child,
    .form-v2 input[type=tel]:first-child,
    .form-v2 input[type=number]:first-child,
    .form-v2 input[type=email]:first-child {
      border-top: 1px solid var(--stroke-thirdly); }
    .form-v2 textarea.error,
    .form-v2 input[type=text].error,
    .form-v2 input[type=tel].error,
    .form-v2 input[type=number].error,
    .form-v2 input[type=email].error {
      border-color: var(--primary); }
  .form-v2 textarea {
    border-top: unset;
    height: 100px;
    resize: none; }
  .form-v2 .confirm {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-secondary);
    position: relative;
    cursor: pointer; }
    .form-v2 .confirm input[type=checkbox] {
      width: 1px;
      height: 1px;
      position: absolute;
      left: 0;
      top: 0; }
      .form-v2 .confirm input[type=checkbox]:checked + span:before {
        background-color: var(--primary); }
      .form-v2 .confirm input[type=checkbox].error + span {
        color: var(--primary); }
    .form-v2 .confirm span:before {
      box-sizing: border-box;
      content: '';
      width: 14px;
      height: 14px;
      border-radius: 2px;
      display: inline-block;
      background-color: var(--second);
      border: 2px solid var(--second);
      box-shadow: 0 0 0 1px var(--primary);
      margin-right: 10px; }
    .form-v2 .confirm a,
    .form-v2 .confirm span {
      color: inherit;
      font-size: inherit;
      font-weight: inherit; }
    .form-v2 .confirm a {
      text-decoration: underline; }
      .form-v2 .confirm a:hover {
        color: var(--primary); }
  .form-v2 .form-bot {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    width: 100%; }
  .form-v2 .btn {
    flex-shrink: 0; }

.reviews .swiper-wrapper {
  align-items: stretch; }

.review-card {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  height: auto !important; }
  .review-card--image {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    outline: none;
    height: fit-content; }
    .review-card--image:after {
      content: '';
      position: absolute;
      z-index: 2;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      transition: opacity .3s ease-in;
      opacity: 0;
      pointer-events: none; }
    .review-card--image .hover-btn {
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 8px;
      background-color: var(--second);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 3;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      transition: opacity .3s ease-in;
      opacity: 0;
      pointer-events: none; }
    .review-card--image__image {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .review-card--image:hover:after,
    .review-card--image:hover .hover-btn {
      opacity: 1; }
  .review-card--text {
    border: 1px solid var(--stroke-thirdly);
    border-radius: 8px;
    padding: 20px;
    background-color: var(--second); }
    .review-card--text__date {
      font-style: italic;
      font-weight: 400;
      font-size: 13px;
      line-height: 145%;
      color: var(--main-text-secondary);
      margin-bottom: 10px; }
    .review-card--text__title {
      font-weight: 700;
      font-size: 16px;
      line-height: 120%;
      color: var(--third); }
    .review-card--text__duty {
      margin-top: 5px;
      font-style: italic;
      font-weight: 400;
      font-size: 13px;
      line-height: 145%;
      color: var(--main-text-secondary); }
    .review-card--text__text {
      font-weight: 400;
      font-size: 16px;
      line-height: 140%;
      color: var(--main-text-primary);
      margin-top: 30px;
      margin-bottom: 30px; }
      .review-card--text__text span {
        color: inherit;
        font-weight: inherit;
        font-size: inherit; }
    .review-card--text .readmore {
      outline: none;
      border: none;
      background-color: transparent;
      font-weight: 400;
      font-size: 16px;
      line-height: 120%;
      color: var(--main-text-primary);
      cursor: pointer;
      border-bottom: 1px solid transparent;
      transition: border-color .3s ease-in;
      margin-top: 5px; }
      .review-card--text .readmore:hover {
        border-color: var(--main-text-primary); }
    .review-card--text__gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 10px;
      width: 100%;
      margin-top: auto; }
    .review-card--text__image-holder {
      position: relative;
      z-index: 1;
      border-radius: 8px;
      overflow: hidden;
      outline: none;
      display: flex; }
      .review-card--text__image-holder:after {
        content: '';
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        transition: opacity .3s ease-in;
        opacity: 0;
        pointer-events: none; }
      .review-card--text__image-holder .hover-btn {
        position: absolute;
        z-index: 3;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: opacity .3s ease-in;
        opacity: 0;
        pointer-events: none; }
        .review-card--text__image-holder .hover-btn svg path {
          fill: var(--second); }
      .review-card--text__image-holder:hover:after,
      .review-card--text__image-holder:hover .hover-btn {
        opacity: 1; }
    .review-card--text__image {
      width: 100%;
      height: auto;
      object-fit: contain; }

.archive-review .archive-holder {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 30px; }
.archive-review .reviews-holder {
  width: 100%; }
.archive-review .reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  width: 100%; }
.archive-review .banner {
  border: 1px solid var(--stroke-thirdly);
  border-radius: 8px;
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: fit-content;
  background-color: var(--second);
  position: sticky;
  top: 30px; }
  .archive-review .banner__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: var(--third);
    margin-bottom: 15px; }
  .archive-review .banner__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    margin-bottom: 30px; }

.product-card {
  width: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  border: 1px solid var(--stroke-thirdly);
  border-radius: 8px;
  padding: 16px 15px;
  height: auto !important; }
  .product-card__image-holder {
    display: flex;
    overflow: hidden;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px; }
  .product-card__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 33 / 40;
    transition: transform .3s ease-in; }
  .product-card__stock {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    margin-bottom: 15px; }
    .product-card__stock span {
      color: var(--primary);
      font-size: inherit;
      font-weight: inherit; }
  .product-card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: var(--third);
    margin-bottom: 15px; }
  .product-card__price {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto; }
    .product-card__price-display {
      font-weight: 400;
      font-size: 20px;
      line-height: 120%;
      text-transform: uppercase;
      color: var(--third); }
    .product-card__price-old {
      font-weight: 400;
      font-size: 16px;
      line-height: 140%;
      text-decoration: line-through;
      color: var(--main-text-secondary); }
  .product-card:hover .product-card__image {
    transform: scale(1.1); }

/*====== NAVIGATION ===========*/
.custom-pagination-holder {
  width: 100%;
  max-width: 580px;
  margin: 40px auto 60px; }
  .custom-pagination-holder .custom-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; }
  .custom-pagination-holder .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; }
  .custom-pagination-holder .page-numbers {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--main-text-primary);
    border-bottom: 1px solid transparent; }
    .custom-pagination-holder .page-numbers.current, .custom-pagination-holder .page-numbers:hover {
      color: var(--primary);
      border-color: var(--primary); }
  .custom-pagination-holder .prev,
  .custom-pagination-holder .next {
    width: 60px;
    height: 60px;
    border: 1px solid var(--third);
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease-in; }
    .custom-pagination-holder .prev svg path,
    .custom-pagination-holder .next svg path {
      transition: fill .3s ease-in; }
    .custom-pagination-holder .prev.disabled,
    .custom-pagination-holder .next.disabled {
      pointer-events: none;
      opacity: 0.5; }
    .custom-pagination-holder .prev:hover,
    .custom-pagination-holder .next:hover {
      background-color: var(--third); }
      .custom-pagination-holder .prev:hover svg path,
      .custom-pagination-holder .next:hover svg path {
        fill: var(--second); }

/*========== ERROR PAGE ===========*/
#main.error-page .error-info {
  background-image: url("../images/404.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; }
#main.error-page .error-holder {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; }
#main.error-page h1.error {
  font-weight: 700;
  font-size: 64px;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--second);
  margin-bottom: 15px;
  margin-top: 0; }
#main.error-page p {
  max-width: 480px;
  color: var(--second); }
#main.error-page .btn {
  margin: 30px auto 0; }

/*============ HEADER =================*/
#header {
  border-bottom: 1px solid var(--stroke-thirdly);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  background: var(--second);
  z-index: 10;
  position: sticky;
  top: 0;
  width: 100%; }
  #header.is-front {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    transition: background-color .3s ease-in; }
    #header.is-front.painted {
      background-color: var(--third); }
    #header.is-front .logo-block,
    #header.is-front .menu-block,
    #header.is-front .contacts-block,
    #header.is-front .soc-block {
      border-color: inherit; }
    #header.is-front .logo-holder img {
      filter: brightness(0) invert(1); }
    #header.is-front .soc-holder .soc {
      border-color: rgba(255, 255, 255, 0.2); }
      #header.is-front .soc-holder .soc:hover {
        border-color: var(--primary); }
    #header.is-front .menu-holder li.has-childs > a:after {
      background-color: var(--secondary-text); }
    #header.is-front .menu-holder li.has-childs:hover > a {
      border-color: var(--secondary-text); }
    #header.is-front .menu-holder li a {
      color: var(--secondary-text); }
      #header.is-front .menu-holder li a:hover {
        border-color: var(--secondary-text); }
    #header.is-front .phone,
    #header.is-front .email {
      color: var(--secondary-text); }
      #header.is-front .phone svg path,
      #header.is-front .email svg path {
        fill: var(--secondary-text); }
      #header.is-front .phone:hover,
      #header.is-front .email:hover {
        color: var(--primary); }
    #header.is-front .burger.open_menu span {
      background-color: var(--secondary-text); }
  #header .burger-block {
    display: none;
    justify-content: center;
    align-items: center; }
  #header .logo-block {
    padding: 20px 30px;
    border-right: 1px solid var(--stroke-thirdly); }
  #header .menu-block {
    border-right: 1px solid var(--stroke-thirdly);
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0 20px;
    flex-grow: 1; }
    #header .menu-block .menu-holder {
      align-items: stretch; }
      #header .menu-block .menu-holder li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start; }
  #header .contacts-block {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--stroke-thirdly);
    padding: 20px 30px;
    flex-grow: 1;
    flex-wrap: wrap;
    max-width: 430px; }
  #header .soc-block {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    padding: 30px; }
  #header .phone,
  #header .email {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px; }
    #header .phone svg,
    #header .phone img,
    #header .email svg,
    #header .email img {
      width: 25px;
      height: 25px;
      object-fit: contain; }

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0; }
  #header .burger.open_menu span {
    background-color: #D12D26;
    width: 30px;
    height: 4px;
    transition: all 0.3s ease-in;
    pointer-events: none; }
#header .burger.open_menu.clicked {
  background-color: #D12D26; }
  #header .burger.open_menu.clicked span {
    background-color: #fff; }
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--background-thirdly);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden; }
  #header #mobile-mnu #close-mnu {
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    display: block;
    color: var(--second); }
  #header #mobile-mnu .menu-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px; }
    #header #mobile-mnu .menu-holder li a {
      color: var(--secondary-text); }
  #header #mobile-mnu .phones,
  #header #mobile-mnu .emails {
    display: block;
    margin-bottom: 20px; }
  #header #mobile-mnu .phone,
  #header #mobile-mnu .email {
    color: var(--secondary-text); }
  #header #mobile-mnu .btn {
    display: block;
    margin-top: auto;
    width: 100%; }
#header #mobile-mnu.opened {
  transform: translateX(0); }

/*=========== SINGLE PRODUCT ===========*/
#main.single-product .product-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px; }
  #main.single-product .product-top > .side {
    flex-grow: 1;
    width: 48%; }
  #main.single-product .product-top .product-gallery {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    position: sticky;
    top: 30px; }
    #main.single-product .product-top .product-gallery__bot, #main.single-product .product-top .product-gallery__top {
      width: 100%; }
    #main.single-product .product-top .product-gallery__bot {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      gap: 40px;
      margin-top: 20px; }
    #main.single-product .product-top .product-gallery__thumbs, #main.single-product .product-top .product-gallery__main {
      overflow: hidden; }
    #main.single-product .product-top .product-gallery__main {
      border-radius: 10px; }
    #main.single-product .product-top .product-gallery__image-holder {
      display: flex;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 10px; }
    #main.single-product .product-top .product-gallery__image {
      width: 100%;
      height: auto;
      object-fit: cover;
      aspect-ratio: 75 / 49; }
    #main.single-product .product-top .product-gallery__thumbnail {
      box-sizing: border-box;
      width: 100%;
      height: auto;
      object-fit: cover;
      aspect-ratio: 1 / 1;
      border-radius: 10px;
      cursor: pointer; }
  #main.single-product .product-top .product-data {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px; }
  #main.single-product .product-top .product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px; }
  #main.single-product .product-top .product-stock {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary); }
    #main.single-product .product-top .product-stock span {
      font-size: inherit;
      font-weight: inherit;
      color: var(--primary); }
  #main.single-product .product-top .product-price {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px; }
    #main.single-product .product-top .product-price__display {
      font-weight: 700;
      font-size: 30px;
      line-height: 120%;
      text-transform: uppercase;
      color: var(--third); }
    #main.single-product .product-top .product-price__old {
      font-weight: 400;
      font-size: 16px;
      line-height: 140%;
      text-decoration: line-through;
      color: var(--main-text-secondary); }
  #main.single-product .product-top .product-excerpt {
    width: 100%; }
#main.single-product .product-action-button {
  margin-top: 15px;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text-primary);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease-in;
  display: block; }
  #main.single-product .product-action-button:hover {
    border-color: var(--main-text-primary); }
#main.single-product .single-product-block {
  margin: 40px 0;
  border: 1px solid var(--stroke-thirdly);
  border-radius: 8px;
  padding: 30px;
  background-color: var(--second); }
  #main.single-product .single-product-block:last-child {
    margin-bottom: 0; }
#main.single-product .product-attributes {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px; }
#main.single-product .product-attribute {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5px; }
  #main.single-product .product-attribute__name {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-secondary); }
  #main.single-product .product-attribute__separator {
    flex-grow: 1;
    border-bottom: 1px dashed var(--stroke-thirdly); }
  #main.single-product .product-attribute__value {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    text-align: right; }
#main.single-product .warranty-block {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px; }
  #main.single-product .warranty-block__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0; }
    #main.single-product .warranty-block__icon svg {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  #main.single-product .warranty-block__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: var(--third); }
  #main.single-product .warranty-block__excerpt {
    margin-top: 20px;
    margin-bottom: 5px; }
#main.single-product .product-bot {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 30px; }
  #main.single-product .product-bot .single-product-block {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px 10px;
    margin: 0; }
#main.single-product .single-product-bot-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start; }
  #main.single-product .single-product-bot-block__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--third);
    margin-bottom: 30px; }
  #main.single-product .single-product-bot-block__content {
    width: 100%; }
#main.single-product .product-banner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 !important;
  position: sticky;
  top: 30px; }
  #main.single-product .product-banner__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: var(--third);
    margin-bottom: 10px; }
  #main.single-product .product-banner__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    margin-bottom: 30px; }
  #main.single-product .product-banner .form-v2 .form-bot {
    flex-direction: column;
    gap: 15px; }
  #main.single-product .product-banner .form-v2 .btn {
    width: 100%; }

/*========== SINGLE PROJECT ==========*/
#main.single-project .single-project__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 3 / 1;
  object-fit: cover; }

/*============ FOOTER ===============*/
#footer .top-line {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px solid var(--stroke-thirdly); }
#footer .logo-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start; }
#footer a.logo-holder {
  max-width: 215px;
  margin-bottom: 30px; }
#footer .menu-block__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--third);
  margin-bottom: 15px; }
#footer .menu-block .menu-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start; }
#footer .mid-line {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-top: 1px solid var(--stroke-thirdly); }
#footer .bordered-block,
#footer .soc-block {
  padding: 25px 30px; }
#footer .bordered-block {
  border-right: 1px solid var(--stroke-thirdly);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-grow: 1; }
  #footer .bordered-block.addresses {
    max-width: 400px; }
  #footer .bordered-block__title {
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    line-height: 145%;
    color: var(--main-text-secondary);
    margin-bottom: 5px; }
#footer .worktime,
#footer .address {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--third); }
#footer .worktime * {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 0; }
#footer .soc-block {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 30px; }
#footer .bot-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 30px;
  border-top: 1px solid var(--stroke-thirdly); }
#footer .privacy,
#footer .copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-secondary); }
#footer .privacy {
  text-decoration: underline;
  text-decoration-skip-ink: none; }
  #footer .privacy:hover {
    color: var(--primary); }

/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none; }
.wpcf7 .ajax-loader {
  display: none; }
.wpcf7 .wpcf7-spinner {
  display: none; }

.theme-modal {
  display: none; }
  .theme-modal.fancybox__content {
    width: 620px;
    border: 1px solid var(--stroke-thirdly);
    border-radius: 8px;
    padding: 30px; }
    .theme-modal.fancybox__content > .f-button.is-close-btn {
      background-color: transparent;
      top: 10px !important;
      right: 10px !important; }
      .theme-modal.fancybox__content > .f-button.is-close-btn svg {
        width: 20px;
        height: 20px;
        object-fit: contain; }
        .theme-modal.fancybox__content > .f-button.is-close-btn svg path {
          stroke: var(--third);
          transition: stroke .3s ease-in; }
      .theme-modal.fancybox__content > .f-button.is-close-btn:hover svg path {
        stroke: var(--primary); }
  .theme-modal .title {
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    text-transform: uppercase;
    text-align: center;
    color: var(--third);
    margin-bottom: 15px; }
  .theme-modal .subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: var(--main-text-primary);
    margin-bottom: 30px; }
  .theme-modal .form-v2 .form-bot {
    flex-direction: column; }
  .theme-modal .btn {
    width: 100%; }
  .theme-modal .buttons {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    width: 100%; }

[form-send][disabled] {
  opacity: 0.5; }

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1800px) {
  /*=========== HEADER =========*/
  #header .email,
  #header .phone {
    font-size: 18px; } }
@media (max-width: 1600px) {
  /*=========== HEADER =========*/
  #header .menu-holder,
  #header .contacts-block {
    gap: 20px; }
  #header .btn {
    display: none; }

  /*=========== FOOTER =========*/
  #footer .phone,
  #footer .email,
  #footer .worktime,
  #footer .address {
    font-size: 18px; }
  #footer .phones-block,
  #footer .emails-block {
    flex-shrink: 0; } }
@media (max-width: 1440px) {
  /*========= BASE CONFIG ==========*/
  h1.page-title {
    font-size: 50px; }

  .service-card__left, .service-card__right {
    gap: 30px;
    padding: 25px; }

  .project-card__column {
    padding: 25px; }

  .project-card-large {
    padding: 100px 25px 40px; }

  /*=========== HEADER ============*/
  #header .logo-block,
  #header .contacts-block,
  #header .burger-block,
  #header .soc-block {
    padding: 5px 20px; }
  #header .email,
  #header .phone {
    font-size: 18px; }

  /*========= FOOTER ==========*/
  #footer .btn {
    display: none; } }
@media (max-width: 1240px) {
  /*========== BASE CONFIG ===========*/
  .service-card__image {
    max-width: 200px; }

  /*============ HEADER =============*/
  #header .soc-block {
    display: none; }
  #header .contacts-block {
    gap: 10px 15px;
    justify-content: center; }

  /*========= ARCHIVE REVIEW =========*/
  .archive-review .archive-holder {
    grid-gap: 20px; }
  .archive-review .reviews {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px; }

  /*========== SINGLE PRODUCT =========*/
  #main.single-product .product-bot .single-product-block {
    padding: 30px; }

  /*========= FOOTER ============*/
  #footer .bordered-block {
    padding: 20px; }
  #footer .worktime-block {
    flex-shrink: 0; } }
@media (max-width: 1025px) {
  /*========== BASE CONFIG ===========*/
  h1.page-title {
    font-size: 40px; }

  h2,
  h2.block-title {
    font-size: 35px; }

  .b-margin {
    margin-top: 60px;
    margin-bottom: 60px; }

  .b-margin-bot {
    margin-bottom: 60px; }

  .b-padding {
    padding-top: 60px;
    padding-bottom: 60px; }

  .b-padding-top {
    padding-top: 60px; }

  .b-padding-bot {
    padding-bottom: 60px; }

  .service-card {
    grid-template-columns: 1fr; }
    .service-card__left, .service-card__right {
      gap: 20px;
      width: 100%; }
    .service-card__left {
      border-right: unset;
      padding-bottom: 0; }
    .service-card__title {
      font-size: 20px; }
    .service-card__image {
      max-width: 260px; }

  .project-card__date, .project-card__attribute-title {
    margin-bottom: 15px; }

  .project-card-large__bot {
    grid-template-columns: 5fr 4fr; }

  /*=========== HEADER ===========*/
  #header .menu-block {
    display: none; }
  #header .burger-block,
  #header .burger.open_menu {
    display: flex; }

  /*========= ARCHIVE REVIEW =========*/
  .archive-review .archive-holder {
    grid-template-columns: 1fr; }
  .archive-review .banner {
    position: initial; }
  .archive-review .reviews {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px; }

  /*========= SINGLE PRODUCT =========*/
  #main.single-product .product-top {
    flex-direction: column; }
    #main.single-product .product-top > .side {
      width: 100%; }
  #main.single-product .product-bot {
    grid-template-columns: 1fr; }

  /*========= FOOTER ===========*/
  #footer .worktime-block {
    display: none; } }
@media (max-width: 769px) {
  /*=========== BASE CONFIG ==========*/
  h1.page-title {
    font-size: 35px; }

  h2,
  h2.block-title {
    font-size: 30px; }

  h3 {
    font-size: 25px; }

  h4 {
    font-size: 22px; }

  .btn {
    padding: 15px 20px; }
    .btn:has(.arrow) {
      padding: 15px 20px 15px 60px; }
      .btn:has(.arrow) .arrow {
        width: 30px;
        height: 30px; }
      .btn:has(.arrow):hover {
        padding: 15px 60px 15px 20px; }
        .btn:has(.arrow):hover .arrow {
          left: calc(100% - 40px); }

  .slider-button {
    width: 45px;
    height: 45px; }
    .slider-button svg {
      width: 30px;
      height: 30px;
      object-fit: contain; }

  .service-card__image {
    max-width: 200px; }

  .project-card {
    grid-template-columns: 2fr 2fr 1fr; }
    .project-card__info {
      grid-column: span 3;
      border-right: unset; }

  .project-card-large__top {
    flex-wrap: wrap; }
  .project-card-large__bot {
    grid-template-columns: 1fr;
    gap: 30px; }
  .project-card-large__attribute {
    padding-left: 0;
    padding-bottom: 10px; }
    .project-card-large__attribute + .project-card-large__attribute {
      padding-top: 10px; }

  .form-v2 .form-bot {
    flex-wrap: wrap; }

  /*========= NAVIGATION =========*/
  .custom-pagination-holder .prev,
  .custom-pagination-holder .next {
    width: 45px;
    height: 45px; }
    .custom-pagination-holder .prev svg,
    .custom-pagination-holder .next svg {
      width: 30px;
      height: 30px;
      object-fit: contain; }

  /*========= ERROR PAGE ==========*/
  #main.error-page h1.error {
    font-size: 40px; }

  /*=========== HEADER ===========*/
  #header a.logo-holder {
    max-width: 60px; }
  #header .emails {
    display: none; }

  /*========= ARCHIVE REVIEW =========*/
  .archive-review .reviews {
    grid-template-columns: repeat(2, 1fr); }

  /*======= SINGLE PRODUCT ==========*/
  #main.single-product .product-top .product-gallery__bot {
    gap: 15px; }
  #main.single-product .product-bot .single-product-block {
    gap: 30px 10px; }
  #main.single-product .single-product-bot-block__title {
    font-size: 25px;
    margin-bottom: 20px; }

  /*========= FOOTER ========*/
  #footer .top-line {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start; }
    #footer .top-line .bordered-block {
      width: 100%; }
  #footer .menu-block .menu-holder {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap; }
  #footer .mid-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr); }
  #footer .emails-block {
    justify-content: flex-end;
    align-items: flex-end; }
  #footer .bot-line {
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center; } }
@media (max-width: 498px) {
  /*=========== BASE CONFIG ===========*/
  h1.page-title {
    font-size: 30px; }

  h2,
  h2.block-title {
    font-size: 30px; }

  .service-card__right, .service-card__left {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; }
  .service-card__image {
    max-width: 100%;
    width: 100%; }
  .service-card__pseudo-btn {
    width: 100%;
    margin-top: 10px; }
    .service-card__pseudo-btn .mobile-text {
      color: var(--second);
      display: inline !important; }

  .project-card {
    grid-template-columns: repeat(2, 1fr); }
    .project-card__info {
      grid-column: span 2; }
    .project-card__area {
      border-right: unset; }
    .project-card__btn {
      display: none; }

  .project-card-large__title {
    font-size: 25px; }
  .project-card-large__attribute {
    font-size: 16px; }

  .archive-loadmore {
    padding: 20px 0; }

  .form-v2 input[type=text],
  .form-v2 input[type=tel],
  .form-v2 input[type=email],
  .form-v2 input[type=number] {
    padding: 15px; }
  .form-v2 .btn {
    width: 100%; }

  .soc-holder {
    gap: 10px 20px; }
    .soc-holder .soc {
      width: 50px;
      height: 50px; }

  .slider-nav-holder {
    margin-top: 20px; }

  /*========= ERROR PAGE ==========*/
  #main.error-page h1.error {
    font-size: 35px; }

  /*=========== HEADER ===========*/
  #header .logo-block,
  #header .burger-block,
  #header .contacts-block {
    padding: 5px; }
  #header .phone img,
  #header .phone svg {
    display: none; }

  /*========= ARCHIVE REVIEW =========*/
  .archive-review .reviews {
    grid-template-columns: 1fr; }

  /*======== SINGLE PRODUCT =========*/
  #main.single-product .single-product-block {
    padding: 20px; }
  #main.single-product .product-bot .single-product-block {
    padding: 20px; }
  #main.single-product .single-product-bot-block__title {
    font-size: 20px; }

  /*========== FOOTER ============*/
  #footer .soc-block,
  #footer .bordered-block {
    border: none;
    padding: 15px 20px; }
  #footer .emails-block,
  #footer .soc-block {
    justify-content: flex-start;
    align-items: flex-start; }
  #footer .mid-line {
    grid-template-columns: 1fr; }

  /*============ THEME MODAL ===========*/
  .theme-modal.fancybox__content {
    padding: 20px; }
    .theme-modal.fancybox__content > .f-button.is-close-btn {
      top: 5px !important;
      right: 5px !important; }
  .theme-modal .title {
    font-size: 25px; } }
@media (max-width: 375px) {
  /*========= BASE CONFIG ==========*/
  h1.page-title {
    font-size: 25px; }

  h2.block-title {
    font-size: 25px; }

  .service-card__left, .service-card__right {
    padding: 15px; }
  .service-card__left {
    padding-bottom: 0; }

  .project-card__column {
    padding: 15px; }

  .project-card-large {
    padding: 60px 15px 20px; }

  /*======= SINGLE PRODUCT =========*/
  #main.single-product .product-data .btn {
    width: 100%; }
  #main.single-product .product-attribute__name, #main.single-product .product-attribute__value {
    font-size: 14px; }
  #main.single-product .warranty-block__icon {
    display: none; } }

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