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

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}
/* :root {
  --Card: #fff;
  --Accent: #ffa916;
  --Background-light: #f7f7f7;
  --Background-dark: #efefef;
  --Head: #232323;
  --Stroke: #e2e2e2;
  --Main-text: #464646;
} */
* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}
body {
  background-color: #fff;
  overflow-x: hidden;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--Head);
}
main {
  flex: 1;
}
a {
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
  transition: 0.4s;
}
@media (min-width: 992px) {
  a:hover {
    color: var(--Primary);
  }
}

ul li {
  list-style-position: inside;
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
}
ul li::marker {
  color: var(--Primary);
}

ol li {
  list-style-position: inside;
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
}

input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

h1.page-title {
  margin-bottom: clamp(20px,1.25vw + 16px, 40px);
}

.breadcrumbs {
  padding: clamp(10px,0.625vw + 8px, 20px) 0;
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
}
.breadcrumbs span {
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
}
.breadcrumbs .current-item span {
  color: var(--Accent);
}
.breadcrumbs span.current-item {
  color: var(--Accent);
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container-full {
  width: 100%;
  padding: 0 clamp(10px,0.625vw + 8px, 20px);
  margin: 0 auto;
}
.container-left {
  padding-left: calc(0.4930555556 * 100vw + -571.6666666667px);
}
@media (min-width: 1920px) {
  .container-left {
    padding-left: max(375 / 19.2 * 1vw, 15px);
  }
}
@media (max-width: 1200px) {
  .container-left {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }
}
.container-right {
  padding-right: calc(0.4930555556 * 100vw + -571.6666666667px);
}
@media (min-width: 1920px) {
  .container-right {
    padding-right: max(375 / 19.2 * 1vw, 15px);
  }
}
@media (max-width: 1200px) {
  .container-right {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }
}

svg {
  transition: 0.4s;
  width: var(--svgWidth, clamp(20px,0.25vw + 19.2px, 24px));
  height: var(--svgHeight, clamp(20px,0.25vw + 19.2px, 24px));
  color: var(--svgColor, var(--Head));
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
  transition: 0.4s;
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: 0.4s;
  padding: clamp(10px,0.1875vw + 9.4px, 13px) clamp(20px,1.25vw + 16px, 40px);
  border: 1px solid var(--Accent);
  background: var(--Accent);
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
  color: var(--Head);
  cursor: pointer;
}
.btn svg {
  transition: 0.4s;
  --svgColor: var(--Head);
}
.btn svg path {
  transition: 0.4s;
}
@media (min-width: 992px) {
  .btn:hover {
    background: var(--Head);
    border-color: var(--Head);
    color: var(--Card);
  }
  .btn:hover svg {
    --svgColor: var(--Card);
  }
}
.btn--black {
  background: var(--Head);
  color: var(--Card);
}
@media (min-width: 992px) {
  .btn--black:hover {
    background: var(--Card);
    border-color: var(--Accent);
    color: var(--Accent);
  }
  .btn--black:hover svg {
    --svgColor: var(--Accent);
  }
}
h1,.h1 {
  font-weight: 600;
  font-size: clamp(21px,2.4375vw + 13.2px, 60px);
  line-height: 120%;
}
h2,.h2 {
  font-weight: 600;
  font-size: clamp(21px,2.0625vw + 14.4px, 54px);
  line-height: 120%;
  text-transform: uppercase;
}
h3,.h3 {
  font-weight: 600;
  font-size: clamp(20px,0.75vw + 17.6px, 32px);
  line-height: 120%;
}
h4,.h4 {
  font-weight: 600;
  font-size: clamp(18px,0.625vw + 16px, 28px);
  line-height: 120%;
}
h5,.h5 {
  font-weight: 600;
  font-size: clamp(16px,0.5vw + 14.4px, 24px);
  line-height: 120%;
}
h6,.h6 {
  font-weight: 600;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 120%;
}

p,.p {
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
}
.p-24 {
  font-weight: 400;
  font-size: clamp(16px,0.5vw + 14.4px, 24px);
  line-height: 150%;
  color:  var(--Main-text);
}
.p-16 {
  font-weight: 400;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 150%;
  color:  var(--Main-text);
}
.block-title {
  margin-bottom: clamp(20px,1.25vw + 16px, 40px);
}
.compensate-for-scrollbar {
  margin-right: auto !important;
}
body.compensate-for-scrollbar {
  overflow: auto !important;
  overflow-x: hidden !important;
}
strong {
  font-weight: 700;
}





/*============ Header Start =================*/
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.header__container {
  display: flex;
  align-items: center;
  gap: clamp(20px,6.0625vw + 0.6px, 117px);
}
.header__right {
  flex: 1;
}
.header__contact {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
  border-top: 1px solid var(--Background-dark);
  padding: 4px 0;
}
.header__menu > li {
  position: relative;
}
.header__menu > li > a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
  cursor: pointer;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}
