/*============= 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;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }
}

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

:root {
  --font-size-26-60: clamp(26px, calc((100vw - 320px)/(1970 - 320) * (60 - 26) + 26px), 60px);
  --font-size-22-40: clamp(22px, calc((100vw - 320px)/(1970 - 320) * (40 - 22) + 22px), 40px);
  --font-size-20-32: clamp(20px, calc((100vw - 320px)/(1970 - 320) * (32 - 20) + 20px), 32px);
  --font-size-16-24: clamp(16px, calc((100vw - 320px)/(1970 - 320) * (24 - 16) + 16px), 24px);
  --font-size-14-24: clamp(14px, calc((100vw - 320px)/(1970 - 320) * (24 - 14) + 14px), 24px);
  --font-size-16-20: clamp(16px, calc((100vw - 320px)/(1970 - 320) * (20 - 16) + 16px), 20px);
  --font-size-14-16: clamp(14px, calc((100vw - 320px)/(1970 - 320) * (16 - 14) + 14px), 16px);
  --font-size-20-155: clamp(20px, calc((100vw - 320px)/(1970 - 320) * (155 - 20) + 20px), 155px);
  --font-size-14: 14px;
  --green: #25D366;
  --hover: #E8373E;
  --border: #E9EAE5;
  --primary: #D91916;
  --primary-hover: #F22626;
  --head-primary: #FFFFFF;
  --primary-text: #D0D4DB;
  --secondary-text: #989898;
  --background: #1D2331;
  --background-secondary: #262E41;
  --stroke: #7381AC;
  --error: #8E0909;
  --succses: #88FF47;
  --star: #FFC107;
}

::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-track {
  background: var(--stroke);
  width: 2px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary) !important;
  border-radius: 100px;
  width: 1px;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Golos-Text', sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--background);
  /*max-width: 1920px;*/
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: var(--head-primary);
}

a {
  text-decoration: none;
  color: #121212;
  transition: all 0.3s ease-in;
}

a:hover {
  color: #F6C4DF;
}

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

ul li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

p {
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-size: var(--font-size-26-60);
  font-weight: 600;
  line-height: 120%;
  color: var(--head-primary);
  margin-bottom: 40px;
}

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 {
  width: 100%;
  overflow: hidden;
}

.breadcrumbs {
  padding: 10px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #DFDFDF;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs__icon {
  font-size: 9px !important;
}

.breadcrumbs span {
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 155%;
  color: var(--secondary-text);
}

.breadcrumbs>span {
  margin-right: 8px;
}

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

.breadcrumbs span:not(.current-item):not(.breadcrumbs__icon) {
  transition: all .3s;
}

.breadcrumbs span:not(.current-item):not(.breadcrumbs__icon):hover {
  color: var(--primary-hover);
}

.container__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.container .container {
  padding: 0;
}

.container-margin-100 {
  margin-bottom: 100px !important;
  margin-top: 100px !important;
}

.title-block {
  color: var(--head-primary);
  font-size: var(--font-size-22-40);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.container-margin-bottom-100 {
  margin-bottom: 100px !important;
}

.container-margin-80 {
  margin-bottom: 80px !important;
  margin-top: 80px !important;
}

.container-margin-bottom-80 {
  margin-bottom: 80px !important;
}

.container-padding-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

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

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

.privacy-policy .content * {
  color: var(--head-primary);
  margin-bottom: 10px;
}

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

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-width: 225px; */
  padding: 20px 30px;
  width: fit-content;
  height: 60px;
  background: transparent;
  /* background-color: var(--primary); */
  border: 1px solid var(--primary);
  outline: none;
  font-family: 'Golos-Text', sans-serif;
  color: var(--head-primary);
  font-size: var(--font-size-14-16);
  line-height: 125%;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.btn::before {
  content: '';
  width: 0;
  height: 100%;
  background-color: var(--primary-hover);
  position: absolute;
  transition: all .3s;
  left: 0;
  z-index: -1;
}

.btn::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  position: absolute;
  transition: all .3s;
  left: 0;
  z-index: -2;
}

.btn:hover::before {
  width: 100%;
}

.btn.border {
  border: 1px solid var(--primary);
}

.btn.border::after {
  background-color: var(--background-secondary);
}

.btn:hover {
  color: #fff;
}

.btn:hover svg path {
  fill: rgba(18, 223, 236, 0.5);
}

.btn:focus {
  letter-spacing: normal;
}

.btn.dark::after {
  background-color: var(--background-secondary);
}

.btn.dark::before {
  background-color: var(--head-primary);
}

.btn.stroke::after {
  background-color: var(--stroke);
}

.btn.stroke::before {
  background-color: var(--head-primary);
}

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

.btn.invert {
  background-color: #f6c4df;
  color: #fff;
}

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

.hover__wrapper {
  position: relative;
  overflow: hidden;
  outline: none;
  display: block;
  width: fit-content;
  height: fit-content;
}

.hover__wrapper::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.hover__wrapper:hover::after {
  visibility: visible;
  opacity: 1;
}

.hover__wrapper img {
  transition: all .3s;
}

.hover__wrapper:hover img {
  transform: scale(1.1);
}

.hover__loop {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--head-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  z-index: 2;
}

.hover__wrapper:hover .hover__loop {
  visibility: visible;
  opacity: 1;
}

.hover__loop svg {
  width: 20px;
  height: 20px;
}

.hover-element__text {
  transition: all .3s;
}

.hover-element__text:hover {
  color: var(--primary-hover);
}

.hover-element__block {
  transition: all .3s;
  position: relative;
}

.hover-element__block::after {
  content: '';
  width: 0;
  height: 100%;
  background-color: var(--primary-hover);
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s;
  z-index: -1;
}

.hover-element__block:hover::after {
  width: 100%;
}

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

.logo {
  max-width: 360px;
  max-height: 160px;
  width: 100%;
}

