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

:root {
  --base_transition: all 0.3s ease-in;
  --medium_transition: all 0.5s ease-in;
  --transparent: rgba(0, 0, 0, 0);
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--bg_light);
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  padding: 0 25px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
.p1,
.p2,
.p3,
.numbers,
.button_text a {
  font-family: "Geologica", sans-serif;
  line-height: 130%;
  color: var(--head);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geologica", sans-serif;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.h1 span,
.h2 span,
.h3 span,
.h4 span,
.h5 span,
.h6 span,
p span,
.p1 span,
.p2 span,
.p3 span,
.numbers span,
.button_text span {
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.button_text {
  font-weight: 400;
}

h6,
.h6,
h3,
.h3 {
  line-height: 140%;
}

h1,
.h1 {
  /* font-size: 50px; */
  font-size: clamp(1.375rem, 1.025rem + 1.75vw, 3.125rem);
}

h2,
.h2 {
  /* font-size: 46px; */
  font-size: clamp(1.375rem, 1.075rem + 1.5vw, 2.875rem);
}

h3,
.h3 {
  /* font-size: 36px; */
  font-size: clamp(1.125rem, 0.9rem + 1.125vw, 2.25rem);
}

h4,
.h4 {
  /* font-size: 30px; */
  font-size: clamp(1.125rem, 0.975rem + 0.75vw, 1.875rem);
}

h5,
.h5 {
  /* font-size: 24px; */
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

h6,
.h6 {
  /* font-size: 16px; */
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

p,
.p1,
.p2,
.p3,
.numbers {
  font-weight: 400;
}

p,
.p1 {
  font-size: 22px;
}

.p2 {
  font-size: 16px;
}

.p3 {
  font-size: 14px;
}

.numbers {
  line-height: 100%;
  font-size: 50px;
}

.button_text {
  line-height: 125%;
  font-size: 14px;
}

a {
  text-decoration: none;
}

#header ::marker {
  content: "";
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #dfdfdf;
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.breadcrumbs span.current-item {
  color: #121212;
}

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

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  background: var(--primary);
  border: 1px solid var(--primary);
  outline: none;
  color: var(--card);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in;
  border-radius: 30px;
  padding: 16px 35px;
  width: fit-content;
}

.btn:hover {
  background: var(--main_text);
  border: 1px solid var(--main_text);
  transition: all 0.3s ease-in;
}

.btn.invert {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn.invert:hover {
  background: var(--primary);
  color: var(--card);
}

.rewiews-values .values {
  display: block !important;
  color: #000;
}

.btn.black_btn {
  background: var(--btn);
  border: 1px solid var(--btn);
  color: var(--card);
  transition: all 0.3s ease-in;
}

.btn.black_btn:hover {
  background: transparent;
  border: 1px solid var(--btn);
  color: var(--btn);
  transition: all 0.3s ease-in;
}

.btn.black_btn.invert {
  background: transparent;
  border: 1px solid var(--btn);
  color: var(--btn);
  transition: all 0.3s ease-in;
}

.btn.black_btn.invert:hover {
  background: var(--btn);
  border: 1px solid var(--btn);
  color: var(--card);
  transition: all 0.3s ease-in;
}

.btn.white_btn {
  background: var(--card);
  border: 1px solid var(--card);
  color: var(--btn);
  transition: all 0.3s ease-in;
}

.btn.white_btn:hover {
  background: transparent;
  border: 1px solid var(--card);
  color: var(--card);
  transition: all 0.3s ease-in;
}

.btn.white_btn.invert {
  background: transparent;
  border: 1px solid var(--card);
  color: var(--card);
  transition: all 0.3s ease-in;
}

.btn.white_btn.invert:hover {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--card);
  transition: all 0.3s ease-in;
}

/* 
.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}
.btn svg path {
  transition: all 0.3s ease-in;
}
.btn:hover {
  color: #fff;
  background-color: #f6c4df;
  letter-spacing: 1px;
}
.btn:hover svg path {
  fill: rgba(18, 223, 236, 0.5);
}
.btn:focus {
  letter-spacing: normal;
}
.btn.invert {
  background-color: #f6c4df;
  color: #fff;
} */

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

.m_text_color {
  color: var(--main_text);
}

.uppercase {
  text-transform: uppercase;
}

.theme-modal .subtitle {
  margin-top: 5px;
  max-width: 400px;
  margin-bottom: 60px;
}

/*============ HEADER =================*/
#header {
  background-color: var(--card);
  padding-bottom: 15px;
  border-radius: 0px 0px 15px 15px;
  position: fixed;
  width: calc(100% - 50px);
  z-index: 10;
  max-width: 1860px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  /* margin-left: -930px;
  margin-top: -152px; */
  overflow-y: hidden;
}

/* main {
  margin-top: 152px;
} */

@media (max-width: 1890px) {
  #header {
    background-color: var(--card);
    padding-top: 5px;
    padding-bottom: 15px;
    border-radius: 15px 15px 15px 15px;
    position: fixed;
    width: 100%;
    z-index: 10;
    max-width: 1860px;
    width: 1;
    margin: 0 auto;
    /* left: auto;
    margin-left: -25px;
    margin-top: -152px; */
  }
}

@media (max-width: 750px) {
  /* #header {
    margin-left: -10px;
  } */
}

@media (max-width: 510px) {
  /* #header {
    margin-top: -100px;
  } */

  main {
    margin-top: 130px;
  }
}

#header .container {
  padding: 0 25px;
}