.header__menu > li:hover > a, .header__menu > li:hover > a span {
  color: var(--Primary);
  border-color: var(--Primary);
}
.header__menu > li:hover svg {
  transform: rotate(180deg);
  color: var(--Primary);
}
.header__logo {
  width: auto;
  max-width: 160px;
  display: block;
  max-height: 100px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.header-contact__value {
  color: var(--Head);
}
.socials {
  display: flex;
  gap: 10px;
}
.socials__item {
  width: clamp(30px,1.25vw + 26px, 50px);
  height: clamp(30px,1.25vw + 26px, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--Primary);
  border-radius: 50%;
  transition: 0.4s;
}
.socials__item img {
  width: clamp(12px,0.25vw + 11.2px, 16px);
  height: clamp(12px,0.25vw + 11.2px, 16px);
  object-fit: contain;
  transition: 0.4s;
}
/*============ Header End =================*/






/*============ Mobile-menu Start =================*/
#mobile-menu .header__logo {
  margin-left: 18px;
}
.mobile-menu-open {
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
  width: 30px;
  height: 18px;
  position: relative;
}
.mobile-menu-open__button {
  width: 30px;
  height: 2px;
  background-color: var(--Primary);
}
.mobile-menu-open__button:after {
  content: "";
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--Primary);
  position: absolute;
  top: 0;
  transition: 0.3s;
}
.mobile-menu-open__button:before {
  content: "";
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--Primary);
  position: absolute;
  bottom: 0;
  transition: 0.3s;
}
.mobile-menu-open.active .mobile-menu-open__button {
  background-color: transparent;
}
.mobile-menu-open.active .mobile-menu-open__button:after {
  transform: rotate(-45deg);
  bottom: 0;
  margin: auto;
}
.mobile-menu-open.active .mobile-menu-open__button:before {
  transform: rotate(45deg);
  top: 0;
  margin: auto;
}

.mobile-menu {
  position: fixed;
  left: -100%;
  width: max(280 / 19.2 * 1vw, 260px);
  height: 100%;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s linear;
  flex-direction: column;
  padding-bottom: 50px;
  padding-top: 15px;
  background-color: var(--Card);
  top: 0;
}
.mobile-menu__wrapper {
  padding-top: 12px;
  padding-bottom: 12px;
}
.mobile-menu.opened, .mobile-menu.active,
.mobile-menu .nav_close.opened {
  left: 0;
  display: flex;
}
.mobile-menu__wrap li {
  list-style-type: none;
}
.mobile-menu__wrap li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  gap: 5px;
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
  color: var(--Head);
  text-decoration: none;
}
.mobile-menu__wrap li a .menu-item__icon {
  position: relative;
  width: 60px;
}
.mobile-menu__wrap li a .menu-item__icon:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.mobile-menu__wrap li a .menu-item__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mobile-menu__wrap li.has-childs a span {
  font-weight: 600;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--Head);
}
.mobile-menu__wrap li.has-childs svg {
  transform: rotate(-90deg);
  width: 12px;
  height: 12px;
  color: var(--Primary);
}
.mobile-menu__wrap li.back a {
  justify-content: flex-start;
  font-weight: 600;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--Head);
  color: var(--Primary);
}
.mobile-menu__wrap li.back svg {
  transform: rotate(90deg);
  width: 12px;
  height: 12px;
  color: var(--Primary);
}
.mobile-menu__wrap .sub-menu {
  position: fixed;
  left: -100%;
  width: max(280 / 19.2 * 1vw, 260px);
  height: 100%;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s linear;
  flex-direction: column;
  padding-bottom: 50px;
  padding-top: 15px;
  background-color: var(--Card);
  top: 0;
}
.mobile-menu__wrap .sub-menu.active {
  left: 0;
  display: flex;
}
.mobile-menu__contact {
  padding: 10px 20px 10px;
}
.mobile-menu__contact-block:not(:last-child) {
  margin-bottom: 15px;
}
body.opened .header {
  z-index: 101;
}
/*============ Mobile-menu End =================*/







