/*============= 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: 1920px !important;
    margin-left: calc(-1 * (1920px - 1170px) / 2) !important;
    margin-right: calc(-1 * (1920px - 1170px) / 2) !important;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}
@keyframes magic_light {
  0% {
    filter: drop-shadow(0px 0px -1px var(--col_light));
    -webkit-filter: drop-shadow(0px 0px -1px var(--col_light));
  }
  25% {
    filter: drop-shadow(0px 0px 10px var(--col_light));
    -webkit-filter: drop-shadow(0px 0px 10px var(--col_light));
  }
  50% {
    filter: drop-shadow(0px 0px 8px var(--col_light));
    -webkit-filter: drop-shadow(0px 0px 8px var(--col_light));
  }
  75% {
    filter: drop-shadow(0px 0px 10px var(--col_light));
    -webkit-filter: drop-shadow(0px 0px 10px var(--col_light));
  }
  100% {
    filter: drop-shadow(0px 0px -1px var(--col_light));
    -webkit-filter: drop-shadow(0px 0px -1px var(--col_light));
  }
}
@keyframes flip {
  0% {
    -webkit-transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
:root {
  --color_bg: #2c2c2c;
  --color_bg2: #0e0e0e;
  --color_text: #9c9c9c;
  --color_b2: #212121;
  --color_header: #212121;
  --color_header2: #2b2b2b;
  --color_border: #2c2c2c;
  --color_btn: #ffffff;
  --col_btn2: #2b2b2b;
  --col_btn_text: #111111;
  --col_btn_text2: #ffffff;
  --col_btn_border: #ffffff;
  --text_titles: #ffffff;
  --col_light: #ffffff;
  --col_swiper: #9c9c9c;
  --col_swiper2: #ffffff;
  --col_input: #181818;
  --col_close: #ffffff;
  --col_scroll: #9c9c9c;
  --col_scroll2: #ffffff;
}
/* =========== SCROLLBAR =========== */
/* Работает в Chrome, Edge и Safari */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background-color: var(--col_scroll);
  background-clip: padding-box;
  padding-left: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--col_scroll2);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--col_scroll2);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* =========== SCROLLBAR =========== */

* {
  margin: 0;
  padding: 0;
  font-family: "FoglihtenNo06";
  font-weight: 400;
  box-sizing: inherit;
  outline: none;
  appearance: none;
}

body {
  background: linear-gradient(180deg, var(--color_bg) 8.92%, var(--color_bg2) 100%);
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  /* -webkit-box-shadow: 0 0 20px 5px #32aaa0;
  box-shadow: 0 0 20px 5px #32aaa0; */
}

.btn_up {
  position: fixed;
  bottom: 50px;
  width: 50px;
  height: 50px;
  background: var(--color_btn);
  right: 50px;
  display: flex;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--col_btn2);
}
.btn_up svg path {
  fill: var(--col_btn2);
}
a {
  text-decoration: none;
  color: var(--color_text);
  transition: all 0.3s ease-in;
}
a:hover {
  filter: drop-shadow(0px 0px 2px var(--col_light));
}
.form_btn:hover {
  color: var(--col_btn_text2);
  background: var(--col_btn2);
  transition: all 0.3s ease-in;
}
.modal_btn:hover {
  color: var(--col_btn_text2);
  background: var(--col_btn2);
  transition: all 0.3s ease-in;
}
.header_modal:hover {
  color: var(--col_btn_text2);
  background: var(--col_btn2);
  transition: all 0.3s ease-in;
  border: solid var(--col_btn_border) 1px;
}
#header .social-item:hover {
  filter: drop-shadow(0px 0px 5px var(--col_light));
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}
#header .header_logo {
  width: 150px;
}
ul li {
  list-style-position: inside;
  color: var(--color_text);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}
ul li::marker {
  color: var(--color_text);
}
ol li {
  list-style-position: inside;
  color: var(--color_text);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}