.logo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-container-info-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 1024px) {
  h1.page-title {
    margin-bottom: 20px;
  }

  .logo__img {
    object-fit: contain;
  }

  .title-block {
    margin-bottom: 15px;
  }

  .container-margin-100 {
    margin-bottom: 40px !important;
    margin-top: 40px !important;
  }

  .container-margin-bottom-100 {
    margin-bottom: 40px !important;
  }

  .container-margin-80 {
    margin-bottom: 20px !important;
    margin-top: 20px !important;
  }

  .container-margin-bottom-80 {
    margin-bottom: 20px !important;
  }

  .container-padding-80 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/*============ SOCIAL =================*/
.socails {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.socail {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stroke);
  position: relative;
}

.socail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-hover);
  width: 0;
  height: 100%;
  transition: all .3s;
  z-index: -1;
}

.socail__icon {
  width: 30px;
  height: 30px;
  object-fit: cover;
  transition: all .3s;
}

.socail:hover .socail__icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(2026%) hue-rotate(200deg) brightness(121%) contrast(100%);
}

.socail:hover {
  transition: all .3s;
  border: 1px solid var(--primary-hover);
}

.socail:hover::before {
  width: 100%;
}

/*============ SEARCH =================*/
#searchform {
  width: 100%;
}

#searchform>label {
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
  background-color: var(--background-secondary);
  position: relative;
  padding: 17.5px 30px;
}

#searchsubmit {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}

#s {
  background-color: var(--background-secondary);
  width: 100%;
  outline: none;
  border: none;
  color: var(--secondary-text);
  font-size: var(--font-size-14-16);
  line-height: 120%;
}

#s::placeholder {
  color: var(--secondary-text);
  opacity: 1;
}

.searchsubmit__button {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.searchsubmit__button svg path {
  transition: all .3s;
}

.searchsubmit__button:hover svg path {
  fill: var(--stroke);
}

.header-container__bottom {
  display: flex;
  gap: 20px;
}

.header-container__bottom .btn {
  max-width: 377px;
  width: 100%;
}

/*============ INPUT =================*/
.form-too-input {
  display: flex;
  gap: 30px;
}

.form__wrapper {
  margin-bottom: 40px;
}

.input__wrapper {
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
}

.input__placeholder {
  position: absolute;
  left: 30px;
  top: 18px;
  color: var(--primary-text);
  font-size: var(--font-size-14-16);
  line-height: 120%;
  font-weight: 300;
  background: transparent;
  transition: all 0.3s;
}

.input {
  outline: none;
  height: 60px;
  width: 100%;
  background: transparent;
  padding-top: 28px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 7px;
  color: var(--primary-text);
  border: 1px solid rgba(255, 255, 255, 0);
}

.textarea {
  height: 340px;
  width: 100%;
  color: var(--primary-text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0);
  outline: none;
  padding-top: 28px;
  padding-left: 30px;
  padding-bottom: 8px;
  resize: none;
}

.theme-modal-textarea {
  margin-top: 20px;
  margin-bottom: 40px;
}

.theme-modal .input {
  height: 60px;
  border: none;
}

.input::placeholder,
.textarea::placeholder {
  opacity: 1;
  color: transparent;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  color: var(--head-primary) !important;
}

.input:focus,
.textarea:focus {
  color: var(--head-primary) !important;
}

.content__left {
  width: 100%;
  display: flex;
  justify-content: right;
  position: relative;
  z-index: 2;
}

.input__wrapper.focus .input__placeholder {
  top: 7px;
  left: 30px;
  font-size: 12px;
  background-color: transparent;
}

.input__wrapper.focus .input::placeholder,
.input__wrapper.focus .textarea::placeholder {
  color: var(--primary-text);
}

.input__wrapper.focus .input,
.input__wrapper.focus .textarea {
  border: 1px solid rgba(255, 255, 255, 1);
}

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

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

.input.error+.input__placeholder,
.textarea.error+.input__placeholder {
  color: var(--error);
}

.form .btn {
  max-width: 100%;
  width: 100%;
  margin-bottom: 10px;
}

.privice-form,
.privice-form a {
  color: var(--head-primary);
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 120%;
  transition: all .3s;
}

.privice-form a:hover {
  color: var(--background-secondary);
}

.title {
  color: var(--head-primary);
  font-size: var(--font-size-16-24);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 10px;
}

.subtitle {
  font-size: var(--font-size-14-16);
  font-weight: 400;
  line-height: 155%;
  color: var(--head-primary);
  margin-bottom: 40px;
}

.subtitle:last-child {
  margin-bottom: 0;
}

.file__title {
  background-color: var(--stroke);
}

.form__file.file {
  margin-bottom: 40px;
}

.form__file.file input.hidden {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.file__title.btn {
  margin-bottom: 0;
}

.form__text {
  color: var(--head-primary);
  font-size: var(--font-size-14-16);
  font-weight: 400;
  line-height: 155%;
}

.file__item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.file__item p {
  color: var(--head-primary);
  font-size: var(--font-size-14-16);
  font-weight: 400;
  line-height: 155%;
}

.file__item svg {
  cursor: pointer;
}

.file__item .file__item-delete {
  height: 15px;
  width: 15px;
}

.file__item .file__item-delete svg path {
  transition: all .3s;
}

.file__item .file__item-delete:hover svg path {
  fill: var(--stroke);
}

.fancybox__backdrop {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

/*============ HEADER =================*/
#header {
  z-index: 1000;
  position: sticky;
  top: 0;
}

.header__wrapper {
  border-bottom: 2px solid var(--primary);
  padding: 10px 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 35, 49, 0.8);
  backdrop-filter: blur(10px);
}

.header-container {
  position: relative;
}

.header-container__top {
  display: flex;
  gap: 40px;
  position: absolute;
  top: -7px;
  max-width: 750px;
}

.header__wrapper .container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-container-info-item__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.header-container-info-item__text,
.header-container-info-item__text p {
  font-size: var(--font-size-14);
  font-weight: 400;
  color: var(--primary-text);
  line-height: 140%;
  margin-bottom: 0;
}

.header-container {
  width: 100%;
}

#header #menu-menyu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 100%;
  flex-grow: 1;
  gap: 10px;
}

.header-container__nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 15px;
}

.header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}

.header-phone__online {
  position: relative;
  padding-left: 10px;
  font-size: var(--font-size-14);
  color: var(--primary-text);
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 4px;
}

