/*========= VARIABLES ==========*/
:root {
  --primary: #3265e5;
  --second: #091f5b;
  --third: #d0e4ff;
  --fourth: #6f96d1;
  --head-primary: #1c1d1f;
  --main-text-primary: #2f2f33;
  --head-secondary: #fdfdfd;
  --main-text-secondary: #fafafa;
  --background: #fdfdfd;
  --background-secondary: #f3f3f3;
  --background-thirdly: #fff;
  --background-fourthly: #edf0f5;
  --stroke: #ededed;
  --stroke-secondary: #fff;
  --font-family: "Inter", 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;
  color: var(--main-text-primary); }

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  box-sizing: inherit; }

body {
  background-color: #fff;
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  background-image: url("../images/shape.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  position: relative;
  z-index: 1; }
  body.error404:before {
    display: none; }
  body.single-service:before, body.home:before {
    background-image: url("../images/lines3.png");
    background-position: left 1000px; }
  body:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/lines2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    z-index: -1; }

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

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

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

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

h1.page-title {
  font-weight: 600;
  font-size: 64px;
  line-height: 110%;
  text-align: center;
  color: var(--head-primary);
  margin-bottom: 40px; }

h2.block-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 110%;
  text-align: center;
  color: var(--head-primary);
  margin-bottom: 40px;
  margin-top: 0; }

h2 {
  margin-top: 40px;
  margin-bottom: 35px;
  font-size: 40px;
  font-family: var(--font-family);
  font-weight: 800;
  line-height: 110%;
  color: #333333; }

h3 {
  margin-top: 35px;
  margin-bottom: 30px;
  font-size: 28px;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 130%;
  color: #333333; }

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

h5 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 22px;
  font-family: var(--font-family);
  font-weight: 600;
  line-height: 130%;
  color: #333333; }

h6 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 130%;
  color: #333333; }

.breadcrumbs {
  padding: 20px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: var(--main-text-primary); }
  .breadcrumbs span {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    padding: 0 7px; }
    .breadcrumbs span:first-child {
      padding-left: 0; }
    .breadcrumbs span:last-child {
      padding-right: 0; }
    .breadcrumbs span.current-item {
      color: var(--primary); }
  .breadcrumbs a {
    color: inherit; }
    .breadcrumbs a:hover {
      color: var(--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: 1px solid var(--primary);
  border-radius: 15px;
  outline: none;
  padding: 20px 40px;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease-in; }
  .btn:hover {
    color: var(--head-secondary);
    background-color: var(--primary);
    box-shadow: 4px 4px 15px 0 rgba(50, 101, 229, 0.3); }
  .btn.invert {
    background-color: var(--primary);
    color: var(--head-secondary); }
    .btn.invert:hover {
      background-color: var(--second); }
  .btn.another {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--head-secondary); }
    .btn.another:hover {
      background-color: var(--third);
      border-color: var(--third);
      color: var(--primary);
      box-shadow: 4px 4px 15px 0 rgba(50, 101, 229, 0.3); }

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

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

.email,
.phone {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--main-text-primary); }
  .email:hover,
  .phone:hover {
    color: var(--primary); }

.phones,
.emails {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  width: fit-content; }

.worktime * {
  color: inherit; }

.menu-holder {
  display: flex;
  gap: 10px 50px;
  margin: 0; }
  .menu-holder li {
    list-style-type: none;
    margin: 0; }
    .menu-holder li.active > a {
      color: var(--primary); }
    .menu-holder li a {
      font-weight: 500;
      font-size: 18px;
      line-height: 110%;
      text-align: center; }

.soc-holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px; }
  .soc-holder .soc {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    border: 1px solid var(--third);
    display: flex;
    justify-content: center;
    align-items: center; }
    .soc-holder .soc svg,
    .soc-holder .soc img {
      width: 35px;
      height: 35px;
      object-fit: contain;
      transition: transform .3s ease-in; }
    .soc-holder .soc:hover {
      border-color: var(--primary); }
      .soc-holder .soc:hover svg,
      .soc-holder .soc:hover img {
        transform: scale(1.1); }

.grampus {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px; }
  .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%); } }