p {
  margin-bottom: 15px;
  color: var(--color_text);
  font-size: 18px;
  line-height: 26px;
}

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

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;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
  content: none;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transition: all 0.3s ease-in;
  filter: drop-shadow(0px 2px 3px var(--col_light));
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-filter: drop-shadow(0px 2px 3px var(--col_light));
}
.breadcrumbs {
  padding: 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: var(--color_text);
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.breadcrumbs span.current-item {
  color: var(--text_titles);
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.nf-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text_titles);
  align-items: center;
  justify-content: center;
}
.a404img {
  font-size: 400px;
  line-height: 70%;
}
.error404 #header {
  display: none;
}
.nf-page .text {
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.nf-page .text-small {
  font-size: 20px;
  margin-bottom: 40px;
  margin-top: 10px;
}
@media (max-width: 700px) {
  .a404img {
    font-size: 200px;
  }
  .nf-page {
    text-align: center;
  }
}

#main,
#primary {
  min-height: 83vh;
}
.privacy-policy .content,
.privacy-policy .page-title {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  width: 100%;
}

.privacy-policy .page-title {
  margin-top: 30px;
  margin-bottom: 30px;
}

.privacy-policy .content h1,
.privacy-policy .content h2,
.privacy-policy .content h3,
.privacy-policy .content h4,
.privacy-policy .content h5,
.privacy-policy .content h6,
.privacy-policy .content p,
.privacy-policy .content a,
.privacy-policy .content span,
.privacy-policy .content strong {
  color: var(--color_text);
  font-family: "Manrope";
}
.privacy-policy .page-title {
  color: var(--color_text);
}

/*============ HEADER =================*/
#header {
  position: fixed;
  max-width: 1920px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--color_header);
  z-index: 9999;
}
.privacy-policy #header {
  position: sticky;
}
#header ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 10px;
}
#header ul li a {
  color: var(--text_titles);
  letter-spacing: 1px;
}
#header:not(#mobile-mnu) ul li {
  margin-bottom: 0px;
}
.btn_main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: var(--col_btn_text);
  font-family: "Manrope";
  background: var(--color_btn);
  border-radius: 50px;
  cursor: pointer;
  border: solid #fff0 1px;
}
.btn_main:hover {
  color: var(--col_btn_text2);
  background: var(--col_btn2);
}
#header .header_modal {
  font-weight: 500;
  line-height: 100%;
  font-family: "FoglihtenNo06";
  padding-top: 23px;
}
#header #mobile-mnu ul {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}
#header .header_bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color_header2);
  padding: 10px 0 10px 0;
}
#header .header_top .container {
  padding: 10px 15px 10px 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
