@charset "UTF-8";

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

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  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: "Rubik", sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

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

a {
  text-decoration: none;
  color: var(--gray);
  transition: all 0.3s ease-in;
}

a:hover {
  color: var(--secondary);
}

ul li {
  list-style-position: inside;
  color: var(--gray2);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  margin-bottom: 10px;
}

ul li::marker {
  color: var(--secondary);
}

ol li {
  list-style-position: inside;
  color: var(--gray2);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  margin-bottom: 10px;
}

p {
  color: var(--gray2);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  /* 24px */
  margin-bottom: 15px;
}

b,
strong {
  font-weight: 700;
}

button {
  cursor: pointer;
}

h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 68px;
  line-height: 120%;
  letter-spacing: -2%;
}

h1.page-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 40px;
}

h2.block-title {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 135%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--gray6);
  margin-top: 0;
}

h2.block-title span {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 135%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--primary);
}

h2.block-title m {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 135%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--secondary);
}

h2 {
  margin-top: 40px;
  margin-bottom: 35px;
  font-size: 40px;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  line-height: 110%;
  color: var(--gray);
}

h3 {
  margin-top: 35px;
  margin-bottom: 30px;
  font-size: 28px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  line-height: 130%;
  color: var(--gray);
}

h4 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 24px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  line-height: 130%;
  color: var(--gray);
}

h5 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 22px;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  line-height: 130%;
  color: var(--gray);
}

h6 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  line-height: 130%;
  color: var(--gray);
}

.breadcrumbs {
  padding: 20px 0;
  font-family: "Rubik", sans-serif;
  color: var(--gray2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

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

.breadcrumbs span a:hover {
  color: var(--primary);
}

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

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

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  background-color: var(--secondary);
  border-radius: 100px;
  border: none;
  outline: none;
  font-family: "Rubik", sans-serif;
  color: var(--white);
  padding: 25px 60px;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.btn.with-icon {
  padding: 9.5px 10px 9.5px 35px;
}

.btn .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  color: var(--white);
  transition: background-color 0.4s ease-out;
}

.btn .icon svg,
.btn .icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn .icon svg path {
  transition: stroke 0.4s ease-out;
}

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

.btn.with-icon:hover svg path {
  stroke: var(--gray);
}

.btn.with-icon:hover .icon {
  background-color: var(--gray5);
}

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

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

.btn.white {
  color: var(--gray);
  background-color: var(--white);
}

.btn.white:hover {
  color: var(--gray);
  background-color: var(--primary);
}

.btn.extend {
  max-width: 254px;
  width: 100%;
}

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

/*============ ERROR PAGE =============*/
#main.error-page .breadcrumbs {
  z-index: 2;
  position: relative;
}

#main.error-page .wide-container {
  padding-top: 100px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
}

/* #main.error-page .wide-container:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  background-image: url("../images/error-image.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
} */

#main.error-page .error-holder {
  max-width: 625px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 2;
  position: relative;
}

#main.error-page h3 {
  color: var(--gray);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  /* 86.4px */
  letter-spacing: 1.6px;
  margin-bottom: 15px;
  margin-top: 30px;
}

#main.error-page h3 span {
  color: var(--secondary);
  font-size: inherit;
  font-weight: inherit;
}

#main.error-page .btn {
  margin-top: 30px;
}

#main.error-page h1.error {
  position: absolute;
  bottom: 0;
  right: -130px;
  color: var(--white);
  font-size: 505px;
  font-style: normal;
  font-weight: 900;
  line-height: 0.7;
  /* 681.75px */
  letter-spacing: 12.625px;
  z-index: 1;
}

/*============ HEADER =================*/
#header {
  padding: 20px 0 0;
  position: sticky;
  top: 0;
  z-index: 99;
}

#header .header-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background-color: var(--white);
  padding-left: 40px;
  gap: 60px;
}

#header a.logo-holder {
  display: flex;
  max-width: 170px;
  max-height: 90px;
  width: 100%;
}

#header a.logo-holder img {
  width: 100%;
  object-fit: contain;
}

#header a.logo-holder span {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: left;
  width: 100%;
  display: block;
  color: var(--secondary);
}

#header .menu-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  gap: 10px 20px;
  text-transform: uppercase;
  flex-wrap: wrap;
}