/*============ Footer Start =================*/
.footer {
  border-radius: 5px 5px 0px 0px;
  background: var(--Card);
  position: relative;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1));
  padding-top: clamp(25px,1.5625vw + 20px, 50px);
  padding-bottom: clamp(15px,0.9375vw + 12px, 30px);
}
.footer__top {
  padding-bottom: clamp(15px,0.9375vw + 12px, 30px);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__info-title {
  margin-bottom: 5px;
}
.footer__info-text {
  color: var(--Head);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: clamp(10px,0.625vw + 8px, 20px);
  align-items: center;
  flex-wrap: wrap;
}
.footer__bottom:not(:first-child) {
  padding: clamp(15px,0.9375vw + 12px, 30px) 0 0;
  border-top: 1px solid var(--Stroke);
}
.footer__link {
  color: var(--Head);
  cursor: pointer;
  transition: 0.4s;
}
.footer__text {
  color: var(--Head);
}
.example-holder a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}
.example-holder a:hover {
  color: var(--Primary);
}
.glogo {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--Head);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  overflow: hidden;
}
.glogo: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: 1s;
}
.glogo:hover:before {
	animation-name: unset;
	transform: translateX(0);
}

@keyframes slideUp {
	0% {
		transform: translateX(-100%);		
	}
	50% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(100%);		
	}
}
/*============ Footer End =================*/