.header-phone__online::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--green);
  top: 50%;
  left: 0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.header-phone {
  color: var(--head-primary);
  font-size: var(--font-size-14-24);
  line-height: 125%;
  font-weight: 600;
  white-space: nowrap;
}

#header .nav-menu-element {
  margin-bottom: 0;
}

.nav-menu-element {
  position: relative;
  list-style: none;
}

.nav-menu-element>a {
  font-size: var(--font-size-16-20);
  font-weight: 600;
  line-height: 125%;
  color: var(--head-primary);
  transition: all .3s;
  white-space: nowrap;
  position: relative;
  width: fit-content;
}

.nav-menu-element:hover>a {
  color: var(--primary);
}

#menu-menyu-podval .nav-menu-element {
  width: fit-content;
}

.nav-menu-element a::before {
  content: '';
  height: 2px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -4px;
  background-color: var(--primary);
  transition: all .3s;
}

.nav-menu-element:hover>a::before {
  width: 100%;
}

#header .nav-menu-element.has-childs>a {
  padding-right: 22px;
}

.nav-menu-element.has-childs {
  cursor: pointer;
}

#header .header-container .nav-menu-element.has-childs>a::after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0px;
  transition: all .3s;
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
  transform-origin: center;
}

.nav-menu-element.has-childs:hover>a::after {
  transform: rotate(-180deg);
  filter: brightness(0) saturate(100%) invert(29%) sepia(79%) saturate(6138%) hue-rotate(352deg) brightness(86%) contrast(98%);
}

#header .header-container .sub-menu::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -10px;
  z-index: -1;
}

#header .header-container .sub-menu {
  position: absolute;
  padding: 30px;
  padding-bottom: 45px;
  background-color: var(--background-secondary);
  border: 1px solid var(--stroke);
  z-index: 1000;
  transition: all .3s;
  visibility: hidden;
  opacity: 0;
}

#header .header-container .nav-menu-element.has-childs:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

#header .header-container .sub-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 15px;
  top: 30px;
}

#header .header-container .sub-menu .nav-menu-element>a {
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 155%;
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}

#header .burger.open_menu span {
  background-color: #D12D26;
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: #D12D26;
}

#header .burger.open_menu.clicked span {
  background-color: #fff;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--background-secondary);
  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: #D12D26;
}

#header #mobile-mnu a {
  font-size: var(--font-size-14-16);
  line-height: 120%;
  color: var(--head-primary);
  font-weight: 400;
}

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

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

#header #mobile-mnu .nav-menu-element.has-childs a {
  margin-bottom: 10px;
  display: block;
}

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

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

#header #mobile-mnu .nav-menu-element.has-childs .sub-menu .nav-menu-element {
  padding-left: 20px;
  position: relative;
}

#header #mobile-mnu .menuTop li:last-child {
  margin-bottom: 0;
}

#header #mobile-mnu .nav-menu-element.has-childs .sub-menu .nav-menu-element::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--head-primary);
}

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

#header #mobile-mnu .menuTop li a {
  font-size: var(--font-size-14-16);
  line-height: 120%;
  color: var(--head-primary);
  font-weight: 400;
  white-space: wrap;
}

#header #mobile-mnu .menuTop li a:hover {
  color: #D12D26;
}

#header #mobile-mnu .menuTop li.active a {
  color: #D12D26;
}

#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: #D12D26;
}

#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 .phones__holder .phone__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 .phones__holder .phone__item:hover {
  color: #D12D26;
}

#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 .3s ease-in;
}

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

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

#header #mobile-mnu .logo-holder {
  margin-bottom: 15px;
}

#header #mobile-mnu .phones-holder,
#header #mobile-mnu .emails-holder,
#header #mobile-mnu .address-holder {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#header #mobile-mnu .phones-holder .phone,
#header #mobile-mnu .emails-holder .email,
#header #mobile-mnu .address-holder .address p {
  font-size: var(--font-size-16-20);
  color: var(--head-primary);
  font-weight: 500;
}

#header #mobile-mnu .phones-holder .phone:hover,
#header #mobile-mnu .emails-holder .email:hover {
  color: var(--primary);
}

.header-info .header-container-info-item {
  display: none;
}

.header-info .header-container-info-item__text p {
  text-align: right;
}

@media(max-width: 1500px) {
  .header-container__top {
    position: static;
    margin-top: 10px;
  }
}

@media (max-width: 1250px) {
  #header .header-container .header-container__nav .socails {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header-container__bottom {
    display: none;
  }

  .header-info {
    gap: 0px;
    flex-direction: column;
  }

  .header-container__nav #menu-menyu {
    display: none !important;
  }

  .header-info .header-container-info-item {
    display: block;
  }

  .logo {
    max-width: 200px;
    max-height: 120px;
    min-width: 105px;
    min-height: 50px;
  }

  .header-container__nav {
    justify-content: flex-end;
    align-items: center;
  }

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

  .header-container__top {
    gap: 20px;
  }

  .header-container__top {
    display: none;
  }

  .header-container__nav {
    margin-bottom: 0;
  }

  .header-container-info-item__icon {
    display: none;
  }
}

@media(max-width: 768px) {
  .header-phone__online {
    display: none;
  }

  .header-container__nav {
    gap: 5px;
  }

  .container__wrapper {
    padding: 0;
  }

  .header__wrapper .container {
    gap: 10px;
  }
}

/*============ GRAMPUS ===============*/
.grampus {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.grampus p {
  color: var(--head-primary);
  margin-bottom: 0;
  font-size: var(--font-size-14);
  font-weight: 400;
  transition: all .3s;
}

.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(--head-primary);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  /* transition: var(--Transition); */
}

.grampus__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  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;
}

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

  50% {
    transform: translateX(0);
  }

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

.grampus:hover p {
  color: var(--primary-hover);
}

.grampus:hover .grampus__img {
  background-color: var(--primary-hover);
}

/*============ FOOTER ===============*/
#footer .logo {
  display: block;
  max-width: 270px;
  max-height: 105px;
}

#footer {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 100px;
}

