/*============= ALIGNES ===============*/

:root {
  --font-size-28-48: clamp(26px,calc((100vw - 320px)/(1970 - 320) * (48 - 26) + 26px), 48px);
  --font-size-20-48: clamp(20px,calc((100vw - 320px)/(1970 - 320) * (40 - 20) + 20px), 40px);
  --font-size-26-40: clamp(26px,calc((100vw - 320px)/(1970 - 320) * (40 - 26) + 26px), 40px);
  --font-size-22-32: clamp(22px,calc((100vw - 320px)/(1970 - 320) * (32 - 22) + 22px), 32px);
  --font-size-24-36: clamp(24px,calc((100vw - 320px)/(1970 - 320) * (36 - 24) + 24px), 36px);
  --font-size-18-24: clamp(18px,calc((100vw - 320px)/(1970 - 320) * (24 - 18) + 18px), 24px);
  --font-size-18-26: clamp(18px,calc((100vw - 320px)/(1970 - 320) * (26 - 18) + 18px), 26px);
  --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);
  --primary: #00D818;
  --secondary: #111826;
  --third: #01273E;
  --head-primary: #0C0D0D;
  --head-secondary: #FFFFFF;
  --main-text-primary: #141515;
  --main-text-secondary: #2C2F2F;
  --main-text-thirdly: #757575;
  --background: #F9F9F9;
  --background-secondary: #FFFFFF;
  --background-thirdly: #ECECEC;
  --stroke: #111826;
  --yellow: #F7CD28;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 20px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid var(--secondary);
}


.alignwide {
  width: 100%;
}

.head-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

h1.title-page {
  font-size: var(--font-size-28-48);
  font-weight: 500;
  line-height: 100%;
  color: var(--head-primary);
  text-transform: uppercase;
}

.subtitle-page {
  max-width: 490px;
  width: 100%;
  text-align: center;
  color: var(--main-text-primary);
  font-size: var(--font-size-18-24);
  line-height: 120%;
  font-weight: 400;
}

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