.b-margin {
  margin-top: 140px;
  margin-bottom: 140px; }

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

/*=========== PARTS ===========*/
.services {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  align-items: stretch; }

.service-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto; }
  .service-card.inverse .service-card__holder {
    background-color: var(--primary); }
  .service-card.inverse .service-card__title {
    color: var(--background-secondary); }
    .service-card.inverse .service-card__title-point {
      background-color: var(--background-secondary);
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5); }
  .service-card.inverse .service-card__action {
    color: var(--background-secondary); }
  .service-card.inverse:hover .service-card__title,
  .service-card.inverse:hover .service-card__action {
    color: var(--head-primary); }
  .service-card.inverse:hover .btn {
    color: var(--background-secondary); }
  .service-card__holder {
    width: 100%;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px 0 var(--background-secondary);
    background: var(--background-thirdly);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 1;
    transition: background-color .3s ease-in; }
  .service-card__title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    color: var(--head-primary);
    margin-bottom: 15px;
    gap: 10px; }
    .service-card__title-point {
      background-color: var(--primary);
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 6px solid var(--background-thirdly);
      box-shadow: 0 0 0 1px var(--third);
      margin-left: auto;
      display: block;
      flex-shrink: 0;
      transition: opacity .3s ease-in; }
  .service-card__desc {
    margin-bottom: 40px; }
  .service-card__actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px; }
  .service-card__action {
    margin-bottom: 0;
    font-weight: 500; }
  .service-card .btn {
    margin: 20px auto 0;
    width: 100%; }
  .service-card:hover .service-card__holder {
    background-color: var(--third); }
  .service-card:hover .service-card__title-point {
    opacity: 0; }
  .service-card:hover .btn {
    background-color: var(--second); }

.form {
  width: 100%; }
  .form .inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 40px; }
  .form .btn {
    width: 100%; }
  .form .apperance {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: var(--main-text-primary);
    margin-top: 15px; }
    .form .apperance a {
      text-decoration: underline; }
  .form input[type=text],
  .form input[type=tel],
  .form input[type=email],
  .form textarea {
    width: 100%;
    border-radius: 15px;
    padding: 18px 30px;
    background: var(--background-thirdly);
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--main-text-primary);
    border: 1px solid var(--background-thirdly);
    outline: none; }
    .form input[type=text]::placeholder,
    .form input[type=tel]::placeholder,
    .form input[type=email]::placeholder,
    .form textarea::placeholder {
      color: inherit; }
    .form input[type=text]:focus::placeholder,
    .form input[type=tel]:focus::placeholder,
    .form input[type=email]:focus::placeholder,
    .form textarea:focus::placeholder {
      color: var(--background-fourthly); }
    .form input[type=text].error,
    .form input[type=tel].error,
    .form input[type=email].error,
    .form textarea.error {
      border-color: red;
      color: red; }
  .form textarea {
    resize: none;
    height: 100px; }

/*====== NAVIGATION ===========*/
.navigation.pagination {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center; }
  .navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    text-align: center; }
  .navigation.pagination .page-numbers {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #1C0130;
    margin: 0 10px; }
    .navigation.pagination .page-numbers.current {
      font-weight: 750; }
  .navigation.pagination a.prev {
    margin-right: 100px;
    margin-left: -100px; }
  .navigation.pagination a.next {
    margin-right: -100px;
    margin-left: 100px; }

/*=========== ERROR PAGE ==========*/
#main.error-page {
  min-height: 60vh; }
  #main.error-page .error-holder {
    width: 100%;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 30px 0 var(--background-secondary);
    background: var(--background-thirdly);
    position: relative;
    overflow: hidden; }
  #main.error-page .error-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; }
  #main.error-page h1 {
    margin-bottom: 15px;
    text-align: left; }
  #main.error-page .btn {
    margin-top: 40px; }
  #main.error-page .error-code {
    position: absolute;
    right: 10px;
    bottom: -50px;
    font-weight: 700;
    font-size: 330px;
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
    color: var(--third);
    margin: 0; }