#header .header_bottom {
  padding-top: 15px;
}

#header .header_bottom .menuTop {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

#header .header_bottom .menuTop a {
  transition: var(--base_transition);
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
}

#header .header_bottom .menuTop a:hover {
  color: var(--primary);
  transition: var(--base_transition);
}

#header .logo {
  max-width: 185px;
}

#header .logo {
  font-family: "Geologica", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -2%;
  color: var(--head);
  text-transform: uppercase;
}

#header .logo span {
  color: var(--primary);
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
}

#header .logo desc {
  font-weight: inherit;
  font-weight: 400;
  font-size: 14px;
  color: inherit;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: none;
}

#header .logo img {
  max-width: 195px;
  object-fit: contain;
}

#header .yandex-wrapper {
  display: flex;
}

#header .yandex-raiting {
  position: relative;
}

#header .yandex-raiting .h6 {
  padding: 8px 14px 27px 14px;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 130%;
  letter-spacing: -2%;
  color: var(--head);
  text-transform: uppercase;
}

#header .yandex-raiting svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

#header .yandex-holder {
  padding: 5.5px 15px;
}

#header .yandex-title {
  max-width: 141px;
  color: var(--head);
  font-family: "Geologica";
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-top: 7px;
}

#header .header-file {
  display: flex;
  align-items: center;
  gap: 15px;
}

#header .header-file-icon {
  width: 52px;
  height: 65px;
}

#header .header-file-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

#header .header-file-desc {
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--head);
  padding-bottom: 1px;
  border-bottom: 1px dashed var(--primary);
}

#header .header_top {
  display: flex;
  align-items: center;
  padding: 11px 0;
  justify-content: space-between;
  border-bottom: 1px solid var(--bg_light);
  gap: 15px;
}

.yandex_rewiews {
  padding: 10px;
  background-color: var(--bg_light);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: fit-content;
}

.yandex_rewiews .yandex_rewiews_bottom {
  display: flex;
  gap: 5px;
  vertical-align: middle;
}

.yandex_rewiews .h6 {
  margin-right: 5px;
}

.yandex_rewiews .p3 {
  margin: auto 0;
}

.yandex_rewiews svg {
  margin: auto 0;
}

#header .header_top {
  .logo,
  .yandex_rewiews,
  .work_time,
  .con-holder,
  .btns_holder,
  .burger {
    margin: auto 0;
  }
}

#header .header_top .wokr-time-item {
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--main_text);
  margin-bottom: 5px;
}

#header .header_top .wokr-time-item:last-child {
  margin-bottom: 0;
}

#header .header_top .con-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#header .header_top .con-holder .h6 {
  font-weight: 600;
}

#header .header_top .btns_holder {
  display: flex;
  gap: 20px;
}

.soc-holder {
  display: flex;
  gap: 5px;
  margin: auto 0;
}

.soc-holder .soc {
  display: block;
  height: auto;
  border: 1px solid var(--bg_light);
  border-radius: 100px;
  max-height: 53px;
  transition: var(--base_transition);
  background-color: var(--card);
}

.soc-holder .soc:hover {
  background-color: var(--primary);
  transition: var(--base_transition);
  border: 1px solid var(--primary);
}

.soc-holder .soc svg {
  margin: 14px;
}

.soc-holder .soc svg path {
  transition: var(--base_transition);
}

.soc-holder .soc:hover svg path {
  fill: var(--card);
  transition: var(--base_transition);
}

#fixed-buttons {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: fixed;
  right: 30px;
  top: 25%;
  z-index: 999;
}

#fixed-buttons .fixed-button {
  border-radius: 50%;
  background: var(--primary);
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#fixed-buttons .fixed-button::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  top: 50%;
  left: 50%;
  background: var(--primary);
  opacity: 30%;
  border-radius: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

#fixed-buttons .fixed-button img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: cover;
}