.text-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: var(--font-size-20-155);
  line-height: clamp(20px, calc(var(--font-size-20-155) - 35px), 120px);
  font-weight: 600;
  color: var(--background);
  z-index: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 10px;
  margin-bottom: 80px;
}

.footer-nav>.footer-item:last-child {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: flex-start;
}

.footer-item__navigation {
  display: flex;
  justify-content: space-between;
  max-width: 775px;
  width: 100%;
  gap: 15px;
}

.footer-wrapper {
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
  backdrop-filter: opacity(.5);
  background-color: var(--background-secondary);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-wrapper .container {
  z-index: 2;
  position: relative;
}

#menu-menyu-podval .nav-menu-element a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: var(--font-size-14-16);
}

#menu-katalog-podval .nav-menu-element.has-childs:hover>a::before {
  width: 0;
}

#menu-katalog-podval .nav-menu-element.has-childs>a::before {
  content: '';
  height: 2px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -3px;
  background-color: var(--primary);
  transition: all .3s;
}

#menu-katalog-podval .nav-menu-element.has-childs>a:hover::before {
  width: 100%;
}

#menu-katalog-podval .nav-menu-element.has-childs>a {
  font-weight: 500;
  font-size: var(--font-size-14-16);
  line-height: 125%;
  text-transform: uppercase;
  color: var(--head-primary);
}

#menu-katalog-podval .nav-menu-element.has-childs>a:hover {
  color: var(--primary);
}

#menu-katalog-podval .nav-menu-element:not(.has-childs) a {
  font-size: var(--font-size-14-16);
  font-weight: 400;
  color: var(--secondary-text);
  line-height: 155%;
}

#menu-katalog-podval .nav-menu-element.has-childs>a {
  display: block;
  margin-bottom: 15px;
}

#menu-katalog-podval .nav-menu-element .sub-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  row-gap: 10px;
  column-gap: 30px;
}

#menu-katalog-podval .nav-menu-element .sub-menu .nav-menu-element {
  margin-bottom: 0;
}

#menu-katalog-podval .nav-menu-element .sub-menu .nav-menu-element>a {
  transition: all .3s;
}

#menu-katalog-podval .nav-menu-element .sub-menu .nav-menu-element:hover>a {
  color: var(--head-primary);
}

#menu-katalog-podval .nav-menu-element .sub-menu .nav-menu-element:hover>a::before {
  width: 0;
}

.footer__name-company {
  font-size: var(--font-size-16-20);
  font-weight: 600;
  color: var(--head-primary);
  line-height: 125%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__requisites p {
  font-size: var(--font-size-14-16);
  font-weight: 400;
  line-height: 155%;
  color: var(--stroke);
  margin-bottom: 10px;
}

.footer__requisites p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom__privice {
  color: var(--secondary-text);
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 125%;
  text-decoration: underline;
  transition: all .3s;
}

.footer-bottom__privice:hover {
  color: var(--primary-hover);
}

.footer-privce {
  font-size: var(--font-size-14);
  line-height: 155%;
  color: var(--secondary-text);
  font-weight: 400;
}

@media (max-width: 1200px) {
  #menu-katalog-podval .nav-menu-element .sub-menu {
    gap: 15px;
  }
}

@media (max-width: 1024px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-item__navigation {
    flex-direction: column;
  }

  .footer-nav>.footer-item:last-child {
    align-items: start;
  }

  .footer-nav {
    margin-bottom: 20px;
  }

  #footer {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  #menu-katalog-podval .nav-menu-element .sub-menu {
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
  }
}

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

.theme-modal__wrapper {
  max-width: 490px;
  width: 100%;
}

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

.theme-modal.fancybox__content {
  max-width: 750px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 15px;
  background-color: var(--primary);
}

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

.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  stroke: var(--primary);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.close-modal svg path {
  transition: all .3s;
}

.close-modal:hover svg path {
  fill: var(--background);
}

@media (max-width: 768px) {
  .theme-modal.fancybox__content {
    padding: 15px;
  }

  .form-too-input {
    flex-direction: column;
    gap: 10px;
  }
}

/*============ TABLE PRICE LIST ===============*/
.servie-price-list-table__wrapper {
  overflow-x: auto;
}

.servie-price-list-table {
  width: 100%;
  min-width: 1100px;
}

.servie-price-list-table thead {
  background-color: var(--primary-text);
}

.servie-price-list-table tr {
  display: flex;
  padding: 20px 30px;
  gap: 25px;
  justify-content: space-between;
}

.servie-price-list-table-item {
  text-align: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  max-width: 210px;
  width: 100%;
}

.servie-price-list-table-item:last-child {
  border-left: none;
  border-right: none;
}

.servie-price-list-table-head {
  max-width: 1050px;
  width: 100%;
}

.servie-price-list-table thead td {
  font-size: var(--font-size-16-20);
  color: var(--background-secondary);
  font-weight: 600;
  line-height: 125%;
}

.servie-price-list-table tbody tr {
  background: var(--background-secondary);
  border-bottom: 1px solid var(--stroke);
}

.servie-price-list-table__name-value {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 125%;
  color: var(--primary-text);
}

.servie-price-list-table__price-discount {
  color: var(--primary);
  font-size: var(--font-size-16-20);
  line-height: 125%;
  font-weight: 600;
}

.servie-price-list-table__price {
  color: var(--head-primary);
  font-size: var(--font-size-16-20);
  line-height: 125%;
  font-weight: 600;
}

.servie-price-list-table__price.servie-price-list-table__item--is-discount {
  color: var(--secondary-text);
  text-decoration: line-through;
}

/*============ SERVICE ===============*/
.service-archive__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-item {
  padding: 20px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  position: relative;
}

.service-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--background-secondary);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.service-item::before {
  content: '';
  width: 0;
  height: 100%;
  background-color: var(--primary-hover);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .3s;
}

.service-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-item__min-price {
  color: var(--secondary-text);
  font-size: var(--font-size-16-24);
  font-weight: 600;
  line-height: 125%;
  transition: all .3s;
}

.service-item__img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.service-item__name {
  font-size: var(--font-size-16-20);
  line-height: 125%;
  font-weight: 600;
  color: var(--head-primary);
  max-width: 260px;
  transition: all .3s;
}