/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0;
  z-index: 99; }
  #header .header-bar {
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 30px 0 var(--background-secondary);
    background: var(--background-thirdly);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px; }
    #header .header-bar .logo-bar {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      gap: 50px; }
    #header .header-bar .worktime {
      flex-shrink: 0; }
    #header .header-bar .contacts-bar {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 20px; }
  #header .menu-holder li.has-childs {
    position: relative; }
    #header .menu-holder li.has-childs:hover ul.sub-menu, #header .menu-holder li.has-childs.hover ul.sub-menu {
      opacity: 1;
      pointer-events: all; }
    #header .menu-holder li.has-childs > a:after {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--primary);
      flex-shrink: 0;
      display: inline-flex;
      vertical-align: middle;
      margin-left: 3px; }
    #header .menu-holder li.has-childs ul.sub-menu {
      position: absolute;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      box-shadow: 0 0 30px 0 var(--background-secondary);
      background: var(--background-thirdly);
      border-radius: 20px;
      padding: 30px;
      width: max-content;
      max-width: 600px;
      z-index: 10;
      top: 60px;
      left: -30px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease-in;
      gap: 10px; }

/*================ 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: var(--primary);
    width: 30px;
    height: 4px;
    transition: all 0.3s ease-in;
    pointer-events: none; }
#header .burger.open_menu.clicked {
  background-color: var(--primary); }
  #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;
  backdrop-filter: blur(10px);
  background: rgba(246, 246, 246, 0.3) !important;
  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: 45px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transform: rotate(45deg);
    display: block;
    color: var(--primary); }
  #header #mobile-mnu a.logo-holder {
    margin-bottom: 30px; }
  #header #mobile-mnu .menu-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px; }
  #header #mobile-mnu .phone,
  #header #mobile-mnu .email {
    margin-bottom: 10px; }
  #header #mobile-mnu .btn {
    margin-top: auto;
    width: 100%; }
#header #mobile-mnu.opened {
  transform: translateX(0); }

.grampus-cookie-notice {
    display: none;
    position: sticky;
    bottom: 0;
    margin: 0 auto;
    width: 80%;
    height: fit-content;
    padding: 10px 0;
    z-index: 2000;
    background-color: var(--cookie-bg, #fff);
    padding: 30px;
    border-radius: 20px;
}

.cookie-notice-container{
    flex-direction: row;
}

.grampus-cookie-notice p{
    text-align: center;
}

.grampus-cookie-accept-button{
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
}

@media (max-width: 600px){
    .grampus-cookie-accept-button{
        width: 100%;
    }
    .cookie-notice-container{
    flex-direction: column;
    }
}


.policy-checkbox input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
    
        border: 1px solid #ccc;
        border-radius: 2px;
        outline: none;
        cursor: pointer;
        position: relative;
        vertical-align: middle;
        border: 1px solid #000000;
        padding: 0;
    }
    
    /* Стиль для отмеченного чекбокса */
    .policy-checkbox input[type="checkbox"]:checked {
        background-color: #007bff;
        border-color: #007bff;
    }
    
    /* Галочка внутри чекбокса */
    .policy-checkbox input[type="checkbox"]:checked::after {
        content: "✓";
        position: absolute;
        color: white;
        font-size: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Стиль для ошибки (только чекбокс) */
    .policy-checkbox input[type="checkbox"].error {
        border-color: red;
        box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
    }
    
    .policy-checkbox{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 20px;
    align-items: center;
    }
    
    #consent-checkbox{
        width: 20px !important;
        height: 20px !important;
        border: 1px solid #000000 !important;
    }

.policy-checkbox label{
        width: 90% !important;
    }

/*============ FOOTER ===============*/
#footer {
  width: 100%; }
  #footer .top-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    width: 100%; }
  #footer .mid-line {
    padding: 40px 0;
    border-top: 1px solid var(--third);
    border-bottom: 1px solid var(--third);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    width: 100%; }
  #footer .block {
    width: 100%; }
    #footer .block__title {
      font-family: var(--font-family);
      font-weight: 500;
      font-size: 18px;
      line-height: 110%;
      color: var(--main-text-primary);
      margin-bottom: 10px; }
  #footer .bot-line {
    padding: 15px 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%; }
    #footer .bot-line p {
      margin-bottom: 0; }
  #footer .privacy a {
    text-decoration: underline; }