#header .header_text {
  color: var(--text_titles);
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  text-align: right;
}
#header .emails_holder a,
#header .phones_holder a {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}
#header .contacts_container {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
#header .header_top_right_side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}
#header .soc_holder {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  #header .header_modal {
    width: 40px;
    height: 40px;
    -webkit-text-fill-color: transparent;
  }
  #header .soc_holder {
    display: none;
  }
}
#header .social-item {
  background-color: var(--color_bg);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*================ 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;
  cursor: pointer;
}
#header .burger.open_menu:hover {
  filter: drop-shadow(0px 0px 3px var(--col_light));
  -webkit-filter: drop-shadow(0px 0px 3px var(--col_light));
  transition: all ease-in 0.3s;
  -webkit-transition: all ease-in 0.3s;
  -moz-transition: all ease-in 0.3s;
  -ms-transition: all ease-in 0.3s;
  -o-transition: all ease-in 0.3s;
}
#header .burger.open_menu span {
  background-color: var(--text_titles);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
  background-color: var(--color_text);
}
#header .burger.open_menu.clicked span {
  background-color: var(--text_titles);
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background: linear-gradient(180deg, var(--color_bg) 8.92%, var(--color_bg2) 100%);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu .close-modal {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: block;
}
#header #mobile-mnu .close-modal svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#header #mobile-mnu .close-modal svg path {
  stroke: var(--col_close);
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: var(--color_text);
  font-weight: 450;
  letter-spacing: 1px;
  font-family: "Manrope";
}
#header #mobile-mnu a:hover {
  color: var(--text_titles);
}
#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 20px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#header #mobile-mnu .logo__holder img {
  max-height: 100px;
  max-width: 250px;
  object-fit: contain;
}
#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: var(--color_text);
  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: var(--color_text);
  gap: 15px;
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--color_text);
}
#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;
  gap: 15px;
}
#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--color_text);
  gap: 10px;
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--color_text);
}
#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: var(--color_bg);
  transition: background-color 0.3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: var(--color_text);
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}
#header .mobile_ver {
  display: none;
  padding: 0;
}
/*MEDIA*/
@media (max-width: 1200px) {
  #header .burger.open_menu {
    display: flex;
  }
  #header .header_bottom {
    display: none;
  }
  #header .header_top .container {
    gap: 10px;
  }
  #header .contacts_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #header .phones_holder a .header_socials_img,
  #header .header_modal {
    display: none;
  }
}
@media (max-width: 800px) {
  #header .soc_holder {
    display: none;
  }
}
@media (max-width: 600px) {
  #header .header_modal {
    position: relative;
  }
  #header .header_modal:not(.mobile_ver) {
    display: none;
  }
  /* #header .mobile_ver {
    display: flex;
  } */
  #header .mobile_ver:hover {
    filter: invert(1);
  }
  #header .header_logo {
    width: 100px;
  }
  #header .header_top_right_side {
    gap: 10px;
  }
  #header .header_text {
    font-size: 16px;
  }
  #header .mobile_ver svg {
    position: absolute;
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  #header .mobile_ver svg path {
    stroke: var(--col_btn2);
  }
}

/*MEDIA*/

/*============ FOOTER ===============*/
/* ============== MODAL ============= */
#footer .form__holder .policy {
  color: var(--text_titles);
  margin: 0 auto;
  text-align: center;
  letter-spacing: 2px;
}
#footer .form__holder .grampus__policy {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--text_titles);
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 2px;
}