#header .menu-holder li {
  list-style-type: none;
  margin-bottom: 0;
}

#header .menu-holder li a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  /* 24px */
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

#header .menu-holder li a svg path {
  stroke: var(--primary);
}

#header .menu-holder li a svg path {
  transition: stroke 0.3s ease-in;
}

#header .menu-holder li a:hover svg path {
  stroke: var(--secondary);
}

#header .contacts-holder {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 40px 30px 90px;
  border-radius: 10px;
  background: var(--bg_thirdly);
  position: relative;
  flex-shrink: 0;
}

#header .contacts-holder:before {
  content: "";
  position: absolute;
  left: 40px;
  top: 30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--secondary);
  border: 1px solid var(--white);
  box-shadow: 0 0 0 1px var(--secondary);
  background-image: url("../images/phone.svg");
  background-position: center center;
  background-size: 20px;
  background-repeat: no-repeat;
}

#header .phone {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
}

#header .take-request {
  outline: none;
  border: none;
  color: var(--secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  border-bottom: 1px dashed var(--secondary);
  transition: color 0.3s ease-in, border-color 0.3s ease-in;
  background-color: transparent;
  margin-top: 5px;
}

#header .take-request:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/*================ TEMPLATES =============*/
.h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -2%;
}

.h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -2%;
}

.h5 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -2%;
}

.h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
}

.h16 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

.p20 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  letter-spacing: 0%;
}

.p16 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
}

.b16 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}

/*================ 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: var(--white);
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--white);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow-y: auto;
}

#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 {
  max-width: 170px;
  margin-bottom: 30px;
}

#header #mobile-mnu .menu-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 0;
  margin-bottom: 30px;
}

#header #mobile-mnu .emails,
#header #mobile-mnu .phones,
#header #mobile-mnu .worktime {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

#header #mobile-mnu .worktime {
  color: var(--gray);
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header #mobile-mnu .soc__holder .soc__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header #mobile-mnu .worktime,
#header #mobile-mnu .phone,
#header #mobile-mnu .email {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

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

.socials-fixed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.socials-fixed .social-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials-fixed .social-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*============ FOOTER ===============*/
#footer {
  border-radius: 20px 20px 0 0;
  background-color: var(--gray);
}

#footer .top-line {
  padding: 35px 0 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#footer .bot-line {
  padding: 20px 0;
  border-top: 1px solid var(--gray2);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

#footer a.logo-holder {
  max-width: 170px;
  max-height: 80px;
  margin-right: 80px;
}

#footer a.logo-holder img {
  width: 100%;
  object-fit: contain;
}

#footer a.logo-holder span {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
  display: block;
  color: var(--white);
}

#footer .menu-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  flex-grow: 1;
}

#footer .menu-holder li {
  margin-bottom: 0;
  list-style-type: none;
}

#footer .menu-holder li a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  text-transform: uppercase;
}

#footer .menu-holder li a svg path {
  stroke: var(--primary);
}

#footer .menu-holder li a svg path {
  transition: stroke 0.3s ease-in;
}

#footer .menu-holder li a:hover {
  color: var(--secondary);
}

#footer .menu-holder li a:hover svg path {
  stroke: var(--secondary);
}

#footer .privacy,
#footer .copyright {
  color: var(--gray2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

#footer .dev {
  color: var(--gray2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 10px;
}
#footer .dev .glogo {
  width: 111px;
  height: 17px;
  -webkit-mask-image: url("../images/grampus.svg");
  mask-image: url("../images/grampus.svg");
  -webkit-mask-origin: border-box;
  mask-origin: border-box;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: var(--gray2);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  overflow: hidden;
}
#footer .dev .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: 3s;
}
@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

#footer .privacy {
  outline: none;
  border: none;
  background-color: transparent;
  transition: color 0.3s ease-in;
}

#footer .privacy:hover {
  color: var(--secondary);
}

#footer .dev span {
  font-weight: 900;
  font-size: 22px;
  color: inherit;
}

#footer .dev:hover {
  color: var(--secondary);
}

/* ============== ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ ============= */
.privacy-policy .content {
  padding-bottom: 40px;
}

.privacy-policy .content th,
.privacy-policy .content td {
  color: var(--gray2);
}

/* ============== FORM ============= */
.form-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 20px;
}