/* ============== 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;
    background-color: var(--third);
    padding: 30px;
    border-radius: 20px; }
    .theme-modal.fancybox__content > .f-button.is-close-btn {
      position: absolute;
      right: 10px;
      top: 10px;
      background-color: unset; }
      .theme-modal.fancybox__content > .f-button.is-close-btn svg path {
        transition: stroke .3s ease-in;
        stroke: var(--primary); }
      .theme-modal.fancybox__content > .f-button.is-close-btn:hover svg path {
        stroke: var(--second); }
  .theme-modal .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
    color: var(--head-primary);
    margin-bottom: 15px; }
  .theme-modal .subtitle {
    text-align: center; }

.fancybox__backdrop {
  backdrop-filter: blur(10px);
  background: rgba(246, 246, 246, 0.3) !important; }

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

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1440px) {
  /*======== BASE CONFIG ==========*/
  .menu-holder {
    gap: 10px 20px; } }
@media (max-width: 1240px) {
  /*========== BASE CONFIG =========*/
  .form .apperance,
  .phone,
  .email,
  p,
  ol li,
  ul li {
    font-size: 16px; }

  .menu-holder li a {
    font-size: 16px; }

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

  .btn {
    font-size: 16px;
    padding: 15px 20px; }

  .form input[type=text],
  .form input[type=tel],
  .form input[type=email],
  .form textarea {
    font-size: 16px;
    padding: 15px 20px; }

  h1.page-title {
    font-size: 55px; }

  /*======== PARTS ========*/
  .services {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px; }

  .service-card__title {
    font-size: 20px; }

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

  /*========== HEADER ===========*/
  #header .header-bar .logo-bar {
    gap: 20px; }
  #header .header-bar .worktime {
    display: none; } }
@media (max-width: 1025px) {
  /*======= BASE CONFIG =========*/
  .b-margin {
    margin-top: 100px;
    margin-bottom: 100px; }

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

  h1.page-title {
    font-size: 50px; }

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

  /*========= ERROR PAGE ===========*/
  #main.error-page .error-code {
    font-size: 200px;
    bottom: -30px; }

  /*============ HEADER ==========*/
  #header .header-bar .btn {
    display: none; }

  /*========== FOOTER ==========*/
  #footer .top-line .phones {
    display: none; }
  #footer .mid-line {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 769px) {
  /*======== BASE CONFIG ==========*/
  h1.page-title {
    font-size: 40px; }

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

  /*======== PARTS ========*/
  .services {
    grid-template-columns: 1fr;
    grid-gap: 20px; }

  .service-card__holder {
    padding: 15px; }
  .service-card__title {
    font-size: 18px; }

  /*========= ERROR PAGE ===========*/
  #main.error-page .error-info {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    align-items: center; }
  #main.error-page h1 {
    text-align: center; }
  #main.error-page .error-code {
    position: initial;
    margin-left: 0;
    text-align: center;
    font-size: 160px; }

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

  /*========== FOOTER ===========*/
  #footer .top-line {
    flex-wrap: wrap;
    gap: 20px; }
  #footer .bot-line {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px; } }
@media (max-width: 498px) {
  /*======= BASE CONFIG ==========*/
  a.logo-holder {
    max-width: 80px; }

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

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

  h1.page-title {
    font-size: 30px;
    margin-bottom: 30px; }

  h2,
  h2.block-title {
    font-size: 25px;
    margin-bottom: 20px; }

  /*======== PARTS ========*/
  .services {
    grid-template-columns: 1fr; }

  /*========= ERROR PAGE ===========*/
  #main.error-page .error-holder {
    padding: 20px; }
  #main.error-page .error-code {
    font-size: 100px; }

  /*========== HEADER ===========*/
  #header .header-bar {
    padding: 10px; }
    #header .header-bar .soc-holder {
      display: none; }
    #header .header-bar .phone {
      font-size: 14px; }

  /*======= FOOTER =========*/
  #footer .top-line .menu-holder {
    width: 100%;
    flex-grow: 1;
    order: 3; }
  #footer .mid-line {
    grid-template-columns: 1fr; } }

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