.service-item:hover::before {
  width: 100%;
}

.service-item:hover .service-item__name {
  color: var(--background-secondary);
}

.service-item:hover .service-item__min-price {
  color: var(--background-secondary);
}

.service-item:hover .service-item__img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(38%) saturate(539%) hue-rotate(183deg) brightness(99%) contrast(91%);
}

@media (max-width: 1024px) {
  .service-archive__holder {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .service-item {
    min-height: 150px;
  }

  .service-archive__holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media(max-width: 620px) {
  .service-archive__holder {
    grid-template-columns: 1fr;
  }
}

/* ============= ADVANTAGES ITEM =========== */
.advantages-item {
  background-color: var(--background-secondary);
  padding: 20px 30px;
  border-bottom: 4px solid var(--primary-hover);
  min-height: 210px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 15px;
}

.advantages-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.advantages-item__name {
  font-size: var(--font-size-16-20);
  font-weight: 600;
  color: var(--head-primary);
  line-height: 120%;
  margin-bottom: 0;
}

.advantages-item__icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.advantages-item__text {
  color: var(--primary-text);
  font-size: var(--font-size-14-16);
  font-weight: 400;
  line-height: 155%;
}

@media(max-width: 768px) {
  .advantages-item {
    min-height: 150px;
  }
}

/* ============= SERVICE TAX =========== */
#service-hero .service-hero__wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: var(--background-secondary);
}

.service-hero-title-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.service-hero-title-wrapper h1.page-title {
  margin-bottom: 0;
}

.service-hero__icon {
  max-width: 100px;
  max-height: 55px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-hero__left {
  max-width: 880px;
  width: 100%;
}

.service-hero__content {
  margin-bottom: 40px;
}

.service-hero__content p,
.service-hero__content li {
  font-size: var(--font-size-14-16);
  font-weight: 400;
  line-height: 155%;
  color: var(--primary-text);
  position: relative;
  list-style: none;
}

.service-hero__content h2 {
  font-size: var(--font-size-16-24);
  font-weight: 600;
  line-height: 125%;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-hero__content p {
  margin-bottom: 15px;
}

.service-hero__content li {
  padding-left: 20px;
  margin-bottom: 10px;
}

.service-hero__content li::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.service-hero__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-hero-discount__top {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}

.service-hero-discount__top:last-child {
  margin-bottom: 0px;
}

.service-hero-price {
  font-size: var(--font-size-16-20);
  font-weight: 600;
  line-height: 125%;
  color: var(--primary);
}

.service-hero-discount-price {
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 155%;
  color: var(--secondary-text);
  text-decoration: line-through;
}

.service-hero-discount-valid-time {
  color: var(--primary-text);
  font-size: var(--font-size-14-16);
  font-weight: 400;
  line-height: 155%;
}

.service-hero__right::before {
  content: '';
  position: absolute;
  max-width: 490px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to left, rgba(244, 244, 244, 0), rgba(244, 244, 244, 1));
}

.service-hero__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  /* max-height: 600px; */
}

.service-hero__image {
  /* max-height: 600px; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: left;
}

@media(max-width: 1550px) {
  .service-hero__left {
    max-width: 650px;
  }
}

@media (max-width: 1150px) {
  .service-hero__left {
    max-width: 500px;
  }
}

@media (max-width: 1024px) {
  .service-hero__left {
    max-width: 100%;
    width: 100%;
  }

  .service-hero__right {
    display: none;
  }

  #service-hero .service-hero__wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .service-hero-title-wrapper {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .service-hero__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

#service-discription {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.service-discription__left {
  width: 50%;
}

#service-discription .swiper-wrapper {
  margin-bottom: 20px;
}

.service-discription__image {
  width: 100%;
  height: 470px;
  object-fit: cover;
  max-width: 750px;
}

.service-discription-title {
  font-weight: 600;
  font-size: var(--font-size-22-40);
  line-height: 125%;
  color: var(--head-primary);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.service-discription__text p,
.service-discription__text li {
  font-size: var(--font-size-14-16);
  font-weight: 400;
  line-height: 155%;
  color: var(--primary-text);
  position: relative;
  list-style: none;
}

.service-discription__text h2 {
  font-size: var(--font-size-16-24);
  font-weight: 600;
  line-height: 125%;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-discription__text p {
  margin-bottom: 15px;
}

.service-discription__text li {
  padding-left: 20px;
  margin-bottom: 10px;
}

.service-discription__text li::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.service-discription__right {
  width: 100%;
}

.service-discription__text {
  padding-right: 30px;
  max-height: 360px;
  overflow-y: auto;
}

@media(max-width: 1024px) {
  #service-discription {
    flex-direction: column;
    gap: 20px;
  }

  .service-discription__left {
    max-width: 100%;
    width: 100%;
  }

  .service-discription__image {
    max-width: 100%;
    height: 340px;
  }

  .service-discription-title {
    margin-bottom: 15px;
  }
}

.service-tax-list-advages__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media(max-width: 1200px) {
  .service-tax-list-advages__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media(max-width: 768px) {
  .service-tax-list-advages__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 500px) {
  .service-tax-list-advages__wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

#service-tax-list-service {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.service-tax-list-service__left {
  max-width: 490px;
  width: 100%;
}

.service-tax-list-service__text-list-service {
  font-size: var(--font-size-16-20);
  line-height: 120%;
  color: var(--primary-text);
  font-weight: 400;
}

.service-tax-list-service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-tax-list-service__right {
  width: 100%;
}

.service-tax-list-service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 20px 15px;
  background-color: var(--background-secondary);
  border: 1px solid var(--background-secondary);
  transition: all .3s;
}

.service-tax-list-service-item:hover {
  border-color: var(--hover);
}

.service-tax-list-service-item__icon {
  max-width: 100px;
  max-height: 60px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-tax-list-service-item__name {
  font-weight: 600;
  font-size: var(--font-size-14-16);
  line-height: 150%;
  color: var(--head-primary);
}

@media(max-width: 1200px) {
  .service-tax-list-service {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .service-tax-list-service__left {
    width: fit-content;
  }
}

@media (max-width: 1024px) {
  .service-tax-list-service {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  #service-tax-list-service {
    flex-direction: column;
  }

  .service-tax-list-service__left {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .service-tax-list-service {
    grid-template-columns: 1fr;
  }
}

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

/* ============= DONE WORK =========== */
.done-wokr-item {
  /*   max-width: 490px; */
  max-height: 370px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}

.done-wokr-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12.5px;
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 10px;
}

.done-wokr-item__date {
  font-weight: 400;
  font-size: var(--font-size-14-16);
  line-height: 155%;
  color: var(--primary-text);
  margin-bottom: 0;
}

.done-wokr-item__name-service {
  color: var(--head-primary);
  font-size: var(--font-size-14-16);
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 0;
}

.done-wokr-item__name {
  font-size: var(--font-size-14-16);
  font-weight: 600;
  line-height: 125%;
  color: var(--head-primary);
  transition: all .3s;
  margin-bottom: 0;
}

.done-wokr-item-img__wrapper {
  max-width: 490px;
  max-height: 280px;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.done-wokr-item-img__wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 8px;
  background-color: var(--primary-hover);
  z-index: 1;
  transition: all .6s linear;
}

.done-wokr-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s linear;
}