/*================ 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(--btn);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  z-index: 5;
}

#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;
  background-color: var(--card);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: #d12d26;
}

#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: var(--head);
  font-weight: 450;
  transition: var(--base_transition);
}

#header #mobile-mnu a:hover {
  color: var(--primary);
  transition: var(--base_transition);
}

#header #mobile-mnu .logo-holder {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: var(--head);
  font-weight: 450;
  transition: var(--base_transition);
}

#header #mobile-mnu .menuTop li a:hover {
  color: var(--primary);
  transition: var(--base_transition);
}

#header #mobile-mnu .menuTop li.active a {
  color: var(--primary);
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}

#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--primary);
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .phone {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--primary);
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #3a899a;
  transition: background-color 0.3s ease-in;
}

#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609fa8;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

#header #mobile-mnu .soc-holder {
  margin: 0;
  margin-top: 20px;
}

@media (max-width: 1300px) {
  #header .header_top .work_time {
    display: none;
  }
}

@media (max-width: 1150px) {
  #header .header_top .btns_holder .soc-holder {
    display: none;
  }
}

@media (max-width: 1000px) {
  #header {
    position: fixed;
    transform: unset;
    left: 0;
    top: 0;
  }
  #header .burger.open_menu {
    display: flex;
  }

  #header .header_top .yandex_rewiews {
    display: none;
  }

  #header .header_bottom {
    display: none;
  }

  #header .header_top {
    border-bottom: none;
    padding: 0;
  }

  #header {
    padding: 15px 0;
  }
}

#header #mobile-mnu .phones-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 800px) {
  #header .header_top .btns_holder {
    display: none;
  }

  #header .header_top .con-holder .email {
    display: none;
  }

  #header .header_top .con-holder .phone {
    font-size: 18px;
  }

  #fixed-buttons {
    right: 15px;
    top: unset;
    bottom: 20px;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  #header .yandex-wrapper {
    display: none;
  }
}

@media (max-width: 510px) {
  #header .header_top .con-holder .phone {
    font-size: 16px;
  }

  #header .logo img {
    max-width: 120px;
  }
}

@media (max-width: 400px) {
  #header .logo img {
    max-width: 90px;
  }

  #header .header_top .con-holder .email {
    display: none;
  }

  #header .header_top .con-holder .phone {
    font-size: 14px;
  }

  #header .header_top {
    gap: 8px;
  }
}

/*============ FOOTER ===============*/
#footer {
  background-color: var(--head);
  padding: 30px 0;
  border-radius: 15px 15px 0px 0px;
}

#footer .p3 {
  color: var(--card);
  opacity: 0.7;
  margin: auto 0;
}

#footer .container {
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
}

.example-holder a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: var(--card);
}

.example-holder a:hover {
  color: var(--primary);
}

.glogo {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--bg_dark);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  overflow: hidden;
}

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

.glogo:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform 0.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: 1s;
}

.glogo:hover:before {
  animation-name: unset;
  transform: translateX(0);
}

#footer .rights {
  font-family: "Avenir Next Cyr";
  font-size: clamp(14px, 0 * 100vw + 14px, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
}

@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

#footer .container .privacy {
  text-decoration: underline;
  transition: var(--base_transition);
}

#footer .container .privacy:hover,
#footer .container .dev:hover {
  opacity: 1;
  transition: var(--base_transition);
}

@media (max-width: 830px) {
  #footer .container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 auto;
    width: fit-content;
  }
}

/* ============== MODAL ============= */
.theme-modal {
  display: none;
}

.theme-modal.fancybox__content {
  width: 690px;
  padding: 60px 80px;
  border-radius: 15px;
}

.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: all 0.3s ease-in;
  stroke: transparent;
}

.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  stroke: transparent;
  fill: var(--primary);
  transition: all 0.3s ease-in;
}

.fancybox__backdrop {
  background: rgba(35, 38, 46, 0.9) !important;
}

input.error,
.form textarea.error {
  border-color: var(--error) !important;
}

.fancybox__content > .f-button.is-close-btn {
  width: 12px;
  height: 12px;
  top: 30px !important;
  right: 30px !important;
}

.fancybox__content > .f-button.is-close-btn {
  display: none;
}

.fancybox__content > .f-button.is-close-btn.my_btn {
  display: flex;
  width: 12px;
  height: 12px;
}

.fancybox__content > .f-button.is-close-btn.my_btn svg {
  width: 12px;
  height: 12px;
}

.fancybox__content h3 {
  margin-bottom: 60px;
}