.form-tabs input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.form-tabs input[type="radio"]:checked + .form-tab {
  border-color: var(--secondary);
  color: var(--secondary);
}

.form-tab {
  cursor: pointer;
  color: var(--gray2);
  padding: 17px 35px;
  border-radius: 150px;
  border: 1px solid var(--gray3);
  background: var(--gray4);
  transition: background 0.4s ease-out, border 0.4s ease-out;
}

.form-tab:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

.form-input {
  width: 100%;
  padding: 23px 30px;
  border-radius: 45px;
  background: #f6f6f6;
  border: 1px solid #f6f6f6;
  color: var(--gray2);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 10px;
  outline: none;
  transition: border 0.4s ease-out, color 0.4s ease-out;
}

.form-input::placeholder {
  color: var(--gray2);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  transition: color 0.4s ease-out;
}

.form-input.error {
  color: red;
  border-color: red;
}

.form-input.error::placeholder {
  color: red;
}

.form-submit {
  margin-top: 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: unset;
}

.form-privacy {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--gray2);
  margin-top: 10px;
}

.form-privacy a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--secondary);
}

/* ============== MODAL ============= */
.theme-modal {
  height: fit-content;
  width: 770px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: var(--gray4);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
  overflow-y: auto;
  padding: 35px 70px 55px;
  border-radius: 20px;
}

.theme-modal::-webkit-scrollbar {
  width: 6px;
  /* ширина для вертикального скролла */
  height: 2px;
  /* высота для горизонтального скролла */
  background-color: var(--gray2);
}

.theme-modal::-webkit-scrollbar-thumb {
  background-color: var(--gray2);
  border-radius: 9em;
  box-shadow: inset 1px 1px 10px var(--secondary);
}

.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 40px;
  font-weight: 750;
  cursor: pointer;
}

.theme-modal .close-modal svg {
  pointer-events: none;
}

.theme-modal .close-modal svg path {
  transition: stroke 0.3s ease-in;
}

.theme-modal .close-modal:hover svg path {
  stroke: var(--primary);
}

.theme-modal .title {
  color: var(--gray);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  /* 43.2px */
  letter-spacing: 0.8px;
  margin: 0 auto;
  text-align: center;
}

.theme-modal .subtitle {
  color: var(--gray2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  text-align: center;
  margin: 0 auto 30px;
}

.theme-modal .form {
  width: 100%;
}

.theme-modal .form .inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  align-items: stretch;
  margin-bottom: 20px;
}

.theme-modal .form .inputs .side {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}

.theme-modal .form textarea,
.theme-modal .form input {
  border-radius: 5px;
  background: var(--white);
  color: var(--gray);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  border: 1px solid var(--white);
  width: 100%;
  padding: 20px 30px;
  outline: none;
}

.theme-modal .form textarea.error,
.theme-modal .form input.error {
  border-color: red;
}

.theme-modal .form textarea:focus,
.theme-modal .form input:focus {
  border-color: var(--secondary);
  color: var(--gray);
}

.theme-modal .form textarea {
  resize: none;
}

.theme-modal .form .form-bot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  align-items: center;
}

.theme-modal .form .apperance {
  color: var(--gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
}

.theme-modal .form .apperance a {
  outline: none;
  border: none;
  background-color: transparent;
  color: var(--primary);
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transition: color 0.3s ease-in;
}

.theme-modal .form .apperance a:hover {
  color: var(--secondary);
}

.theme-modal .form .btn {
  width: 100%;
}

.theme-modal#modal-success {
  width: 570px;
  padding: 35px 50px 55px;
}

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

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1919px) {
  /*=========== ERROR PAGE ==========*/
  #main.error-page h1.error {
    right: 0;
  }
}

@media (max-width: 1440px) {
  /*=========== HEADER ===========*/
  #header .header-holder {
    gap: 30px;
  }

  #header .contacts-holder {
    padding: 20px 30px;
  }

  #header .contacts-holder:before {
    display: none;
  }
}

@media (max-width: 1240px) {
  /*========== ERROR PAGE ==========*/
  /* #main.error-page .wide-container:after {
    width: 40%;
  } */

  #main.error-page h1.error {
    font-size: 400px;
  }

  /*=========== HEADER ============*/
  #header .header-holder {
    padding: 0 20px;
  }

  #header .menu-holder {
    display: none;
  }

  #header .contacts-holder {
    margin: 0 auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  #header .burger.open_menu {
    display: flex;
  }
}