.done-wokr-item:hover .done-wokr-item__name {
  color: var(--primary-hover);
}

.done-wokr-item:hover .done-wokr-item-img__wrapper::after {
  width: 100%;
}

.done-wokr-item:hover .done-wokr-item-img {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  #footer .logo {
    display: block;
    max-width: 270px;
    max-height: 105px;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {

  .done-wokr-item,
  .done-wokr-item-img__wrapper {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

/* ============= DONE WORK ARHIVE =========== */
.archive-done-work__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.archive-done-work-type {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-done-work-type__item.archive-done-work-type__item--btn-show-more {
  cursor: pointer;
}

.archive-done-work-type__item {
  padding: 10px 20px;
  background-color: var(--background-secondary);
  font-size: var(--font-size-14);
  line-height: 125%;
  font-weight: 400;
  color: var(--primary-text);
  transition: all .3s;
}

.archive-done-work-type__item.hide {
  display: none;
}

.archive-done-work-type .archive-done-work-type__item.active {
  background-color: var(--primary);
  color: var(--head-primary);
}

.archive-done-work-type__item:not(.active):hover {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .archive-done-work__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .archive-done-work__wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============= DONE WORK SINGLE =========== */
.sigle-done-work {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.sigle-done-work__right {
  max-width: 620px;
}

.sigle-done-work__left .sigle-done-work__gallery a {
  max-width: 880px;
  max-height: 500px;
  display: block;
  margin-bottom: 30px;
}

.sigle-done-work__left .sigle-done-work__gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sigle-done-work__gallery {
  margin-bottom: 40px;
}

.sigle-done-work-info__wrapper {
  position: sticky;
  top: 200px;
}

.sigle-done-work-info {
  padding: 40px 30px;
  background-color: var(--background-secondary);
}

.sigle-done-work-info__title {
  color: var(--head-primary);
  font-size: var(--font-size);
  line-height: 125%;
  font-weight: 600;
  margin-bottom: 40px;
}

.sigle-done-work-info-date {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.sigle-done-work-info-date__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background-color: var(--background);
  position: relative;
}

.sigle-done-work-info-date--price p::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url('../images/icon_many.svg');
  position: absolute;
  left: 0;
  top: 0;
}

.sigle-done-work-info-date--time_work p::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url('../images/icon_clock.svg');
  position: absolute;
  left: 0;
  top: 0;
}

.sigle-done-work-info-date__item p {
  position: relative;
  padding-left: 34px;
  font-size: var(--font-size-16-20);
  color: var(--head-primary);
  font-weight: 400;
  line-height: 125%;
}

.sigle-done-work-info-date__text {
  color: var(--primary-text);
  font-size: var(--font-size-14-16);
  font-weight: 400;
  line-height: 155%;
  margin-bottom: 40px
}

@media (max-width: 1200px) {
  .sigle-done-work {
    flex-direction: column-reverse;
  }

  .sigle-done-work__right {
    max-width: 100%;
  }

  .sigle-done-work__left .sigle-done-work__gallery a {
    max-width: 100%;
  }
}

@media(max-width: 768px) {
  .sigle-done-work-info-date {
    flex-direction: column;
  }

  .sigle-done-work-info {
    padding: 15px;
  }

  .sigle-done-work-info__title {
    margin-bottom: 15px;
  }

  .sigle-done-work-info-date {
    margin-bottom: 15px;
  }

  .sigle-done-work-info-date__text {
    margin-bottom: 15px;
  }
}

.sigle-done-work-info .btn {
  width: 100%;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============= REVIEW =========== */
.reviews-block-links-reviews {
  max-width: 490px;
  width: 100%;
}

.reviews-block-link-review {
  padding: 15px 20px;
  padding-bottom: 30px;
  background-color: var(--background-secondary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  min-height: 160px;
  height: fit-content;
  /* min-width: 350px; */
}

.reviews-block-link-review:last-child {
  margin-bottom: 0px;
}

.reviews-block-link-review__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}

.reviews-block-link-review-site-name {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviews-block-link-review-site-name__icon {
  max-height: 30px;
  height: 100%;
  object-fit: cover;
}

.reviews-block-link-review-site-name__text {
  color: var(--head-primary);
  font-weight: 600;
  font-size: var(--font-size-16-20);
  line-height: 125%;
  margin-bottom: 0;
}

.reviews-block-link-review-count__count {
  position: relative;
  font-weight: 600;
  font-size: var(--font-size-16-24);
  line-height: 125%;
  color: var(--head-primary);
  width: fit-content;
  padding-right: 21px;
}

.reviews-block-link-review-count__count--icon {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  object-fit: cover;
}

.reviews-block-link-review-count__amout-reviews {
  font-weight: 400;
  font-size: var(--font-size-14-16);
  line-height: 155%;
  color: var(--primary-text);
}

.reviews-block-link__text {
  color: var(--primary-text);
  font-weight: 400;
  font-size: var(--font-size-14-16);
  line-height: 155%;
  width: 64%;
}

.reviews-block-link__decoration-element {
  position: relative;
  font-size: var(--font-size-14-16);
  font-weight: 500;
  line-height: 125%;
  color: var(--head-primary);
  width: fit-content;
  text-transform: uppercase;
  padding-right: 30px;
  transition: all .3s;
}

.reviews-block-link__decoration-element::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('./images/arrow.svg');
  right: 0;
  top: 0;
  position: absolute;
  transition: transform .3s;
}

.reviews-block-link-review:hover .reviews-block-link__decoration-element {
  color: var(--primary);
}

.reviews-block-link-review:hover .reviews-block-link__decoration-element::after {
  transform: rotate(45deg);
  filter: brightness(0) saturate(100%) invert(22%) sepia(34%) saturate(5824%) hue-rotate(346deg) brightness(96%) contrast(99%);
}

.review-item {
  padding: 30px;
  background-color: var(--background-secondary);
  height: fit-content;
  min-height: 210px;
}

.review-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-item__auth {
  font-weight: 600;
  font-size: var(--font-size-16-20);
  line-height: 125%;
  color: var(--head-primary);
}

.review-item__date {
  color: var(--secondary-text);
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 125%;
}

.review-item__text--wrapper {
  margin-bottom: 20px;
}

.review-item__text--wrapper .review-item__text.hide {
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.review-item__text p {
  font-size: var(--font-size-14-16);
  font-weight: 400;
  color: var(--primary-text);
  line-height: 150%;
  margin-bottom: 10px;
}

.review-item__text p:last-child {
  margin-bottom: 0;
}

.review-item__btn-show-review {
  color: var(--primary);
  font-size: var(--font-size-14-16);
  font-weight: 600;
  line-height: 125%;
  transition: all .3s;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.review-item__btn-show-review:hover {
  color: var(--primary-hover);
}

.review-item__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-item__image--wrapper {
  max-width: 100px;
  max-height: 60px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  outline: none;
}

.review-item__image--wrapper::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.review-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.review-item__image--hover-loop {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--head-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  z-index: 2;
}

.review-item__image--hover-loop svg {
  width: 20px;
  height: 20px;
}

.review-item__image--wrapper:hover::after {
  opacity: 1;
  visibility: visible;
}

.review-item__image--wrapper:hover .review-item__image--hover-loop {
  opacity: 1;
  visibility: visible;
}

.review-item__image--wrapper:hover .review-item__image {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .review-item {
    min-height: 170px;
  }
}

/* ============= REVIEW ARCHIVE =========== */
.archive-review__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.archive-review-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 15px;
}

.archive-review-hero-links {
  display: flex;
  gap: 30px;
  width: 100%;
}

.archive-review-hero-links .reviews-block-link-review {
  max-width: 490px;
  width: 100%;
  margin-bottom: 0;
}

.archive-review-hero .btn {
  white-space: nowrap;
}

@media(max-width: 1024px) {
  .archive-review-hero {
    flex-direction: column;
    margin-bottom: 20px;
    align-items: flex-start
  }

  .archive-review__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-block-link__text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .archive-review-hero-links .reviews-block-link-review {
    max-width: 100%;
  }

  .archive-review-hero-links {
    flex-direction: column;
  }

  .archive-review__wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============= NEW ITEM =========== */
.new-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--stroke);
}

.new-item-head__date {
  color: var(--primary-text);
  font-weight: 400;
  font-size: var(--font-size-14-16);
  line-height: 155%;
}

.new-item-head__new {
  font-weight: 600;
  font-size: var(--font-size-14-16);
  color: var(--head-primary);
  line-height: 120%;
}

.new-item__name {
  font-weight: 600;
  font-size: var(--font-size-16-20);
  color: var(--head-primary);
  line-height: 125%;
  margin-bottom: 30px;
  transition: all .3s;
}

.new-item__image--wrapper {
  max-height: 430px;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.new-item__image--wrapper::before {
  content: '';
  z-index: 1;
  height: 7px;
  width: 0;
  background-color: var(--primary-hover);
  transition: all .6s linear;
  position: absolute;
  bottom: 0;
  left: 0;
}

.new-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s linear;
}

.new-item:hover .new-item__image--wrapper::before {
  width: 100%;
}

.new-item:hover .new-item__image {
  transform: scale(1.1);
}

.new-item:hover .new-item__name {
  color: var(--primary-hover);
}

@media (max-width:1024px) {
  .new-item__image--wrapper {
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .new-item__image--wrapper {
    max-height: 220px;
  }
}

/* ============= BUTTON =========== */
.swiper-castoum-button {
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  /* background-color: var(--background-secondary); */
  border: 1px solid var(--primary);
  cursor: pointer;
  position: relative;
}

.swiper-castoum-button::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--background-secondary);
  left: 0;
  top: 0;
  z-index: -1;
}

.swiper-castoum-button svg {
  width: 30px;
  height: 30px;
}

.swiper-castoum-button svg path {
  transition: all .3s;
}

.swiper-castoum-buttons {
  display: flex;
  gap: 20px;
}

.swiper-castoum-button--prev svg {
  transform: rotate(180deg);
}

.swiper-castoum-button.swiper-button-disabled {
  background-color: var(--background-secondary);
  border-color: var(--background-secondary);
  cursor: default;
}

.swiper-castoum-button.swiper-button-disabled svg path {
  fill: var(--secondary-text);
}

.swiper-custom-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swiper-custom-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

.swiper-custom-pagination .btn {
  max-width: fit-content;
  width: fit-content;
}

/* ============= NEWS ARCHIVE =========== */
.archive__holder-news {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.archive__holder-news .new-item:nth-child(1),
.archive__holder-news .new-item:nth-child(2) {
  grid-column: span 3
}

.archive__holder-news .new-item {
  grid-column: span 2
}

.archive__holder-news .new-item__name {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .archive__holder-news {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .archive__holder-news .new-item:nth-child(1),
  .archive__holder-news .new-item:nth-child(2) {
    grid-column: span 2
  }
}

@media (max-width: 768px) {
  .archive__holder-news {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* ============= NEWS SINGLE =========== */
.arhive-new-single {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.arhive-new-single__left {
  max-width: 880px;
  width: 100%;
}

.arhive-new-single-list-news {
  position: sticky;
  top: 200px;
}

.arhive-new-single__image {
  max-width: 620px;
  max-height: 430px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s linear;
}

.arhive-new-single-list-news {
  font-weight: 600;
  font-size: var(--font-size-14-24);
  color: var(--head-primary);
  line-height: 125%;
  margin-bottom: 20px;
  margin-top: 40px;
}

.arhive-new-single-list-news-item {
  position: relative;
  width: 100%;
  padding: 35px 50px 35px 80px;
  background-color: var(--background-secondary);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.arhive-new-single-list-news-item__image {
  position: absolute;
  left: -100px;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 130px;
  /* max-height: 110px; */
  object-fit: cover;
  transition: all .6s ease-in;
}

.arhive-new-single-list-news-item__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  transition: all .6s ease-in;
  left: 0;
  gap: 10px;
}

.arhive-new-single-list-news__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arhive-new-single-list-news-item__name {
  max-width: 380px;
  font-size: var(--font-size-14-16);
  font-weight: 600;
  line-height: 125%;
  color: var(--head-primary);
}

.parhive-new-single-list-news-item__date {
  font-size: var(--font-size-14);
  font-weight: 400;
  color: var(--secondary-text);
  line-height: 155%;
}

.arhive-new-single-list-news-item:hover .arhive-new-single-list-news-item__image {
  left: -40px;
}

.arhive-new-single-list-news-item:hover .arhive-new-single-list-news-item__wrapper {
  left: 30px;
}

.arhive-new-single__date {
  font-size: var(--font-size-14);
  line-height: 120%;
  color: var(--secondary-text);
  font-weight: 400;
  padding: 20px 15px;
  background-color: var(--background-secondary);
  width: fit-content;
  margin-bottom: 20px;
}

@media(max-width: 1200px) {
  .arhive-new-single {
    flex-direction: column-reverse;
  }

  .arhive-new-single-list-news {
    position: static;
  }

  .arhive-new-single__image {
    margin-bottom: 20px;
  }

  .arhive-new-single__image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .arhive-new-single-list-news-item {
    padding: 20px 30px 20px 70px;
  }

  .arhive-new-single-list-news-item:hover .arhive-new-single-list-news-item__image {
    left: -60px;
  }

  .arhive-new-single-list-news-item:hover .arhive-new-single-list-news-item__wrapper {
    left: 20px;
  }
}

/* ============= TEXT CONTENT ============= */
.text-content,
.text-content p,
.text-content li {
  font-size: var(--font-size-14-16);
  font-weight: 400;
  color: var(--primary-text);
  line-height: 155%;
}

.text-content {
  margin-bottom: 20px;
}

.text-content:last-child {
  margin-bottom: 0;
}

.text-content p {
  margin-bottom: 15px;
}

.text-content p:last-child {
  margin-bottom: 0;
}

.text-content li {
  margin-bottom: 10px;
}

.text-content ul,
.text-content ol {
  margin-bottom: 20px;
}

.text-content ul:last-child,
.text-content ol:last-child {
  margin-bottom: 0;
}

.text-content ul li {
  padding-left: 20px;
  position: relative;
  list-style: none;
}

.text-content li:last-child {
  margin-bottom: 0;
}

.text-content ul li::after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--primary);
}

.text-content h2 {
  font-weight: 600;
  font-size: var(--font-size-22-40);
  line-height: 120%;
  color: var(--head-primary);
  margin-bottom: 30px;
}

.text-content h3 {
  font-size: var(--font-size-20-32);
  font-weight: 600;
  color: var(--head-primary);
  line-height: 120%;
}

.text-content h4 {
  font-size: var(--font-size-14-24);
  font-weight: 600;
  color: var(--head-primary);
  line-height: 120%;
}

.text-content h5 {
  font-size: var(--font-size-16-20);
  font-weight: 600;
  color: var(--head-primary);
  line-height: 120%;
}

.text-content h6 {
  font-size: var(--font-size-14-16);
  font-weight: 600;
  color: var(--head-primary);
  line-height: 120%;
  margin-bottom: 20px;
}

.text-content h3,
.text-content h4,
.text-content h5 {
  margin-bottom: 25px;
}

/* ============= NAVIGATION ============= */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 310px;
  gap: 15px;
  margin-top: 30px;
}

.center-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links .swiper-castoum-button--next,
.nav-links .next {
  margin-left: auto;
}

.nav-links .swiper-castoum-button--prev,
.nav-links .prev {
  margin-right: auto;
}

.page-numbers {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 125%;
  color: var(--head-primary);
  padding: 7.5px 10px;
  transition: all .3s;
}

.page-numbers:not(.current):not(.next):not(.prev):hover {
  background-color: var(--background-secondary);
  color: var(--primary-hover);
}

.page-numbers.current {
  background-color: var(--primary);
}

/* ============= ERROR 404 =========== */
.error-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.error-content__image {
  margin-bottom: 40px;
  max-width: 750px;
  max-height: 360px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error-title {
  color: var(--head-primary);
  font-size: var(--font-size-20-32);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
  text-align: center;
}

.error-text {
  max-width: 750px;
  text-align: center;
  font-size: var(--font-size-16-20);
  font-weight: 400;
  color: var(--head-primary);
  line-height: 120%;
  margin-bottom: 40px;
}

/* ============= SEARCH =========== */
.search__item {
  padding: 15px;
  background-color: var(--background-secondary);
  color: var(--head-primary);
  font-weight: 600;
  font-size: var(--font-size-16-20);
  line-height: 120%;
  transition: all .3s;
  border-bottom: 1px solid var(--primary);
  display: block;
  margin-bottom: 15px;
}

.search__item:hover {
  color: var(--hover);
}
.swiper-backface-hidden .swiper-slide{
  height: auto;
}
.new-item{
  display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
/* ============= MEDIA QUERIES =========== */

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