/*============ Modal Start =================*/
.modal-congratulations,
.modal-error {
  height: -moz-fit-content;
  height: fit-content;
  width: 783px;
  max-height: 90vh;
  max-width: 90vw;
  background: var(--Primary);
  border-radius: 10px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
  padding: clamp(30px,1.875vw + 24px, 60px) clamp(20px,1.875vw + 14px, 50px);
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-congratulations::-webkit-scrollbar,
.modal-error::-webkit-scrollbar {
  width: 3px;
}
.modal-congratulations::-webkit-scrollbar-thumb,
.modal-error::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--Primary);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  background-clip: padding-box;
}
.modal-congratulations::-webkit-scrollbar-track,
.modal-error::-webkit-scrollbar-track {
  background-color: var(--Head);
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  background-clip: padding-box;
}
.modal-congratulations.active,
.modal-error.active {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal {
  width: 100%;
}
.theme-modal__title {
  color: var(--Card);
  text-align: center;
}
.theme-modal__subtitle {
  margin-top: 15px;
  color: var(--Card);
  text-align: center;
}
.theme-modal__form-wrapper {
  margin-top: clamp(15px,0.9375vw + 12px, 30px);
}
.theme-modal__btn {
  padding-left: clamp(20px,8.3125vw + -6.6px, 153px);
  padding-right: clamp(20px,8.3125vw + -6.6px, 153px);
  margin: clamp(15px,0.625vw + 13px, 25px) auto 0;
}
.theme-modal.fancybox__content {
  padding: clamp(30px,1.875vw + 24px, 60px) clamp(20px,1.875vw + 14px, 50px);
  border-radius: 10px;
  cursor: default !important;
  background: var(--Primary);
}
.theme-modal.fancybox__content [data-fancybox-close] {
  top: clamp(10px,0.9375vw + 7px, 25px) !important;
  right: clamp(10px,0.9375vw + 7px, 25px) !important;
  --fancybox-color: var(--Head);
  background: none;
  border-radius: 0px;
  box-shadow: none;
  transition: color 0.3s ease;
  --carousel-button-width: 24px;
  --carousel-button-height: 24px;
  --f-button-hover-bg: transparent !important;
  --f-button-active-bg: transparent !important;
}
.theme-modal.fancybox__content [data-fancybox-close] svg {
  --svgColor: var(--Head);
  --carousel-button-svg-filter: none;
  transition: 0.4s;
}
.theme-modal.fancybox__content > .f-button.is-close-btn {
  --f-button-svg-width: 15px;
  --f-button-svg-height: 15px;
  --f-button-width: 15px;
  --f-button-height: 15px;
}
.theme-modal .form {
  text-align: center;
}
.theme-modal .form .form__input {
  margin-bottom: 10px;
}
.theme-modal .form .form__btn {
  margin-top: clamp(10px,0.625vw + 8px, 20px);
  margin-bottom: clamp(10px,0.3125vw + 9px, 15px);
  width: 100%;
}
.theme-modal .form .form__btn .btn {
  width: 100%;
}
.theme-modal .form .form__privacy {
  color: var(--Card);
}
.theme-modal .form .form__privacy-link {
  color: var(--Card);
  text-decoration: underline;
}
#modal-privacy .text-block {
  color: var(--Card);
}
.fancybox__backdrop {
  --fancybox-bg: rgba(35, 35, 35, 0.5);
}
.background-modals {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.8);
  z-index: 2500;
}
.form-v2 input:not([type=submit]) {
  height: 58px;
  width: 100%;
  padding: clamp(9px,0.5vw + 7.4px, 17px) clamp(10px,0.625vw + 8px, 20px);
  border-radius: 10px;
  border: 1px solid var(--Background-dark);
  background: var(--Background-dark);
  font-weight: 400;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 150%;
  color:  var(--Main-text);
  transition: 0.4s;
  cursor: pointer;
}
.form-v2 input:not([type=submit])::-moz-placeholder {
  font-weight: 400;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 150%;
  color:  var(--Main-text);
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.form-v2 input:not([type=submit])::placeholder {
  font-weight: 400;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 150%;
  color:  var(--Main-text);
  transition: 0.4s;
}
.form-v2 input:not([type=submit]):focus-visible {
  outline: none;
}
.form-v2 input:not([type=submit]):focus {
  outline: none !important;
  --borderInput: var(--Accent);
  --backgroundInput: var(--Card);
  color: var(--Accent);
}
.form-v2 input:not([type=submit]):focus::-moz-placeholder {
  color: var(--Accent);
}
.form-v2 input:not([type=submit]):focus::placeholder {
  color: var(--Accent);
}
.form-v2 input:not([type=submit]).error {
  border-color: red;
  color: red;
}
.form-v2 input:not([type=submit]).error::-moz-placeholder {
  color: red;
}
.form-v2 input:not([type=submit]).error::placeholder {
  color: red;
}
.form-v2 textarea {
  height: 140px;
  width: 100%;
  padding: clamp(9px,0.5vw + 7.4px, 17px) clamp(10px,0.625vw + 8px, 20px);
  border-radius: 5px;
  border: 1px solid var(--Background-dark);
  background: var(--Background-light);
  font-weight: 400;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 150%;
  color:  var(--Main-text);
  color: var(--Head);
  transition: 0.4s;
  resize: none;
  cursor: pointer;
}
.form-v2 textarea::-moz-placeholder {
  font-weight: 400;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 150%;
  color:  var(--Main-text);
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.form-v2 textarea::placeholder {
  font-weight: 400;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 150%;
  color:  var(--Main-text);
  color: var(--Stroke);
  transition: 0.4s;
}
.form-v2 textarea:focus-visible {
  outline: none;
}
.form-v2 textarea:focus {
  outline: none !important;
  color: var(--Head);
}
.form-v2 textarea:focus::-moz-placeholder {
  color: var(--Head);
}
.form-v2 textarea:focus::placeholder {
  color: var(--Head);
}
.form-v2 textarea.error {
  border-color: red;
  color: red;
}
.form-v2 textarea.error::-moz-placeholder {
  color: red;
}
.form-v2 textarea.error::placeholder {
  color: red;
}
.form-v2 button[form-send] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-v2 button[form-send].disabled {
  color: transparent;
}
.form-v2 button[form-send].disabled svg {
  opacity: 0;
}
.form-v2 input.hidden {
  display: none;
}
.form-v2 .form-status {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.form-v2 .form-preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  transform: scale(0.85);
  margin: auto;
}
.form-v2 .form-preloader .preloader__item {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: bounce_circularG 1.1s infinite;
}
.form-v2 .form-preloader .preloader__item-1 {
  left: 0;
  top: 18px;
  animation-delay: 0s;
}
.form-v2 .form-preloader .preloader__item-2 {
  left: 5px;
  top: 5px;
  animation-delay: 0.14s;
}
.form-v2 .form-preloader .preloader__item-3 {
  top: 0;
  left: 18px;
  animation-delay: 0.28s;
}
.form-v2 .form-preloader .preloader__item-4 {
  right: 5px;
  top: 5px;
  animation-delay: 0.42s;
}
.form-v2 .form-preloader .preloader__item-5 {
  right: 0;
  top: 18px;
  animation-delay: 0.56s;
}
.form-v2 .form-preloader .preloader__item-6 {
  right: 5px;
  bottom: 5px;
  animation-delay: 0.7s;
}
.form-v2 .form-preloader .preloader__item-7 {
  left: 18px;
  bottom: 0;
  animation-delay: 0.84s;
}
.form-v2 .form-preloader .preloader__item-8 {
  left: 5px;
  bottom: 5px;
  animation-delay: 0.98s;
}
.form-v2 .form__btn {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.form-v2 .form__privacy {
  color: var(--Stroke);
}
.form-v2 .form__privacy-link {
  color: var(--Primary);
  cursor: pointer;
  transition: 0.4s;
}
.form-v2 .form__checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.form-v2 .form__checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.form-v2 .form__checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: max(2 / 19.2 * 1vw, 2px);
  left: max(8 / 19.2 * 1vw, 8px);
  width: max(6 / 19.2 * 1vw, 6px);
  height: max(12 / 19.2 * 1vw, 12px);
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-v2 .form__checkbox input:checked + label::before {
  background-color: #000;
  border-color: #000;
}
.form-v2 .form__checkbox input.error ~ label::before {
  border-color: red;
  color: red;
}
.form-v2 .form__checkbox label {
  position: relative;
  cursor: pointer;
  display: flex;
}
.form-v2 .form__checkbox label:before {
  content: "";
  background-color: transparent;
  border: 1px solid #e2e3e3;
  padding: max(10 / 19.2 * 1vw, 10px);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: max(10 / 19.2 * 1vw, 10px);
  border-radius: 3px;
  height: 100%;
}
@keyframes bounce_circularG {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.3);
  }
}
.label {
  position: relative;
  margin-bottom: max(20 / 19.2 * 1vw, 20px);
}
.label textarea + span {
  top: max(20 / 19.2 * 1vw, 20px);
  transform: none;
}
.label span {
  position: absolute;
  top: 50%;
  left: max(20 / 19.2 * 1vw, 20px);
  transform: translateY(-50%);
  transition: 0.4s;
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
  pointer-events: none;
}
.label.active span {
  top: max(3 / 19.2 * 1vw, 3px);
  transform: none;
  font-size: max(10 / 19.2 * 1vw, 10px);
  line-height: 100%;
  letter-spacing: 0.5px;
}
.label.active input,
.label.active textarea {
  border-color: #000;
}
.label.active input::-moz-placeholder, .label.active textarea::-moz-placeholder {
  opacity: 1;
}
.label.active input::placeholder,
.label.active textarea::placeholder {
  opacity: 1;
}
.privacy-policy .content {
  padding-bottom: 40px;
}
.privacy-policy .content p {
  font-size: 14px;
}
.privacy-policy .content h2 {
  font-size: 18px;
  margin: 15px 0px 5px 0px;
  font-weight: 600;
}
.privacy-policy .content h2:nth-child(1) {
  margin-top: unset;
}
.content > *:first-child:not(.contact-block) {
  padding-top: 0 !important;
}
.content__padding {
  padding-bottom: max(80 / 19.2 * 1vw, 40px);
}
.content-sidebar {
  display: flex;
  justify-content: space-between;
}
.content-sidebar > *:first-child {
  flex: 0 0 74.4%;
}
.content-columns {
  display: flex;
  justify-content: space-between;
}
.content-columns .content-text {
  flex: 0 0 49%;
}
.content-columns .content-image {
  flex: 1;
  margin-left: 130px;
  height: 100%;
}
.content-columns .content-image:after {
  content: "";
  padding-bottom: 100%;
  display: block;
}
.content-columns .content-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}
.content .wp-block-image {
  overflow: hidden;
  border-radius: 10px;
}
.content .wp-block-image:after {
  content: "";
  padding-bottom: 100%;
  display: block;
}
.content .wp-block-image img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.content .wp-block-columns {
  padding: 60px 0;
  margin-bottom: 0;
}
.content .wp-block-columns.is-layout-flex {
  gap: 30px;
}
.content-text .wp-block-image {
  overflow: hidden;
  border-radius: 130px;
}
.content-text .wp-block-image img {
  width: 100%;
}
.content-text .wp-block-columns {
  margin: 0 -65px 80px;
}
.content-text > *:last-child {
  margin-bottom: 0 !important;
}
.content-text .wp-block-column {
  padding: 0 65px;
}
.text-block > *:first-child:not(.contact-block),
.wp-block-column > *:first-child:not(.contact-block) {
  padding-top: 0 !important;
}
.text-block > p,
.wp-block-column > p {
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color: var(--color, var(--Main-text));
}
.text-block > p:not(:last-child),
.wp-block-column > p:not(:last-child) {
  margin-bottom: max(15 / 19.2 * 1vw, 15px);
}
.text-block > h1,
.wp-block-column > h1 {
  margin-bottom: max(40 / 19.2 * 1vw, 25px);
}
.text-block > h2,
.wp-block-column > h2 {
  padding-top: max(25 / 19.2 * 1vw, 15px);
  margin-bottom: max(35 / 19.2 * 1vw, 20px);
}
.text-block > h3,
.wp-block-column > h3 {
  padding-top: max(20 / 19.2 * 1vw, 10px);
  margin-bottom: max(30 / 19.2 * 1vw, 15px);
}
.text-block > h4,
.wp-block-column > h4 {
  padding-top: max(15 / 19.2 * 1vw, 5px);
  margin-bottom: max(25 / 19.2 * 1vw, 10px);
}
.text-block > h5,
.wp-block-column > h5 {
  padding-top: 10px;
  margin-bottom: 20px;
  padding-top: max(10 / 19.2 * 1vw, 5px);
  margin-bottom: max(20 / 19.2 * 1vw, 5px);
}
.text-block > h6,
.wp-block-column > h6 {
  padding-top: max(5 / 19.2 * 1vw, 5px);
  margin-bottom: max(15 / 19.2 * 1vw, 5px);
}
.text-block ul li,
.wp-block-column ul li {
  display: flex;
  align-items: baseline;
  list-style: none;
  position: relative;
}
.text-block ul li::before,
.wp-block-column ul li::before {
  content: "";
  margin-right: 10px;
  display: flex;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: red;
}
.text-block ol,
.wp-block-column ol {
  counter-reset: num;
}
.text-block ol li,
.wp-block-column ol li {
  display: flex;
  align-items: baseline;
  list-style: none;
  position: relative;
}
.text-block ol li::before,
.wp-block-column ol li::before {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  content: counter(num);
  counter-increment: num;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background: red;
  border-radius: 50%;
  --color: #FFFFFF;
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color: var(--color, var(--Main-text));
}
table {
  margin-top: 20px;
  margin-bottom: 30px;
}
table tr {
  height: auto !important;
  border-top: 1px solid #D9D9D9;
}
table td {
  padding: 20px 0;
  height: auto !important;
  min-width: 100px;
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color: var(--color, var(--Main-text));
}
table td:last-child {
  text-align: end;
}
table td:not(:last-child) {
  padding-right: 53px;
  min-width: -moz-max-content;
  min-width: max-content;
}
table td:first-child {
  --color: #828282;
}
.table__responsive {
  width: 100%;
  overflow: auto;
}
.table:last-of-type tr:last-child {
  border-bottom: 0;
}
#text-image-block {
  padding: 80px 0;
}
/*============ Modal End =================*/