input.error {
  border: solid 1px red !important;
  filter: drop-shadow(0px 0px 5px red);
}
#footer {
  background-color: var(--color_bg2);
}
#footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
/*MODAL*/
#footer #modal-order {
  background: var(--color_bg);
  width: 100%;
  height: fit-content;
  max-width: 1200px;
  overflow-y: auto;
}
#footer #modal-order .form_btn {
  transition: all 0.5s ease-in-out;
}
#footer #modal-order .form_btn:hover {
  color: var(--color_btn);
  background: var(--col_btn_text);
}
#footer #modal-order .row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
#footer #modal-order .info {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer #modal-order .row_text {
  white-space: nowrap;
}
#footer #modal-order .close-modal {
  z-index: 99;
  filter: drop-shadow(0px 0px 2px var(--col_light));
}
#footer #modal-order .dash-line {
  width: 100%;
  margin: 0px 15px 0px 15px;
  position: relative;
}
#footer #modal-order .dash-line::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 2px;
  background-image: url(../images/line.png);
}
#footer #modal-order .description,
#footer #modal-order .textarea_title,
#footer #modal-order .row_text {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: var(--color_text);
}
#footer #modal-order .input_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  row-gap: 15px;
  column-gap: 15px;
  padding-bottom: 15px;
  padding-top: 20px;
}
#footer #modal-order .bottom-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}
#footer #modal-order .bottom-holder p,
#footer #modal-order .bottom-holder .policy {
  margin: 0;
}
#footer #modal-order .right-side {
  width: 50%;
  height: fit-content;
  object-fit: cover;

}
#footer #modal-order .new_price {
  font-weight: 500;
  font-size: 32px;
  line-height: 41px;
  color: var(--text_titles);
  width: fit-content;
  letter-spacing: 2px;
}
#footer #modal-order .old_price {
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 1px;
  color: var(--color_text);
  width: fit-content;
  text-decoration-line: line-through;
}
#footer #modal-order .price_holder {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
}
#footer #modal-order .mid_holder {
  display: flex;
  flex-direction: column;
  padding: 30px;
  padding-bottom: 30px;
}
#footer #modal-order .subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: var(--text_titles);
  padding-top: 20px;
  letter-spacing: 1px;
}
#footer #modal-order .mid_holder .tabs-holder {
  margin-top: 20px;
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
#footer #modal-order .mid_holder .tabs-holder .tab {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--col_btn_text2);
  background: var(--col_btn2);
  width: fit-content;
  border-radius: 50px;
  padding: 10px 20px 10px 20px;
  border: solid #fff 2px;
  cursor: pointer;
}
#footer #modal-order .mid_holder .tabs-holder .tab:hover {
  color: var(--col_btn_text);
  background: var(--color_btn);
  transition: 0.5s;
}
#footer #modal-order .right-side .slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#footer #modal-order .right-side .swiper-slide {
  width: 100%;
}
#footer #modal-order .swiper-button-next,
#footer #modal-order .swiper-button-prev {
  background: var(--col_swiper);
  border-radius: 50%;
  height: 33px;
  width: 33px;
}
#footer #modal-order .swiper-button-next svg path,
#footer #modal-order .swiper-button-prev svg path {
  stroke: var(--col_swiper2);
}
#footer #modal-order .modal-swiper {
  width: 100%;
  height: 100%;
}
#footer #modal-order .modal-swiper-first {
  margin-bottom: 20px;
  height: 400px;
}
#footer #modal-order .top-holder {
  display: flex;
  flex-direction: row;
}
#footer #modal-order .form__holder .wpcf7-submit {
  width: fit-content;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 30px;
}
#footer #modal-order input {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  gap: 10px;
  width: 100%;
  min-width: 200px;
  height: 62px;
  background: var(--col_input);
  border: 2px solid var(--color_border);
  border-radius: 50px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--color_text);
}
#footer #modal-order .left-side {
  width: 50%;
  padding: 30px;
}
#footer #modal-order .title {
  font-weight: 500;
  font-size: 32px;
  line-height: 41px;
  color: var(--text_titles);
  width: fit-content;
  letter-spacing: 2px;
}
#footer #modal-order .wpcf7-submit {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: var(--col_btn_text);
  font-family: "Manrope";
  background: var(--color_btn);
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  border: none;
  font-size: 16px;
  line-height: 135%;
}
#footer #modal-call br {
  display: none;
}
#modal-call .form-v2 {
  width: 100%;
}
#modal-call input {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  gap: 10px;
  width: 100%;
  min-width: 200px;
  height: 62px;
  background: var(--col_input);
  border: 2px solid var(--color_border);
  border-radius: 50px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--color_text);
}
#modal-call textarea {
  resize: none;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  gap: 10px;
  width: 100%;
  min-width: 200px;
  background: var(--col_input);
  border: 2px solid var(--color_border);
  border-radius: 10px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--color_text);
}
.input-file {
  margin-top: 20px;
  margin-bottom: 5px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  transition: 0.6s;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.input-file input[type="file"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
.input-file span {
  font-weight: 700;
  font-size: clamp(16px, 0.00625 * 100vw + 14px, 26px);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--col_light);
  transition: color 0.4s ease-out;
}
.input-file .input-file-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  vertical-align: middle;
  color: var(--col_light);
  text-align: center;
  padding: 13px 20px;
  box-sizing: border-box;
  margin: 0;
  transition: background-color 0.2s;
  transition: 0.6s;
  width: 100%;
  background: transparent;
  border: 1px solid var(--col_btn_text2);
}
.form-file .input-file-list-item {
  margin-top: 5px;
  color: white;
  display: block;
  width: fit-content;
}
.form-file .input-file-list-item:last-child {
  margin-top: 0;
}
.form-file .input-file-list-name {
  display: block;
  color: white;
}
#footer #modal-call .form-v2 .submit {
  margin-top: 20px;
}
#footer #modal-call .form-v2 {
  gap: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
}
#footer #modal-call .form-v2 .submit .form_btn {
  width: 100%;
}
#footer #modal-call {
  height: auto;
  width: auto;
  padding: 30px;
  max-width: 370px;
  background: var(--color_b2);
}
#footer #modal-call .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  color: var(--text_titles);
  margin-bottom: 10px;
}
#footer #modal-call .subtitle {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: var(--text_titles);
}
#footer #modal-call .textarea_title {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: var(--color_text);
  margin-bottom: 5px;
}
#footer #modal-call .input_container {
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  #footer #modal-order .top-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  #footer #modal-order .right-side {
    width: 100%;
  }
  #footer #modal-order .left-side {
    width: 100%;
  }
  #footer #modal-order .mid_holder .tabs-holder,
  #footer #modal-order .mid_holder .price_holder {
    justify-content: center;
  }
  #footer #modal-order .subtitle {
    text-align: center;
  }
}
@media (max-width: 500px) {
  #footer #modal-order .input_container {
    grid-template-columns: 1fr;
  }
  #footer #modal-order .bottom-holder {
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }
}
/*MODAL*/