@media (max-width: 1025px) {
  /*========== BASE CONFIG ===========*/
  h2,
  h2.block-title,
  h2.block-title span,
  h2.block-title m {
    font-size: 40px;
  }

  /*========== ERROR PAGE ==========*/
  /* #main.error-page .wide-container:after {
    width: 40%;
  } */

  #main.error-page h1.error {
    font-size: 300px;
  }

  /*============ FOOTER ===========*/
  #footer .top-line,
  #footer .bot-line {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #footer a.logo-holder {
    margin-right: 0;
    margin-bottom: 20px;
  }

  #footer .menu-holder {
    justify-content: center;
  }
}

@media (max-width: 769px) {
  .form-tabs {
    gap: 5px;
  }

  .form-tab {
    padding: 5px 10px;
  }

  .form-input {
    padding: 15px 20px;
  }

  /*========== BASE CONFIG ===========*/
  h2,
  h2.block-title,
  h2.block-title span,
  h2.block-title m {
    font-size: 35px;
  }

  /*========== ERROR PAGE ==========*/
  /* #main.error-page .wide-container:after {
    width: 70%;
    display: none;
  } */

  #main.error-page h1.error {
    font-size: 200px;
  }

  #main.error-page .wide-container {
    padding-top: 0;
  }

  /*=========== HEADER ==========*/
  #header .header-holder {
    gap: 10px;
  }

  #header a.logo-holder {
    max-width: 150px;
  }

  #header .contacts-holder {
    padding: 10px;
  }

  #header .contacts-holder .phone {
    font-size: 16px;
  }

  #header .contacts-holder .take-request {
    display: none;
  }

  #header a.logo-holder span {
    font-size: 16px;
  }

  /*=========== THEME MODAL =========*/
  .theme-modal {
    padding: 25px;
  }

  .theme-modal#modal-success {
    padding: 25px;
  }

  .theme-modal .form .form-bot,
  .theme-modal .form .inputs {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }

  .theme-modal .form .form-bot .btn {
    order: -1;
  }

  .theme-modal .form .apperance {
    margin: 0 auto;
    text-align: center;
  }

  .theme-modal .form textarea {
    height: 100px;
  }
}

@media (max-width: 498px) {
  /*========== BASE CONFIG ===========*/
  h1.page-title {
    font-size: 23px;
    line-height: 27px;
    margin-bottom: 25px;
  }

  h2,
  h2.block-title,
  h2.block-title span,
  h2.block-title m {
    font-size: 23px;
  }

  h2.block-title {
    margin-bottom: 20px;
  }

  .btn {
    padding: 20px 30px;
  }

  /*========== ERROR PAGE ==========*/
  /* #main.error-page .wide-container:after {
    width: 70%;
  } */

  #main.error-page h1.error {
    font-size: 120px;
  }

  #main.error-page h3 {
    font-size: 30px;
  }

  /*============ HEADER ===========*/
  #header {
    padding: 10px 0 0;
  }

  #header .header-holder {
    padding: 0 10px;
  }

  #header a.logo-holder {
    max-width: 120px;
    max-height: 70px;
  }

  #header .contacts-holder {
    padding: 5px;
  }

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

  #header a.logo-holder span {
    font-size: 12px;
  }

  #header #mobile-mnu a.logo-holder span {
    font-size: 16px;
    text-align: left;
  }

  .socials-fixed {
    gap: 5px;
    bottom: 10px;
    right: 10px;
  }

  .socials-fixed .social-item {
    width: 30px;
    height: 30px;
  }

  /*=========== THEME MODAL =========*/
  .theme-modal {
    padding: 40px 25px;
  }

  .theme-modal .title {
    font-size: 21px;
  }

  .theme-modal .form input,
  .theme-modal .form textarea {
    padding: 10px;
  }

  .theme-modal#modal-success {
    padding: 40px 25px;
  }
}


.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(--secondary);
    border: 1px solid var(--secondary);
    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: var(--secondary);
        border-color: var(--secondary);
    }
    
    /* Галочка внутри чекбокса */
    .policy-checkbox input[type="checkbox"]:checked::after {
        content: "✓";
        position: absolute;
        color: black;
        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;
    }




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