/*============ SLIDER =================*/
.swiper-slide {
  height: auto !important;
}
.swiper-slide .product-card {
  height: 100%;
}

.slider-btn {
  width: clamp(35px,0.9375vw + 32px, 50px);
  height: clamp(35px,0.9375vw + 32px, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  cursor: pointer;
  border: 1px solid var(--Primary);
  background: var(--Card);
  transition: 0.4s;
  border-radius: 50%;
}
.slider-btn:hover {
  background: var(--Accent);
  border-color: var(--Accent);
}
.slider-btn svg {
  width: clamp(20px,0.25vw + 19.2px, 24px);
  height: clamp(20px,0.25vw + 19.2px, 24px);
  --svgColor: var(--Accent);
}
.slider-btn--prev svg {
  transform: rotate(180deg);
}
.slider-btn.swiper-button-disabled {
  pointer-events: none !important;
}
.slider-btn.swiper-button-disabled svg {
  --svgColor: var(--Stroke);
}
.slider-btn:hover path {
  stroke: var(--Card);
}
.slider-pagination {
  position: var(--pagination-position, static) !important;
  text-align: var(--pagination-text-align, end) !important;
  max-width: 65%;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-color: var(--Primary);
  --swiper-pagination-bullet-inactive-color: var(--Card);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
  z-index: 1 !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.slider-pagination .swiper-pagination-bullet {
  border: 1px solid var(--Primary);
}
.slider-pagination .swiper-pagination-bullet-active {
  border-color: var(--Primary);
}
.swiper-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(20px,1.25vw + 16px, 40px);
}
.swiper-navigation .swiper-pagination {
  margin-left: auto;
}
.swiper-navigation-btn {
  display: flex;
  gap: 15px;
}





/*============ PAGINATION =================*/
.page-numbers {
  font-weight: 400;
  font-size: clamp(16px,0.25vw + 15.2px, 20px);
  line-height: 150%;
  color:  var(--Main-text);
  color: var(--Head);
  margin: 0 clamp(5px,0.3125vw + 4px, 10px);
}
.page-numbers.current {
  color: var(--Primary);
}
.page-numbers.prev, .page-numbers.next {
  width: clamp(35px,0.9375vw + 32px, 50px);
  height: clamp(35px,0.9375vw + 32px, 50px);
  cursor: pointer;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--Background-light);
  margin: 0;
}
.page-numbers.prev svg, .page-numbers.next svg {
  width: clamp(20px,0.25vw + 19.2px, 24px);
  height: clamp(20px,0.25vw + 19.2px, 24px);
  transition: 0.4s;
  --svgColor: var(--Primary);
}
.page-numbers.next {
  margin-left: clamp(30px,10.625vw + -4px, 200px);
}
.page-numbers.prev {
  margin-right: clamp(30px,10.625vw + -4px, 200px);
}
.page-numbers.prev svg {
  transform: rotate(180deg);
}