* {
  margin: 0;
  padding: 0;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

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

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

.breadcrumbs {
  padding: 20px 0;
  font-family: 'Jost', sans-serif;
  font-size: var(--font-size-16-20);
  line-height: 120%;
  color: var(--main-text-primary);
}
.breadcrumbs span {
  font-family: inherit;
  font-size: var(--font-size-16-20);
  line-height: 120%;
  color: var(--main-text-primary);
  transition: all .3s;
}
.breadcrumbs span:hover {
  color: var(--primary);
}
.breadcrumbs span.current-item {
  color: var(--primary);
}

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

.container-margin-left {
  margin-left: clamp(0px ,calc((100vw - 1572px) / 2), 1920px);
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}
.privacy-policy .content {
  padding: 0 15px;
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.privacy-policy .content p,
.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 table {
  margin-bottom: 10px;
}
.container-margin-130 {
  margin-bottom: 130px;
}

.head-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.head-block .title-block {
  margin-bottom: 0;
}

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

.subtitle-block {
  color: var(--main-text-primary);
  font-size: var(--font-size-18-24);
  font-weight: 400;
  line-height: 120%;
}

.bottom-container {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

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

@media (max-width: 1024px) {
  .container-margin-130 {
    margin-bottom: 40px;
  }
  .title-block {
    margin-bottom: 20px;
  }
  .head-block {
    margin-bottom: 20px;
  }
}

a {
  text-decoration: none;
}

#main,
#primary {
  min-height: 83vh;
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 50px;
  padding: 0 30px;
  background: transparent;
  border-radius: 100px;
  outline: none;
  border: none;
  font-family: 'Jost', sans-serif;
  color: var(--background);
  font-size: var(--font-size-16-20);
  line-height: 100%;
  font-weight: 500;
  background-color: var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease-in;
  white-space: nowrap;
}
.btn.light {
  background-color: var(--primary);
  color: var(--background-secondary);
}
.btn.border {
	background-color: var(--background-secondary);
	color: var(--head-primary);
	border: 1px solid var(--stroke);
}
.btn.border:hover {
	border-color: var(--primary) !important;
}
.btn.light:hover {
  background-color: var(--third);
}
.btn:hover {
  background-color: var(--primary);
  color: var(--head-secondary);
}
.privce-form {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-primary);
}
.privce-form-holder {
  position: relative;
  padding-left: 25px;
}
.privce-form-holder-checkbox-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
} 
.privce-form::before {  
  /*content: '';*/
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--main-text-primary);
  background-color: var(--background-secondary);
  transition: all .3s;
  position: absolute;
  left: 0;
  top: 0px;
}
.privce-form-holder .privce-form-holder-checkbox-input:checked + .privce-form::before {
  background-image: url('../images/check_mark.svg');
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--primary);
}
.privce-form label {
  cursor: pointer;
}
.privce-form a {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-primary);
  text-decoration: underline;
  transition: all .3s;
}
.privce-form a:hover {
  color: var(--primary);
}
.file-download {
  position: fixed;
  right: 15px;
  bottom: 50px;
  padding: 15px;
  border-radius: 30px;
  display: flex;
  gap: 15px;
  z-index: 10;
  background-color: var(--primary);
  width: 204px;
}
.file-download__icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.file-download__text {
  color: var(--head-secondary);
  font-size: var(--font-size-16-20);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 10px;
}
.file-download__size {
  color: var(--head-secondary);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
}
.privce-form-holder .privce-form-holder-checkbox-input.error + .privce-form::before {
  border-color: red;
}
.privce-form-holder .privce-form-holder-checkbox-input.error + .privce-form label,
.privce-form-holder .privce-form-holder-checkbox-input.error + .privce-form a {
  color: red; 
}
@media (max-width: 1024px) {
  .file-download__icon {
    display: none;
  }
  .file-download {
    width: 170px;
    bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
/*============ INPUT =================*/
.input {
  padding: 13px 30px;
  background-color: var(--background-secondary);
  border: 1px solid var(--background-thirdly);
  font-weight: 400;
  font-size: var(--font-size-16-20);
  line-height: 120%;
  border-radius: 100px;
  color: var(--head-primary);
  outline: none;
  height: 50px;
}
.input.error {
  border: 1px solid red;
}
.input::placeholder {
  color: var(--head-primary);
  opacity: 1;
}
textarea.input {
  border-radius: 20px;
  resize: none;
  min-height: 120px;
  height: fit-content;
}
textarea.input.error {
  border: 1px solid red !important;
}
/*============ HEADER =================*/
.home #header {
  position: fixed;
  top: auto;
  width: 100%;
}
#header {
  position: sticky;
  top: 0;
  z-index: 100;
}
#header.opacity .header__wrapper {
  background-color: transparent;
  border: none;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.header__wrapper {
  background-color: var(--background-secondary);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border: 1px solid var(--background-thirdly);
  padding-left: 10px;
  padding-right: 10px;
}
#header.opacity .header__top {
  border: none;
}
.header__top {
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid var(--background-thirdly);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.multi-reg {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.multi-reg__icon {
  width: 16px;
  height: 16px;
  object-fit: cover;
}
.multi-reg__text {
  font-weight: 500;
  font-size: var(--font-size-16-20);
  line-height: 100%;
  color: var(--head-primary);
}
.multi-reg__text span {
  color: var(--primary);
  font-weight: 500;
  font-size: var(--font-size-16-20);
  line-height: 100%;
  position: relative;
  padding-right: 19px;
}
.multi-reg__text span::before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  background-image: url('../images/arrow_active.svg');
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.multi-reg__modal {
  position: absolute;
  left: 0;
  top: 30px;
  border: 1px solid var(--background-thirdly);
  background-color: var(--background-secondary);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all .3s;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  width: 290px;
}
.multi-reg__modal.show {
  visibility: visible;
  opacity: 1;
}
.multi-reg__modal a {
  font-size: var(--font-size-16-20);
  font-weight: 500;
  line-height: 120%;
  color: var(--main-text-primary);
  transition: all .3s;
}
.multi-reg__modal a:hover {
  color: var(--primary);
}
.header-reviews-links {
  display: flex;
  gap: 10px;
}
.header-contact__data--phone {
  white-space: nowrap;
}
.header-review-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
  border: 1px solid var(--yellow);
  border-radius: 50px;
}
.header-review-link__icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.header-review-link__amount {
  color: var(--head-primary);
  font-size: var(--font-size-16-20);
  font-weight: 500;
  line-height: 100%;
}
.header-review-link__icon-review {
  width: 16px;
  height: 16px;
  object-fit: cover;
}
.header-review-link__wrapper {
  display: flex;
  gap: 2px;
  align-items: center;
}
.header-contact__icon {
  width: 25px;
  height: 25px;
}
.header-contact__data {
  display: flex;
  gap: 10px;
  font-size: var(--font-size-16-20);
  color: var(--main-text-primary);
  font-weight: 400;
  line-height: 120%;
  transition: all .3s;
}
.header-contact__data:hover {
  color: var(--primary) !important;
}
.header-contact {
  display: flex;
  gap: 30px;
}
#header.opacity .header__bottom {
  padding: 10px;
  background-color: rgba(17, 24, 38, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 500px;
}
.header__bottom {
  padding-bottom: 10px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
/* .logo {
  max-width: 180px;
  max-height: 60px;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  overflow: hidden;
} */
.logo {
  max-width: 180px;
  max-height: 60px;
  width: 100%;
  height: 100%;
}
.logo__image {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  overflow: hidden;
  min-width: 130px;
}
.header__bottom #menu-menyu {
  max-width: 600px;
  width: 100%;
  
}
#menu-menyu li {
  list-style: none;
}
#menu-menyu {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.header__bottom .nav-menu-element a {
  white-space: nowrap;
}
.nav-menu-element a {
  color: var(--main-text-primary);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  transition: all .3s;
}
.nav-menu-element a:hover {
  color: var(--primary) !important;
}
.nav-menu-element.has-childs {
  position: relative;
}
.header__bottom .nav-menu-element.has-childs > a {
  padding-right: 19px;
  position: relative;
}
.header__bottom .nav-menu-element.has-childs > a::before {
  content: '';
  position: absolute;
  right: 9px;
  top: 10px;
  width: 10px;
  height: 10px;
  background-image: url('../images/arrow.svg');
  transition: all .3s;
}
#header.opacity .header__bottom .nav-menu-element.has-childs > a::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7463%) hue-rotate(293deg) brightness(103%) contrast(103%);
}
.nav-menu-element.has-childs > a:hover::before {
  transform: rotateX(180deg);
  filter: brightness(0) saturate(100%) invert(58%) sepia(49%) saturate(4505%) hue-rotate(92deg) brightness(104%) contrast(113%) !important;
}
.header__bottom .sub-menu {
  position: absolute;
  top: 40px;
  left: -20px;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid var(--background-thirdly);
  background-color: var(--background-secondary);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.header__bottom .sub-menu::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -20px;
}
.nav-menu-element.has-childs:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header__bottom .sub-menu .nav-menu-element:nth-child(1) a,
.header__bottom .sub-menu .nav-menu-element:nth-child(2) a,
.header__bottom .sub-menu .nav-menu-element:nth-child(3) a,
.header__bottom .sub-menu .nav-menu-element:nth-child(4) a{
	font-weight: 500;
}
#menu-menyu .nav-menu-element.has-childs .sub-menu {
  white-space: nowrap;
}
#menu-menyu .nav-menu-element.has-childs .sub-menu .nav-menu-element {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
#menu-menyu .nav-menu-element.has-childs .sub-menu .nav-menu-element:last-child {
  margin-bottom: 0;
}
.header-callback {
  display: flex;
  gap: 10px;
  min-width: 220px;
}
.header-callback__icon--wrapper {
  max-width: 46px;
  height: 46px;
  position: relative;
}
.header-callback__icon--wrapper::before {
  content: '';
  width: 7px;
  height: 7px;
  border: 4px solid var(--third);
  background-color: var(--primary);
  border-radius: 100%;
  right: 0;
  bottom: 0;
  position: absolute;
}
.header-callback__icon {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
  object-fit: cover;
}
.header-callback__phone {
  color: var(--head-primary);
  font-size: var(--font-size-16-20);
  font-weight: 500;
  line-height: 100%;
  transition: all .3s;
  margin-bottom: 5px;
  white-space: nowrap;
}
#header.opacity .header-callback__phone {
  color: var(--background-secondary);
}
.header-callback__phone:hover {
  color: var(--primary) !important;
}
.header-callback__text {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-primary);
}
#header.opacity .header-callback__text {
  color: var(--background-secondary);
}
.header__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
#header.opacity .multi-reg__text {
  color: var(--background-secondary);
}
#header.opacity .header-review-link__amount {
  color: var(--head-secondary);
}
#header.opacity .header-contact__data {
  color: var(--background-secondary);
}
#header.opacity .header__bottom #menu-menyu > .nav-menu-element > a {
  color: var(--background-secondary);
}
/*================ MOBILE MNU =============*/
#mobile-mnu .logo {
  margin-bottom: 20px;
}
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
#header .burger.open_menu span {
  background-color: var(--primary);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
  background-color: var(--primary);
}
#header .burger.open_menu.clicked span {
  background-color: #fff;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--background);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--stroke);
}
/* #header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
} */
/* #header #mobile-mnu a:hover {
  color: var(--primary);
} */
#menu-menyu-1 li {
  list-style: none;
}
#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 .logo__holder img {
  max-height: 60px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
}
#header #mobile-mnu .logo-holder {
  margin-bottom: 20px;
}
#header #mobile-mnu .nav-menu-element a {
  display: block;
  margin-bottom: 10px;
}
#header #mobile-mnu .nav-menu-element.has-childs .nav-menu-element {
  padding-left: 20px;
  position: relative;
}
#header #mobile-mnu .nav-menu-element.has-childs .nav-menu-element::after {
  content: '';
  width: 7px;
  height: 7px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 100%;
}
.phone,
.email,
.address-holder p {
  font-weight: 400;
  font-size: var(--font-size-14-16);
  color: var(--main-text-primary);
  line-height: 120%;
  transition: all .3s;
  white-space: nowrap;
  display: block;
  margin-bottom: 10px;
}
.phone:last-child,
.email:last-child,
.address-holder p:last-child {
  margin-bottom: 0;
}
.email,
.phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone:last-child {
  margin-bottom: 0;
}
.phone:hover ,
.email:hover {
  color: var(--primary);
}
.phones-holder,
.emails-holder,
.social-holder {
  margin-bottom: 10px;
}
/* #header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
} */
/* #header #menu-menyu-1 .sub-menu {
  margin-left: 10px;
} */
/* #header #mobile-mnu .menuTop li a:hover {
  color: #D12D26;
}
#header #mobile-mnu .menuTop li.active a {
  color: #D12D26;
} */
#header #mobile-mnu.opened {
  transform: translateX(0);
}
@media (max-width: 1280px) {
  .header__social .btn {
    display: none;
  }
}
@media(max-width: 1100px) {
  .header-info__social-holder .social__wrapper{
    display: none;
  }
}
@media(max-width: 1024px) {
  #header #menu-menyu {
    display: none;
  }
  .header-info__social-holder .btn {
    display: none;
  }
  #header .burger.open_menu {
    display: flex;
  }
  .header-info {
    align-items: center;
  }
  .header__container {
    gap: 10px;
  }
  .header-contact__data {
    gap: 5px;
  }
  /* .header-callback {
    display: none;
  } */
}
@media (max-width: 768px) {
  .header-info {
    gap: 3px;
  }
  .header-review-link {
    display: none;
  }
  .header-contact {
    gap: 10px;
  }
  .header-contact__data--email {
    display: none;
  }
  .header-callback {
    display: none;
  }
  .header__social .social {
    display: none;
  }
  .header-contact__data--phone .header-contact__icon {
    display: none;
  }
  .multi-reg__text span::before {
    display: none;
  }
  .multi-reg__icon {
    display: none;
  }
}
/*============ FOOTER ===============*/
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-item:last-child .btn {
  width: 100%;
}
.footer-item .logo {
  margin-bottom: 40px;
  display: block;
}
.footer-contact-item {
  margin-bottom: 20px;
}
.footer-contact__title {
  color: var(--main-text-thirdly);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 5px;
}
.footer-contact__value,
.footer-contact__value p {
  font-weight: 500;
  font-size: var(--font-size-16-20);
  color: var(--head-primary);
  line-height: 100%;
}
a.footer-contact__value {
  transition: all .3s;
}
a.footer-contact__value:hover {
  color: var(--primary);
}
.footer-contact__value p {
  margin-bottom: 10px;
}
.footer-contact__value p:last-child {
  margin-bottom: 0;
}
.footer-item .socials {
  margin-top: 40px;
  margin-bottom: 40px;
}
.footer-item__title {
  color: var(--head-primary);
  font-size: var(--font-size-18-24);
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 25px;
}
.footer-item .menuTop .nav-menu-element {
  display: block;
  margin-bottom: 10px;
}
.footer-item .menuTop .nav-menu-element a {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-thirdly);
}
.footer-item__requisites p {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-thirdly);
  margin-bottom: 10px;
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 35px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--background-thirdly);
}
.footer__privce {
  color: var(--main-text-thirdly);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  text-decoration: underline;
  transition: all .3s;
}
.footer__privce:hover {
  color: var(--primary);
}
.footer__permistion {
  color: var(--main-text-thirdly);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .footer-item .logo {
    margin-bottom: 20px;
  }
  .footer-item .socials {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media  (max-width: 500px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}
/* ============== GRAMPUS ============= */
.grampus {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.grampus p {
  color: var(--main-text-thirdly);
  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(--main-text-thirdly);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  transition: all .3s;
}
.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);
}
.grampus:hover .grampus__img {
  background-color: var(--primary);
}
/* ============== MODAL ============= */
.theme-modal {
	display: none;
}
.f-button.is-close-btn {
  display: none;
}
.form__holder {
  margin-top: 25px;
}
.close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.close-modal svg rect {
  transition: all .3s;
}
.close-modal:hover svg rect {
  fill: var(--primary);
}
.theme-modal.fancybox__content {
  max-width: 490px;
  width: 100%;
  background-color: var(--background-secondary);
  border-radius: 30px;
  border: 1px solid var(--background-thirdly);
  padding: 30px;
}
.title {
  font-size: var(--font-size-18-26);
  font-weight: 500;
  line-height: 120%;
  color: var(--main-text-primary);
  margin-bottom: 10px;
  text-align: center;
}
.theme-modal__head {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.modal-form-wrapper {
  width: 100%;
  margin-bottom: 25px;
}
.modal-form-wrapper .input {
  width: 100%;
  margin-bottom: 15px;
}
.modal-form-wrapper .input:last-child {
  margin-bottom: 0;
}
.subtitle {
  color: var(--main-text-primary);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 25px;
  text-align: center;
  max-width: 350px;
}
.subtitle:last-child {
  margin-bottom: 0;
}
.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);
}
.btn[type='submit'] {
  width: 100%;
  margin-bottom: 15px;
}
.theme-modal .privce-form {
  text-align: center;
}
.fancybox__backdrop {
  background-color: rgba(17, 24, 38, 0.4) !important;
}
@media (max-width: 768px) {
  .theme-modal.fancybox__content {
    padding: 15px;
  }
}
/*================ SOCIAL =============*/
.socials {
  display: flex;
  gap: 10px;
}
.social {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  background-color: var(--third);
}
.social img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
/*================ SERVICE ITEM =============*/
.service-item {
  background-color: var(--background-secondary);
  border: 1px solid var(--background-thirdly);
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 620px;
  height: 100%;
}
.service-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.service-item__top svg {
  min-width: 24px;
  min-height: 24px;
  transition: all .3s;
}
.service-item__top svg rect {
  transition: all .3s;
}
.service-item__name {
  color: var(--head-primary);
  font-size: var(--font-size-18-24);
  line-height: 100%;
  font-weight: 500;
  transition: all .3s;
}
.service-item__description--wrapper.hide .service-item__description {
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-item__description p, 
.service-item__description li {
  color: var(--main-text-primary);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
}
.service-item__description ul li {
  position: relative;
  padding-left: 25px;
  list-style: none;
}
.service-item__description ul li::before {
  content: '';
  width: 3px;
  height: 3px;
  background-color: var(--main-text-primary);
  border-radius: 100%;
  position: absolute;
  left: 8px;
  top: 10px;
}
.service-item__image--wrapper {
  width: 100%;
  height: fit-content;
  max-height: 250px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
.service-item__image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: all .3s;
  max-height: 250px;
}
.service-item .btn {
  width: 100%;
}
.btn-show-more {
  color: var(--main-text-primary);
  font-size: var(--font-size-16-20);
  line-height: 100%;
  font-weight: 500;
  transition: all .3s;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
.btn-show-more:hover {
  color: var(--primary);
}
.service-item:hover .service-item__top svg rect {
  fill: var(--primary);
}
.service-item:hover .btn {
  background-color: var(--primary);
}
.service-item:hover .service-item__image {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .service-item {
    padding: 15px;
    min-height: 630px;
  }
  .service-item__description--wrapper.hide .service-item__description {
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 768px) {
  .service-item {
    min-height: 540px;
  }
}
/* ============= SERIVCE ARCHIVE =========== */
.service-archive__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
/* ============= DONE WORK ITEM =========== */
.done-work-item {
  max-width: 880px;
}
.done-work-item.hide {
  display: none;
}
.done-work-item {
  padding: 30px;
  border: 1px solid var(--background-thirdly);
  background-color: var(--background-secondary);
  border-radius: 30px;
}
.done-work-item-tegs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}
.done-work-item-teg {
  padding: 10px 15px;
  background-color: var(--secondary);
  border-radius: 100px;
  font-weight: 500;
  font-size: var(--font-size-16-20);
  line-height: 100%;
  color: var(--head-secondary);
}
.done-work-item__title {
  font-size: var(--font-size-24-36);
  font-weight: 500;
  color: var(--head-primary);
  line-height: 100%;
  margin-bottom: 30px;
}
.done-work-item__content {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.done-work-item__left {
  max-width: 436px;
  width: 100%;
}
.done-work-item__text {
  margin-bottom: 20px;
  max-height: 317px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  padding-right: 15px;
}
.done-work-item__text p, 
.done-work-item__text li {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  color: var(--main-text-primary);
  line-height: 120%;
}
.done-work-item__text p {
  margin-bottom: 20px;
}
.done-work-item__text li {
  margin-bottom: 5px;
}
.done-work-item__text p strong {
  margin-bottom: -5px;
}
.done-work-item-сharacteristics {
  display: flex;
  gap: 15px;
}
.done-work-item-сharacteristic {
  background-color: var(--background-secondary);
  border: 1px solid var(--background-thirdly);
  padding: 10px 15px;
  border-radius: 20px;
  width: 100%;
}
.done-work-item-сharacteristic__name {
  color: var(--main-text-thirdly);
  font-size: var(--font-size-16-20);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 10px;
}
.done-work-item-сharacteristic__value {
  color: var(--main-text-secondary);
  font-size: var(--main-text-primary);
  font-weight: 500;
  line-height: 100%;
  white-space: nowrap;
}
.done-work-item__gallery {
  max-width: 370px;
  height: 100%;
  width: 100%;
  position: relative;
  display: block;
  cursor: pointer;
  outline: none;
}
.done-work-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  overflow: hidden;
}
.done-work-item__right {
  max-width: 370px;
  width: 100%;
}
.done-work-item-else-image {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.done-work-item-else-image__text {
  font-size: var(--font-size-18-24);
  font-weight: 500;
  color: var(--background-secondary);
  line-height: 100%;
}
.done-work-item-else-image__icon--wrapper {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
}
.done-work-item-else-image__icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.done-work-item__image.hide {
  display: none;
}
@media (max-width: 768px) {
  .done-work-item {
    padding: 15px;
  }
  .done-work-item-сharacteristics {
    flex-wrap: wrap;
    gap: 10px;
  }
  .done-work-item-сharacteristic {
    width: fit-content;
  }
  .done-work-item__content {
    flex-direction: column;
    gap: 10px;
  }
  .done-work-item__left {
    max-width: 100%;
  }
  .done-work-item__right {
    max-width: 100%;
  }
  .done-work-item__gallery {
    max-width: 100%;
    height: fit-content ;
  }
  .done-work-item__image {
    max-height: 300px;
    height: 100%;
  }
  .done-work-item-сharacteristics {
    width: 100%;
  }
}
/* ============= DONE WORK ARCHIVE =========== */
.done-work__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.done-work__holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.done-work__holder .done-work-item .done-work-item__content {
  flex-direction: column;
}
.done-work__holder .done-work-item .done-work-item__content .done-work-item__left {
  max-width: 100%;
}
.done-work__holder .done-work-item .done-work-item__content .done-work-item__right,
.done-work__holder .done-work-item .done-work-item__content .done-work-item__gallery {
  max-width: 100%;
}
.done-work__holder .done-work-item .done-work-item__gallery {
  max-height: 400px;
  height: 100vh;
}
@media (max-width: 1024px) {
  .done-work__holder {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .done-work__holder .done-work-item {
    max-width: 100%;
  }
  .done-work__holder .done-work-item .done-work-item__gallery {
    max-height: 250px;
  }
}
/* ============= CUSTOM NAVIGATION  =========== */
.custom-swiper-navigation {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-width: 220px;
}
.pagination-button:not(.swiper-button-disabled) {
  cursor: pointer;
}
.pagination-button--next svg {
  transform: rotate(180deg);
}
.pagination-button svg path {
  transition: all .3s;
}
.pagination-button:not(.swiper-button-disabled):hover svg path {
  fill: var(--primary);
}
.custom-swiper__pagintation {
  width: fit-content !important;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 100% !important;
  transition: all .3s;
  background-color: var(--secondary) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}
.navigation.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav-links {
  max-width: 490px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.nav-links .next {
  margin-left: auto;
}
.nav-links .prev {
  margin-right: auto;
}
.nav-links .next:not(.disable) 
.nav-links .prev:not(.disable) {
  cursor: pointer;
}
.nav-links .next svg path,
.nav-links .prev svg path {
  transition: all .3s;
}
.nav-links .next svg {
  transform: rotate(180deg);
}
.nav-links .next:not(.disable):hover svg path,
.nav-links .prev:not(.disable):hover svg path {
  fill: var(--primary);
}
.page-numbers.current {
  color: var(--main-text-primary);
}
.page-numbers {
  color: var(--main-text-thirdly);
  font-size: var(--font-size-16-20);
  font-weight: 500;
  line-height: 100%;
  transition: all .3s;
}
.page-numbers:not(.current):hover {
  color: var(--primary);
}
@media (max-width: 1200px) {
  .service-archive__holder {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .service-archive__holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .bottom-container {
    margin-top: 20px;
  }
  .nav-links {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .bottom-container {
    flex-direction: column-reverse;
  }
  .custom-swiper-navigation {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 600px) {
  .service-archive__holder {
    grid-template-columns: 1fr;
  }
}
/* ============= REVIEW ITEM =========== */
.review-item {
  min-height: 400px;
  width: 100%;
  padding: 30px 20px;
  background-color: var(--background-secondary);   
  border-radius: 30px;
  border: 1px solid var(--background-thirdly);
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.review-item .btn-show-more {
  margin-top: 20px;
}
.review-item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.review-item__logo-company--wrapper {
  background: var(--background-secondary);
  border: 1px solid var(--background-thirdly);
  border-radius: 200px;
  overflow: hidden;
  width: 100px;
  height: 40px;
}
.review-item__logo-company {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.review-item__date {
  color: var(--main-text-thirdly);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
}
.review-item-name-holder {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.review-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  object-fit: cover;
  overflow: hidden;
}
.review-item__name {
  color: var(--main-text-primary);
  font-size: var(--font-size-16-20);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 5px;
}
.review-item__postion {
  font-size: var(--font-size-16-20);
  line-height: 120%;
  font-weight: 400;
  color: var(--main-text-thirdly);
}
.review-item__text p {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-primary);
  margin-bottom: 10px;
}
.review-item__text p:last-child {
  margin-bottom: 0;
}
.review-item__text--wrapper.hide .review-item__text {
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .review-item {
    padding: 20px 15px;
  }
}
@media (max-width: 1024px) {
  .review-item {
    min-height: 300px;
  }
}
/* ============= REVIEW ARCHIVE =========== */
.review-archive__holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .review-archive__holder {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .review-archive__holder {
    grid-template-columns: 1fr;
  }
}
/* ============= NEWS ITEM =========== */
.news-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.news-item__image--wrapper {
  height: 250px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.news-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.news-item__date {
  font-weight: 500;
  font-size: var(--font-size-16-20);
  line-height: 100%;
  color: var(--main-text-thirdly);
  margin-bottom: 20px;
}
.news-item__title {
  font-size: var(--font-size-18-24);
  font-weight: 500;
  line-height: 100%;
  color: var(--main-text-primary);
  margin-bottom: 10px;
  transition: all .3s;
}
.news-item__mini-description {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-primary);
}
.news-item__content {
  margin-bottom: 20px;
}
.news-item__time-read {
  color: var(--main-text-thirdly);
  font-size: var(--font-size-16-20);
  font-weight: 500;
  line-height: 100%;
}
.news-item__time-read span {
  font-size: var(--font-size-16-20);
  font-weight: 500;
  line-height: 100%;
  color: var(--head-primary);
}
.news-item:hover .news-item__image {
  transform: scale(1.2);
}
.news-item:hover .news-item__title {
  color: var(--primary);
}
@media(max-width: 1024px) {
  .news-item__image--wrapper {
    height: 200px;
  }
}
/* ============= SINGLE SERVICE =========== */
.single-service-hero__wrapper {
  display: flex;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  min-height: 640px;
  border-radius: 30px;
  overflow: hidden;
}
.single-service-hero__wrapper::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--stroke);
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
}
.single-service-hero__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.single-service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 737px;
  width: 100%;
}
#single-service-hero .title-page {
  margin-bottom: 10px;
  color: var(--head-secondary);
  word-wrap: break-word;
}
#single-service-hero .title-page span {
  color: var(--primary);
  font-weight: 500;
  display: block;
}
#single-service-hero .subtitle-page {
  margin-bottom: 30px;
  color: var(--head-secondary);
  text-align: left;
}
.single-service-hero__text {
  margin-bottom: 30px;
}
.single-service-hero__text p,
.single-service-hero__text li {
  margin-bottom: 15px;
  color: var(--head-secondary);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
}
.single-service-hero__text p:last-child,
.single-service-hero__text li:last-child {
  margin-bottom: 0;
}
.single-service-hero__text ul li {
  position: relative;
  padding-left: 22px;
  list-style: none;
}
.single-service-hero__text ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  background-color: var(--primary);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-service-hero-bottom {
  display: flex;
  gap: 30px;
}
.single-service-hero-bottom-text__wrapper {
  display: flex;
  gap: 10px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 10px;
}
.single-service-hero-bottom__icon {
  width: 45px;
  height: 45px;
  object-fit: cover;
}
.single-service-hero-bottom-text {
  color: var(--head-secondary);
  font-size: var(--font-size-18-24);
  line-height: 100%;
  font-weight: 500;
}
@media (max-width: 768px) {
  .single-service-hero__wrapper {
    min-height: 500px;
    padding-left: 15px;
  }
  #single-service-hero .subtitle-page {
    margin-bottom: 15px;
  }
  .single-service-hero-bottom {
    flex-direction: column-reverse;
    gap: 15px;
  }
}
/* ============= NEWS ARCHIVE =========== */
.news-archive__holder {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
@media (max-width: 1024px) {
	.news-archive__holder {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.news-archive__holder {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 500px) {
	.news-archive__holder {
		grid-template-columns: 1fr;
	}
}
/* ============= NEWS SINGLE =========== */
.new-single__wrapper {
	display: flex;
	 gap: 30px;
}
.new-single__left {
	max-width: 1010px;
	width: 100%;
  height: 100%;
}
.new-single__right {
	max-width: 490px;
	width: 100%;
}
.new-single__time-ride {
	color: var(--main-text-thirdly);
	font-weight: 500;
	font-size: var(--font-size-16-20);
	line-height: 100%;
	color: var(--main-text-thirdly);
	margin-bottom: 40px;
}
.new-single__time-ride span {
	color: var(--head-primary);
	font-weight: 500;
	font-size: var(--font-size-16-20);
	line-height: 100%;
}
.new-single__image {
	width: 100%;
	max-height: 450px;
	height: 100%;
	object-fit: cover;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 40px;
}
.new-single__date {
	margin-bottom: 40px;
	color: var(--main-text-thirdly);
	font-size: var(--font-size-16-20);
	line-height: 120%;
}
.new-single__text p {
	color: var(--main-text-primary);
	font-size: var(--font-size-16-20);
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 40px;
}
.new-single__text p:last-child {
	margin-bottom: 0;
}
.new-single__text h2 {
	font-size: var(--font-size-24-36);
	font-weight: 500;
	line-height: 100%;
	color: var(--main-text-primary);
	margin-bottom: 40px;
}
.new-single__text blockquote {
	padding: 30px;
	padding-top: 90px;
	background-color: var(--background-secondary);
	border: 1px solid var(--background-thirdly);
	position: relative;
	border-radius: 30px;
}
.new-single__text blockquote {
	margin-bottom: 40px;
}
.new-single__text blockquote::after {
	content: '';
	width: 30px;
	height: 28px;
	background-image: url('../images/meseg.svg');
	background-repeat: no-repeat;
	position: absolute;
	top: 30px;
	left: 30px;
}
.new-single__left .wp-block-image {
  width: 100%;
	max-height: 450px;
	height: 100%;
	object-fit: cover;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 40px;
}
.new-single__left .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-single-list__wrapper {
  padding: 30px;
  background-color: var(--background-secondary);
  border: 1px solid var(--background-thirdly);
  border-radius: 30px;
  margin-bottom: 30px;
}
.new-single-list__holder {
  position: sticky;
  top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.new-single-list__title {
  color: var(--main-text-primary);
  font-size: var(--font-size-24-36);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
}
.new-single-item {
  padding-top: 20px;
  border-top: 1px solid var(--background-thirdly);
  margin-bottom: 20px;
  display: block;
}
.new-single-item:last-child {
  margin-bottom: 0;
}
.new-single-item__date {
  color: var(--main-text-thirdly);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 15px;
}
.new-single-item__title {
  font-weight: 500;
  font-size: var(--font-size-16-20);
  line-height: 100%;
  color: var(--main-text-primary);
  transition: all .3s;
}
.new-single-item:hover .new-single-item__title {
  color: var(--primary);
}
@media (max-width: 1024px) {
  .new-single__time-ride {
    margin-bottom: 20px;
  }
  .new-single__image {
    margin-bottom: 20px;
  }
  .new-single__date {
    margin-bottom: 20px;
  }
  .new-single__text p {
    margin-bottom: 20px;
  }
  .new-single__text {
    margin-bottom: 20px;
  }
  .new-single__text blockquote {
    margin-bottom: 20px;
  }
  .new-single-list__wrapper {
    margin-bottom: 20px;
  }
  .new-single__image {
    height: fit-content;
  }
}
@media (max-width: 768px) {
  .new-single__wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .new-single-list__wrapper {
    width: 100%;
  }
  .new-single__right {
    max-width: 100%;
  }
}
/* ============= ERROR 404 =========== */
.error404 #main, 
.error404 #primary {
  min-height: 100%;
}
.error-404-content {
  display: flex;
  gap: 160px;
  padding: 25px 40px;
  background-color: var(--background-secondary);
  border: 1px solid var(--background-thirdly);
  border-radius: 10px;
}
.error-404-content__title {
  font-size: var(--font-size-26-40);
  font-weight: 500;
  line-height: 100%;
  color: var(--head-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
}
.error-404-content__text {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-primary);
}
.error-404-content__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
}
.error-404-content__404 {
  max-width: 623px;
  max-height: 300px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .error-404-content {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .error-404-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    padding: 15px;
  }
  .error-404-content__left {
    align-items: center;
    padding: 0;
  }
  .error-404-content__title,
  .error-404-content__text {
    text-align: center;
  }
}
/* ============= MEDIA QUERIES =========== */

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

/* ДОРАБОТКИ */
.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;
}
.policy-checkbox label a{
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
    color: var(--main-text-primary);
    text-decoration: underline;
    transition: all .3s;
}
.policy-checkbox label a:hover {
  color: var(--primary);
}