.fancybox__content .form.form-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fancybox__content .form.form-v2 .form_bottom {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.swiper {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 550px) {
  .theme-modal.fancybox__content {
    padding: 30px 40px;
  }

  .fancybox__content h3,
  .fancybox__content .h3 {
    margin-bottom: 30px;
    font-size: 25px;
  }

  .fancybox__content .form.form-v2 .form_bottom {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .fancybox__content .form.form-v2 .form_bottom .privacy-polic {
    max-width: none;
  }

  .fancybox__content .form.form-v2 .form_bottom .btn {
    width: 100%;
  }

  .fancybox__content > .f-button.is-close-btn {
    top: 20px !important;
    right: 20px !important;
  }
}

@media (max-width: 360px) {
  .fancybox__content h3,
  .fancybox__content .h3 {
    font-size: 22px;
  }
}

input {
  border: 0;
  background-color: var(--bg_light);
  padding: 16px 25px;
  border-radius: 500px;
  width: 100%;
  border: solid 1px transparent;
  cursor: pointer;
  transition: var(--base_transition);
  color: var(--main_text);
  border-bottom: 1px solid var(--stroke);
}

input::placeholder {
  color: var(--white);
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  line-height: 130%;
  font-size: 14px;
  transition: var(--base_transition);
}

.input_part {
  margin-bottom: 20px;
}

.input_part {
  gap: 20px;
}

.privacy-polic {
  color: var(--main_text);
  /* margin-top: 20px; */
  max-width: 260px;
}

.privacy-polic a {
  text-decoration: underline;
  color: var(--main_text);
}

input {
  outline: none;
}

.form input:hover,
.form input:focus,
.form input:active {
  color: var(--head);
  border-bottom: 1px solid var(--head);
}

.form input:hover::placeholder,
.form input:focus::placeholder,
.form input:active::placeholder {
  color: var(--head);
  transition: var(--base_transition);
}

.form input.error {
  color: red;
  border: none;
  border-bottom: 1px solid red;
}

.privacy-policy .page-title {
  font-size: 48px;
}

.privacy-policy .wp-block-heading {
  margin-top: 20px;
}

.breadcrumbs span,
.breadcrumbs,
.breadcrumbs span.current-item {
  color: var(--head);
}

.privacy-policy .content {
  margin-bottom: 80px;
}

.privacy-policy .container {
  padding: 0;
}

.breadcrumbs {
  padding-top: 0;
}

.site-main.error-page {
  padding-top: 130px;
  min-height: 93vh !important;
}

.error404 .breadcrumbs {
  display: none;
}

.error_container {
  display: flex;
  justify-content: end;
  border-radius: 15px;
}

.error_container h2 {
  color: var(--card);
}

.er_404 {
  background-color: var(--accent);
  color: var(--primary);
  font-size: 100px;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 10px;
  transform: rotate(-3deg);
  line-height: 130px;
  display: inline-block;
  width: fit-content;
  position: relative;
  letter-spacing: 2px;
}

.error_container .img_404 {
  max-width: 785px;
  height: 580px;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.error_container .img_404 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error_content {
  max-width: 751px;
  margin-top: 60px;
  margin-left: 30px;
  width: 100%;
}

.error_content h2 {
  margin: 30px 0;
}

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1560px) {
  .error_container {
    justify-content: space-between;
  }

  .error_content {
    max-width: 560px;
  }
}

@media (max-width: 1200px) {
  #header .header-file {
    display: none;
  }

  .error_container {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 30px;
  }

  .error_container .img_404 {
    max-width: none;
    width: auto;
    height: 300px;
  }

  .error_content {
    margin: 0 auto;
    margin-top: 60px;
  }

  .error_content .btn {
    margin: 0 auto;
  }

  .er_404 {
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 750px) {
  #header .logo {
    max-width: 200px;
  }
  #header .header_top .con-holder {
    display: none;
  }
  body {
    padding: 0 10px;
  }

  #header .container {
    padding: 0 12px;
  }

  #footer .container {
    padding: 0 12px;
  }

  .privacy-policy .page-title {
    font-size: 26px;
  }

  .privacy-policy .wp-block-heading {
    font-size: 24px;
  }

  .privacy-policy .content p {
    font-size: 18px;
  }

  .privacy-policy .content {
    margin-bottom: 40px;
  }
}

@media (max-width: 700px) {
  .error_content h2 {
    font-size: 30px;
    text-align: center;
  }

  .error_content {
    margin-top: 30px;
  }
}

@media (max-width: 500px) {
  .error_container .img_404 {
    height: 200px;
  }

  .er_404 {
    font-size: 80px;
    line-height: 100px;
  }

  .error_content h2 {
    font-size: 23px;
  }
}

.fancybox__container {
  /* background-color: rgba(81, 83, 89, 0.9); */
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  background-color: transparent;
}
.page-id-3 .site-main {
  padding-top: 170px;
}
@media (max-width: 1000px) {
  .page-id-3 .site-main {
    padding-top: 130px;
  }
}
@media (max-width: 510px) {
  .page-id-3 .site-main {
    padding-top: unset;
  }
}
/*# sourceMappingURL=main.css.map */