span.prev, span.next {
  pointer-events: none !important;
}
span.prev svg, span.next svg {
  color: var(--Stroke) !important;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(20px,1.25vw + 16px, 40px) auto 0;
  position: relative;
}

/*============ TEMPLATES ===============*/






/* ============= MEDIA QUERIES ===========*/
@media (max-width: 1280px) {
  .content-columns .content-text {
    flex: 0 0 57%;
  }
  .content-columns .content-image {
    margin-left: 80px;
  }
  .content-sidebar > *:first-child {
    flex: 0 0 70%;
  }
}
@media (max-width: 992px) {
  .footer__link:hover {
    color: var(--Primary);
  }
  .grampus-link:hover svg {
    fill: var(--Primary);
  }
  .page-numbers.prev:hover, .page-numbers.next:hover {
    background-color: var(--Hover);
  }
  .page-numbers.prev:hover svg, .page-numbers.next:hover svg {
    --svgColor: var(--Card);
  }
  .page-numbers:hover {
    color: var(--Primary);
  }
  .slider-btn:hover {
    background-color: var(--Accent);
    border-color: var(--Accent);
  }
  .slider-btn:hover svg {
    --svgColor: var(--Card);
  }
  .theme-modal.fancybox__content [data-fancybox-close]:hover svg {
    --svgColor: var(--Accent);
  }
  .theme-modal .form .form__privacy-link:hover {
    color: var(--Accent);
  }
  .form-v2 input:not([type=submit]):hover {
    border-color: var(--Accent);
    background-color: var(--Card);
    color: var(--Accent);
  }
  .form-v2 input:not([type=submit]):hover::-moz-placeholder {
    color: var(--Accent);
  }
  .form-v2 input:not([type=submit]):hover::placeholder {
    color: var(--Accent);
  }
  .form-v2 textarea:hover {
    color: var(--Head);
  }
  .form-v2 textarea:hover::-moz-placeholder {
    color: var(--Head);
  }
  .form-v2 textarea:hover::placeholder {
    color: var(--Head);
  }
  .form-v2 .form__privacy-link:hover {
    text-decoration: underline;
  }
  .socials__item:hover {
    background-color: var(--Primary);
  }
  .socials__item:hover img {
    filter: brightness(0) invert(1);
  }
  .header__menu {
    display: none;
  }
  .header__contact .header__contact-block.time-work {
    display: none;
  }
  .header__contact {
    justify-content: end;
    gap: 30px;
  }
  .content-columns {
    flex-direction: column;
  }
  .content-columns .content-image {
    width: 50%;
    margin: 30px auto 0;
  }
  .content .wp-block-image {
    top: 92px;
  }
}