#footer .open_modal {
  font-family: "FuturaPT-Book";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  text-align: center;
  color: var(--color_text);
  cursor: pointer;
}
#footer .GRAMPUS_logo {
  font-family: "Raleway-Black";
  font-style: normal;
  font-weight: 900;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--color_text);
}
#footer .developer-link {
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: "FuturaPT-Book";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  text-align: center;
  color: var(--color_text);
}
#footer .theme-modal {
  height: 400px;
  width: 600px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: var(--color_bg);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
}
#footer .theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
#footer .theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
#footer .theme-modal .close-modal svg {
  width: 100%;
  height: 100%;
}
#footer .theme-modal .close-modal svg path {
  stroke: var(--col_close);
}
#footer #modal-privacy {
  padding: 15px;
  max-width: 1200px;
  width: 100%;
  height: fit-content;
  overflow-y: auto;
}
#footer #modal-privacy * {
  font-family: "Manrope";
  color: var(--color_text);
}
#footer #modal-offer .title {
  color: var(--color_text);
  margin-bottom: 20px;
  padding-right: 30px;
}
#footer #modal-privacy .title {
  margin-bottom: 20px;
}
#footer #modal-privacy .title {
  padding-right: 30px;
}
#footer #modal-offer {
  padding: 15px;
  max-width: 1200px;
  width: 100%;
  height: fit-content;
  overflow-y: auto;
  z-index: 999999;
}
#footer #modal-offer * {
  font-family: "Manrope";
}
#footer #modal-offer .title {
  padding-right: 30px;
}
#footer .footer_privacy_holder {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer #modal-success {
  display: flex;
  /* background: radial-gradient(circle, rgb(255 255 255) 55%, rgb(123 123 123) 100%); */
  background: var(--color_bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer #modal-success .title {
  font-size: 50px;
  color: var(--color_text);
}
#footer #modal-success .subtitle {
  font-size: 30px;
  font-weight: 800;
  margin-top: 20px;
  text-align: center;
  padding: 10px;
  color: var(--color_text);
}
#footer .theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ============= MEDIA QUERIES =========== */
@media (max-width: 600px) {
  #footer {
    padding: 15px 0;
  }
  #footer .container {
    flex-direction: column;
    justify-items: center;
    gap: 15px;
    padding: 5px;
  }
  #footer .developer-link {
    padding: 0;
  }
}
/*# sourceMappingURL=main.css.map */