@media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .mobile-menu-open {
    display: flex;
  }
  .text-block > h5,
  .wp-block-column > h5 {
    padding-top: 5px;
    margin-bottom: 5px;
  }
  table td:not(:last-child) {
    padding-right: 20px;
  }
  .content__padding {
    padding-bottom: 40px;
  }
  .content .wp-block-columns.is-layout-flex {
    gap: 15px;
  }
  .content .wp-block-columns {
    padding: 30px 0;
  }
}

@media (max-width: 600px) {
  .header__contact {
    gap: 20px;
  }
  .header__contact .header__socials {
    display: none;
  }
  p, .p {
    line-height: 130%;
  }
}

@media (max-width: 498px) {
  .form-v2 .form__btn-wrap {
    flex-direction: column;
  }
  .form-v2 .form__btn-wrap .form__privacy {
    max-width: 100%;
    order: inherit;
    margin-top: 10px;
  }
  .form-v2 .form__btn-wrap .submit {
    width: 100%;
  }
  .header__logo {
    max-width: 120px;
  }
  .breadcrumbs,
  .breadcrumbs span {
    font-size: 12px;
  }
  .privacy-policy .content h2 {
    font-size: 14px;
  }
  table td,.privacy-policy .content p {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .header__contact .header-contact__value {
    font-size: 12px;
  }
  .header__contact .header-contact__title {
    font-size: 10px;
  }
  .header__logo {
    max-width: 110px;
  }
  .content-columns .content-image {
    width: 100%;
  }
}