@charset "UTF-8";

.content blockquote,
.popup__content,
.btn {
  border: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 2px;
  border-style: solid;
  border-image-slice: 1;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #56575C;
  line-height: 1;
  font-family: "Montserrat";
  font-size: 1.125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat";
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}

input,
textarea {
  width: 100%;
}

button,
select,
option {
  cursor: pointer;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

/*
(I) стили будут применяться к всех классов,
содержащих * __container Например header__ container,
main__ container и т.п.
Сниппет (HTML): cnt
*/

[class*=__container] {
  max-width: 86.25rem;
  margin: 0 auto;
  padding: 0 20px;
}

.fancybox__container {
  max-width: 100% !important;
}

.form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form__title {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  line-height: 130%;
  color: #fff;
}

.form__title span {
  font-weight: 700;
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form__subtitle {
  font-family: "Open Sans";
  line-height: 150%;
  color: #fff;
  max-width: 350px;
}

.form__btn {
  margin-left: auto;
  margin-right: auto;
  padding: 18px;
  max-width: 223px;
  width: 100%;
}

.btn {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #202020;
  border-radius: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn--white {
  border: 2px solid #454240;
  background-color: #fff;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  color: #56575c;
}

.btn--fw {
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  border-radius: 0 !important;
  display: block;
  padding: 10px 26px;
  border: 1px solid #fff;
  caret-color: inherit;
  width: 100%;
  color: #fff;
}

.input:not(:last-child) {
  margin-bottom: 10px;
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea.input {
  height: 100%;
  resize: none;
}

.checkbox-other {
  display: block;
  margin: 0 0 10px 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}

.checkbox-other input[type=checkbox] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.checkbox-other span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 35px;
  line-height: 22px;
}

.no-webp .checkbox-other span:before {
  background: url(https://snipp.ru/uploads/contents/checkbox-1.png) 0 0 no-repeat;
}

.checkbox-other span:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

/* Checked */

.no-webp .checkbox-other input[type=checkbox]:checked+span:before {
  background-image: url(https://snipp.ru/uploads/contents/checkbox-2.png);
}

/* Focus */

.focused span:before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Hover */

.checkbox-other span:hover:before {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

/* Active */

.checkbox-other span:active:before {
  -webkit-filter: brightness(80%);
  filter: brightness(80%);
}

/* Disabled */

.checkbox-other input[type=checkbox]:disabled+span {
  color: #666;
  cursor: default;
}

.checkbox-other input[type=checkbox]:disabled+span:before {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.6;
}

.form_radio {
  margin-bottom: 10px;
}

.form_radio input[type=radio] {
  display: none;
}

.form_radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 0;
  line-height: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form_radio label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: 1px;
  border: 2px solid #202020;
}

/* Checked */

.form_radio input[type=radio]:checked+label:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  bottom: 5px;
  border: 2px solid #202020;
  background: #202020;
}

/* Hover */

.form_radio label:hover:before {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

/* Disabled */

.form_radio input[type=radio]:disabled+label:before {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.icon-menu {
  display: none;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.popup__content {
  position: relative;
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background: #202020;
  padding: 20px;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
  max-width: 500px;
}

.lock .popup__content {
  visibility: visible;
}

.popup__title {
  color: #fff;
  text-align: center;
}

.popup__text {
  color: #fff;
  text-align: center;
}

.popup__close {
  position: absolute;
  right: 10px;
  top: 0px;
  rotate: 45deg;
  color: #fff;
  font-size: 32px;
}

.spollers {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  width: 100%;
}

.spollers__item {
  font-size: 1.25rem;
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  padding: 1.25rem 3.125rem;
  position: relative;
  list-style: none;
  -webkit-backdrop-filter: blur(11.3999996185px);
  backdrop-filter: blur(11.3999996185px);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: rgba(69, 66, 64, 0.8);
  line-height: 123%;
  color: #fff;
}

.spollers__title::marker,
.spollers__title::-webkit-details-marker {
  display: none;
}

._spoller-init .spollers__title {
  cursor: pointer;
  /*
  ._spoller-init & {
  	position: relative;
  	width: 100%;
  	text-align: left;
  	&::before,
  	&::after {
  		content: "";
  		position: absolute;
  		right: 0;
  		top: toRem(12);
  		height: toRem(1);
  		transition: all 0.3s ease 0s;
  		width: toRem(10);
  		background-color: #000;
  	}
  	&::before {
  		transform: rotate(40deg);
  		right: toRem(7);
  	}
  	&::after {
  		transform: rotate(-40deg);
  	}
  }
  &._spoller-active {
  	&::before {
  		transform: rotate(-40deg);
  	}
  	&::after {
  		transform: rotate(40deg);
  	}
  }
  */
}

._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  background-color: #fff;
  height: 2px;
  width: 20px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

._spoller-init .spollers__title::before {
  -webkit-transform: translate(0, 0) rotate(0deg);
  -ms-transform: translate(0, 0) rotate(0deg);
  transform: translate(0, 0) rotate(0deg);
}

._spoller-init .spollers__title::after {
  -webkit-transform: translate(0, 0) rotate(90deg);
  -ms-transform: translate(0, 0) rotate(90deg);
  transform: translate(0, 0) rotate(90deg);
}

._spoller-init .spollers__title._spoller-active::before {
  -webkit-transform: translateX(0) rotate(0deg);
  -ms-transform: translateX(0) rotate(0deg);
  transform: translateX(0) rotate(0deg);
}

._spoller-init .spollers__title._spoller-active::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.spollers__body {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 123%;
  color: #777;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background-color: #202020;
  color: #fff !important;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px !important;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  background: #56575C !important;
  opacity: 1 !important;
  border: 2px solid #56575C !important;
}

.swiper-pagination-bullet-active {
  border-radius: 50% !important;
  background: #2e2e2e !important;
  border: 2px solid transparent !important;
  border-width: 2px !important;
  border-style: solid !important;
  border-image-slice: 1 !important;
}

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

.ibg--top {
  -o-object-position: top;
  object-position: top;
}

.ibg--bottom {
  -o-object-position: bottom;
  object-position: bottom;
}

.ibg--left {
  -o-object-position: left;
  object-position: left;
}

.ibg--right {
  -o-object-position: right;
  object-position: right;
}

.ibg--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #202020 #dedede;
}

/* для Chrome/Edge/Safari */

*::-webkit-scrollbar {
  height: 12px;
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: #dedede;
}

*::-webkit-scrollbar-thumb {
  background-color: #202020;
  border-radius: 5px;
}

.btn-up {
  position: fixed;
  background-color: #202020;
  left: 20px;
  z-index: 100;
  bottom: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.btn-up::before {
  content: "";
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 fill=%27%23fff%27 viewBox=%270 0 16 16%27%3E%3Cpath fill-rule=%27evenodd%27 d=%27M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z%27/%3E%3C/svg%3E");
}

.btn-up_hide {
  display: none;
}

.hero__wrap {
  -webkit-backdrop-filter: blur(22.6000003815px);
  backdrop-filter: blur(22.6000003815px);
  background: rgba(16, 11, 5, 0.29);
  max-width: 684px;
  margin-left: -55px;
  color: #fff;
  font-family: "Montserrat Alternates", sans-serif;
}

.hero__subtitle {
  font-weight: 300;
  color: #b3b3b7;
  margin-bottom: 22px;
}

.hero__title {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__text {
  font-family: "Open Sans";
}

.hero__btn {
  width: 100%;
}

.section-title {
  font-weight: 300;
  font-family: "Montserrat Alternates";
}

.section-title span {
  font-weight: 800;
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  vertical-align: bottom;
}

.subscription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 23px;
}

.subscription__title {
  font-weight: 600;
  font-size: 23px;
  text-transform: uppercase;
  color: #56575c;
  margin-bottom: 16px;
}

.subscription__text {
  font-weight: 500;
  font-size: 15px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #56575c;
}

.content blockquote {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-right: 240px;
  padding-left: 5px;
  font-family: var(--font-family);
  font-weight: 300;
  line-height: 150%;
  max-width: 1020px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  text-align: left;
  margin-right: 10%;
}

.content blockquote p {
  margin-bottom: 0;
  position: relative;
  border-left: 1px solid #000;
  line-height: 1;
  padding-left: 25px;
}

.content blockquote p strong {
  display: block;
  font-weight: 700;
  margin-top: 5px;
}

.content-home blockquote {
  color: #fff;
}

.content-home blockquote p {
  margin-bottom: 0;
  position: relative;
  border-left: 1px solid #fff;
}

.content-noimage blockquote {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1290px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.content-noimage blockquote p {
  margin-bottom: 0;
  position: relative;
  border-left: 1px solid #000;
  line-height: 1;
  padding-left: 25px;
}

.content-noimage blockquote p strong {
  display: block;
  font-weight: 700;
  margin-top: 5px;
}

.breadcrumbs {
  font-family: "Open Sans";
  padding-top: 36px;
  font-weight: 400;
  font-size: 10px;
  color: #c4c4c4;
}

.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.title {
  font-family: "Montserrat Alternates";
  font-weight: 700;
  line-height: 120%;
}

.title-page {
  background: linear-gradient(14deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pageSlider__item {
  padding-right: max(5px, (100% - 1370px) / 2);
}

.pageSlider__item:nth-child(even) {
  padding-left: max(5px, (100% - 1370px) / 2);
  padding-right: 0;
}

.pageSlider__item:nth-child(even) .pageSlider__item-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-left: 40px;
  padding-right: 0;
}

.pageSlider__item:nth-child(even) .pageSlider__item-wrap::after {
  content: "";
  display: block;
  width: 99%;
  height: 98%;
  position: absolute;
  z-index: 1;
  top: 6px;
  bottom: 2px;
  left: 0;
  right: -6px;
  border: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 2px;
  border-style: solid;
  border-image-slice: 1;
}

.pageSlider__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
  padding-right: 40px;
}

.pageSlider__item-wrap::after {
  content: "";
  display: block;
  width: 99%;
  height: 98%;
  position: absolute;
  z-index: 1;
  top: 6px;
  bottom: 2px;
  left: 6px;
  right: 2px;
  border: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 2px;
  border-style: solid;
  border-image-slice: 1;
}

.pageSlider__item-info {
  font-family: "Montserrat Alternates";
}

.pageSlider__item-info__top {
  padding-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
  padding-right: 40px;
}

.pageSlider__item-info__date {
  font-weight: 400;
  line-height: 120%;
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  border-right: 1px solid #b3b3b7;
  padding-right: 20px;
}

.pageSlider__item-info__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  color: #202020;
}

.pageSlider__item-info__text {
  font-family: "Open Sans";
  line-height: 150%;
  color: #74757c;
}

.pageSlider__item-img {
  width: 100%;
  max-width: 840px;
}

.pageSlider__item-slider {
  max-width: 874px;
  position: relative;
  z-index: 2;
}

.pageSlider__slider {
  padding-bottom: 100px !important;
}

.pageSlider__slide {
  height: 250px !important;
}

.pageSlider .swiper-pagination {
  text-align: left;
}

.pageSlider .swiper-pagination-bullets {
  bottom: 26px !important;
}

.header {
  background: rgba(16, 11, 5, 0.8);
  color: #fff;
  position: absolute;
  width: 100%;
  top: 28px;
}

.header__overlay {
  background: rgba(69, 66, 64, 0.88);
  height: 28px;
  position: absolute;
  width: 100%;
  top: -28px;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  height: 87px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.header__logo img {
  margin-top: 25px;
  z-index: 20;
}

.header__logo-text {
  font-weight: 400;
  font-size: 15px;
  text-wrap: nowrap;
}

.header__logo-text strong {
  display: block;
  margin-top: 3px;
  font-weight: 700;
  font-size: 20px;
}

.header__phone {
  margin-bottom: 8px;
  text-align: end;
  display: block;
  text-wrap: nowrap;
  font-size: 23px;
}

.header__messanger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.header__messanger span {
  font-size: 9px;
  color: #7f7f7f;
}

.header__spollers {
  width: auto !important;
}

.header__spollers-item {
  position: relative;
}

.header__spollers-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1px;
  border: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 1px;
  border-style: solid;
  border-image-slice: 1;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}

.header__spollers-title::before,
.header__spollers-title::after {
  background-color: #fff !important;
  width: 7px !important;
  height: 1px !important;
  right: 20px !important;
}

.header__spollers-title::before {
  rotate: 45deg;
}

.header__spollers-title::after {
  rotate: -135deg;
  translate: 5px;
}

.header__spollers-title._spoller-active::before {
  rotate: 135deg;
}

.header__spollers-title._spoller-active::after {
  rotate: -135deg !important;
  translate: 5px;
}

.header__spollers-title span {
  padding-left: 12px;
  padding-right: 43px;
  padding-top: 3px;
  padding-bottom: 3px;
  color: #d9d9d9;
  font-size: 13px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.header__spollers-img {
  width: 32px;
  height: 21px;
  background: linear-gradient(357deg, #edd27e 0%, #d5ad54 13.4%, #aa7114 47.17%, #e6c56d 92.97%, #edd280 100%, #f6f4c9 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__spollers-body {
  border: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 1px;
  border-style: solid;
  border-image-slice: 1;
  padding-left: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 0 !important;
  background: rgba(16, 11, 5, 0.8);
  position: absolute;
  z-index: 2;
  width: 100%;
}

.header__spollers-body__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.header__spollers-body__item:not(:last-child) {
  margin-bottom: 10px;
}

.header__spollers-body__item span {
  color: #d9d9d9;
  font-size: 13px;
}

.menu__body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}

.menu__body ul li a {
  position: relative;
  text-wrap: nowrap;
  font-size: 16px;
}

.menu__body ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  height: 2px;
  bottom: -6px;
  left: 0;
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.menu__body ul li a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}

.menu__body ul li a.current-menu-item::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  height: 2px;
  bottom: -6px;
  left: 0;
  right: 0;
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}

.header__spollers-title:hover .header__spollers-body {
  border: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 1px;
  border-style: solid;
  border-image-slice: 1;
  padding-left: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 0 !important;
  background: rgba(16, 11, 5, 0.8);
  position: absolute;
  z-index: 2;
  width: 100%;
}

.footer {
  background: #282828;
}

.footer__wrap {
  padding-top: 64px;
  padding-bottom: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #565656;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  font-weight: 700;
      text-align: center;
}

.footer__logo img {
  max-width: 117px;
        margin-inline: auto;
}

.footer__logo span {
  font-weight: 400;
  margin-bottom: 7px;
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__menu--mobile {
  display: none;
}

.footer__list {
  color: #fff;
  font-size: 18px;
}

.footer__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  height: 320px;
}

.footer__list ul li:last-child {
  /*margin-top: auto;*/
  /*list-style-type: disc;*/
  /*margin-left: 20px;*/
}

.footer__list--3 ul li:last-child {
  /*margin-top: auto;*/
  list-style-type: none;
  margin-left: 0px;
}

.footer__list--color {
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 0.01%, #aa7114 50%, #e6c56d 97.9%, #f6f4c9 99.99%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__list--color ul li:last-child {
  margin-top: 0;
  list-style-type: none;
  margin-left: 0;
}

.footer__list--color ul li.ls {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  margin-left: 20px;
  list-style-type: disc;
}

.footer__contact {
  color: #fff;
}

.footer__contact .header__phone {
  margin-bottom: 16px;
}

.footer__address {
  line-height: 150%;
  text-align: right;
  max-width: 300px;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 5px;
}

.header__spollers-title {
  background: #282828;
}

.header__spollers-body {
  background: #282828;
}

.service {
  background: #202020;
  color: #fff;
}

.service__title {
  text-align: center;
}

.service__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service__grid-mobile {
  display: none;
}

.service__col-left__top {
  margin-bottom: 30px;
}

.service__col-left__top .service__item:nth-child(1) {
  height: 318px;
  position: relative;
}

.service__col-left__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service__col-left__bottom .service__item:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  min-width: 318px;
}

.service__col-left__bottom .service__item:nth-child(2) {
  border: 0;
}

.service__col-left__bottom .service__item:nth-child(2) .service__item-img {
  height: 100%;
  width: 100%;
}

.service__col-left__bottom .service__item:nth-child(2) .service__item-img img {
  max-width: 100%;
  height: 100%;
}

.service__col-right__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.service__col-right__top .service__item:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 318px;
}

.service__col-right__top .service__item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 318px;
  padding-top: 30px;
}

.service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-family: "Montserrat Alternates";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*.service__item:hover {*/
/*  cursor: pointer;*/
/*}*/

.service__item-subtitle a{
    cursor:pointer;
    background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
    -webkit-background-clip: text;
    color: transparent;
      transition: all 0.3s ease;
}

.service__item-subtitle a:hover{
    color:#fff !important;
}

.service__item::before {
  content: "";
  display: block;
  width: 99%;
  height: 99%;
  position: absolute;
  z-index: 1;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  border: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 1px;
  border-style: solid;
  border-image-slice: 1;
}

.service__item-empty::before {
  display: none;
}

.service__item-empty .service__item-img {
  scale: 1;
}

.service__item:nth-child(odd) .service__item-info {
  height: 318px;
}

.service__item-img {
  scale: 1.03;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service__item-img img {
  max-width: 100%;
  height: 100%;
}

.service__item-info {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-left: 35px;
  padding-right: 20px;
  padding-bottom: 110px;
}

.service__item-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-size: 35px;
}

.service__item-subtitle {
  font-size: 18px;
  text-transform: uppercase;
  max-width: 210px;
}

.portfolio {
  position: relative;
}

.portfolio-title-abs {
  position: absolute;
  top: 30px;
  right: 0px;
}

.portfolio__wrap {
  display: -ms-grid;
  display: grid;
  gap: 26px 26px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.portfolio__btn {
  margin-left: auto;
  margin-right: auto;
  max-width: 250px;
  width: 100%;
  padding: 20px;
}

.no-webp .review {
  background-image: url(../img/rev-bg.png);
}

.review {
  background: #fafafb;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.review__wrap {
  max-width: 1046px;
  margin: 0 auto;
}

.review__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review__company-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review__company-img img {
  width: 100%;
}

.review__company-info {
  font-weight: 300;
  color: #56575c;
}

.review__company-star {
  margin-bottom: 7px;
}

.review__company-star img {
  width: 100%;
  max-width: 12px;
}

.review__item {
  border-radius: 3px;
  background: #fff;
  font-family: "Open Sans";
}

.review__item:not(:last-child) {
  margin-bottom: 13px;
}

.review__item-text {
  color: #56575c;
  margin-bottom: 25px;
}

.review__item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.review__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}

.review__item-qw img {
  width: 100%;
}

.review__item-name {
  font-weight: 700;
  color: #454545;
  margin-bottom: 8px;
}

.review__item-star img {
  width: 100%;
  max-width: 12px;
}

.review__item-company {
  max-width: 100px;
}

.review__item-company img {
  width: 100%;
}

.review__btn {
  padding: 20px;
  max-width: 250px;
  width: 100%;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
}

.smallOrder {
  background: #202020;
  position: relative;
  overflow: hidden;
}

.no-webp .smallOrder::before {
  background-image: url(../img/icon/ordersm.png);
}

.smallOrder::before {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 500px;
  height: 293px;
  position: absolute;
  left: 103px;
}

.smallOrder__wrap {
  margin-left: auto;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.smallOrder__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.smallOrder__title {
  font-weight: 400;
  line-height: 130%;
  color: #fff;
  font-family: "Montserrat Alternates";
  max-width: 420px;
}

.smallOrder__title span {
  font-weight: 700;
}

.smallOrder__text {
  line-height: 150%;
  color: #fff;
  font-family: "Open Sans";
  max-width: 350px;
}

.smallOrder__btn {
  margin-top: auto;
  padding: 18px;
  width: 223px;
}

.smallOrder .input {
  position: relative;
  z-index: 1;
  width: 337px;
  background-color: #fff;
  border: 1px solid #fff;
  height: 60px;
  padding-left: 37px;
  color: #202020;
}

.smallOrder .input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #56575c !important;
}

.smallOrder .input::-moz-placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #56575c !important;
}

.smallOrder .input:-ms-input-placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #56575c !important;
}

.smallOrder .input::-ms-input-placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #56575c !important;
}

.smallOrder .input::placeholder {
  font-size: 16px;
  line-height: 150%;
  color: #56575c !important;
}

.smallOrder .input:not(:last-child) {
  margin-bottom: 12px;
}

.no-webp .faq {
  background-image: url(../img/faq.png);
}

.faq__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq__title {
  font-family: "Montserrat Alternates";
  -webkit-backdrop-filter: blur(8.1000003815px);
  backdrop-filter: blur(8.1000003815px);
  background: rgba(255, 255, 255, 0);
  font-weight: 300;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.faq__title span {
  font-weight: 800;
  text-transform: uppercase;
}

.content {
  position: relative;
  overflow: hidden;
}

.no-webp .content-home {
  background-image: url(../img/rev-bg.png);
}

.content-home {
  background: #202020;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.no-webp .content-home::after {
  background-image: url(../img/text.png);
}

.content-home::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 143px;
  height: 1700px;
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
}

.content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.content__row-top {
  padding-left: max(5px, (100% - 1370px) / 2);
  margin-bottom: 44px;
}

.content__row-top .content__img {
  max-width: 600px;
  min-width: 350px;
}

.content__row-bottom {
  padding-right: max(5px, (100% - 1370px) / 2);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.content__row-bottom .content__img {
  max-width: 540px;
  min-width: 300px;
}

.content__col {
  max-width: 980px;
  padding-left: 20px;
}

.content__img {
  position: relative;
}

.content__img--bg::after {
  content: "";
  display: block;
  height: 372px;
  width: 453px;
  background-color: #F4F4F4;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 54px;
  z-index: -1;
}

.content .subtitle {
  font-family: "Montserrat Alternates";
  line-height: 120%;
  color: #686868;
  margin-bottom: 20px;
}

.content .title {
  font-family: "Montserrat Alternates";
  font-weight: 700;
  line-height: 120%;
}

.content .title span {
  background: linear-gradient(14deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content p {
  font-family: "Open Sans";
  line-height: 1.2;
}

.content ul {
  padding-left: 20px;
  font-family: "Open Sans";
}

.content ul li {
  list-style-type: disc;
}

.content ul li:not(:last-child) {
  margin-bottom: 5px;
}

.content ol {
  padding-left: 20px;
  font-family: "Open Sans";
}

.content ol li:not(:last-child) {
  margin-bottom: 5px;
}

.no-webp .order {
  background-image: url(../img/order.png);
}

.order {
  background-repeat: no-repeat;
  background-size: cover;
}

.order__wrap {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(32, 32, 32, 0.8);
  max-width: 1170px;
  margin: auto;
}

.miniSlider {
  background: #202020;
  position: relative;
}

.no-webp .miniSlider::before {
  background-image: url(../img/rel-bg.png);
}

.miniSlider::before {
  content: "";
  background-size: contain;
  width: 405px;
  height: 100%;
  display: block;
  position: absolute;
  left: 40px;
}

.miniSlider__wrap {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: relative;
}

.miniSlider__slider {
  max-width: 870px;
}

.miniSlider__info-title {
  font-family: "Montserrat Alternates";
  font-weight: 500;
  line-height: 120%;
  background: linear-gradient(14deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 74px;
}

.miniSlider__info-text {
  font-family: "Open Sans";
  line-height: 150%;
  color: #fff;
}

.miniSlider__wrapper {
  margin-left: auto;
}

.miniSlider .swiper-pagination-bullets {
  bottom: 110px !important;
}

.miniSlider .swiper-pagination {
  text-align: start;
  margin-left: 20px;
}

.miniSlider__slide-text {
  font-family: "Montserrat Alternates";
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  margin-top: 25px;
}

.team__title {
  font-weight: 800;
  text-transform: uppercase;
  color: #535353;
  text-align: center;
}

.team__wrap {
  display: -ms-grid;
  display: grid;
  gap: 30px 55px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.no-webp .team__item {
  background-image: url(../img/team-bg.png);
}

.team__item {
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-family: "Montserrat Alternates";
}

.team__item img {
  max-width: 280px;
  border-radius: 50%;
}

.team__item-title {
  font-weight: 700;
  text-transform: uppercase;
}

.news__btn {
  padding: 20px;
  max-width: 247px;
  margin: 0 auto;
}

.nopage__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nopage-col {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
}

.nopage__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.nopage__img img {
  max-width: 715px;
}

.no-webp .nopage__text {
  background-image: url(../img/404-bg.png);
}

.nopage__text {
  font-family: "Montserrat Alternates";
  background-size: cover;
  background-repeat: no-repeat;
  font-weight: 500;
  color: #fff;
}

.nopage__text p {
  max-width: 440px;
}

.nopage__text span {
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nopage__btn {
  padding: 24px;
  max-width: 436px;
}

.contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact__left {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.contact__item {
  padding-bottom: 16px;
}

.contact__item:nth-child(2) {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-bottom-width: 1px;
  border-style: solid;
  border-image-slice: 1;
}

.contact__item-title {
  font-family: "Montserrat Alternates";
  font-weight: 600;
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.contact__item-text {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  color: #56575c;
  margin-bottom: 20px;
  max-width: 340px;
}

.contact .header__messanger {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.contact .header__messanger span {
  color: #56575c;
}

.contact .header__spollers-title {
  background: #fff;
}

.contact .header__spollers-img {
  width: 32px;
  height: 23px;
}

.contact .header__spollers-title::before,
.contact .header__spollers-title::after {
  background-color: #56575c !important;
}

.contact .header__spollers-body {
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact .spollers__title {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact .header__messanger span {
  font-size: 17px;
}

.contact .footer__socials {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.contact__form {
  font-family: "Montserrat Alternates";
  width: 100%;
  max-width: 710px;
  background: #202020;
  padding-top: 70px;
  padding-bottom: 100px;
  padding-left: 130px;
  padding-right: 110px;
  text-align: center;
  position: relative;
}

.contact__form::before {
  content: "";
  display: block;
  width: 1500px;
  height: 605px;
  position: absolute;
  z-index: 1;
  border: 1px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 1px;
  border-style: solid;
  border-image-slice: 1;
  top: -20px;
  left: -80px;
}

.contact__form-title {
  line-height: 130%;
  text-align: center;
  color: #fff;
  margin-bottom: 13px;
}

.contact__form-title span {
  font-weight: 700;
}

.contact__form-subtitle {
  font-family: "Open Sans";
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  line-height: 150%;
  text-align: center;
  color: #93949a;
  margin-bottom: 50px;
}

.contact__form-input {
  position: relative;
  z-index: 2;
  border: 1px solid #c4c4c4;
}

.contact__form-input::-webkit-input-placeholder {
  color: #c4c4c4 !important;
}

.contact__form-input::-moz-placeholder {
  color: #c4c4c4 !important;
}

.contact__form-input:-ms-input-placeholder {
  color: #c4c4c4 !important;
}

.contact__form-input::-ms-input-placeholder {
  color: #c4c4c4 !important;
}

.contact__form-input::placeholder {
  color: #c4c4c4 !important;
}

.contact textarea {
  position: relative;
  z-index: 2;
  max-height: 100px;
}

.contact__form-btn {
  position: relative;
  z-index: 2;
  padding: 18px;
  max-width: 223px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.map-item {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  height: 700px;
}

.credit__content {
  padding-top: 0;
}

.credit__item {
  max-width: 1216px;
  margin-left: 120px;
  margin-right: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  border: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 2px;
  border-style: solid;
  border-image-slice: 1;
  margin-bottom: 130px;
}

.credit__item:nth-child(2) {
  margin-left: 38px;
  margin-right: 120px;
}

.credit__item:nth-child(2) .credit__item-info {
  margin-left: 78px;
  margin-right: 0;
}

.credit__item:nth-child(2) .credit__item-img {
  translate: 97px 62px;
}

.credit__item-img {
  position: relative;
  height: 349px;
  width: 580px;
  translate: -85px 36px;
}

.credit__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.credit__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 570px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 78px;
}

.credit__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  padding-top: 23px;
  margin-bottom: 30px;
  font-family: "Montserrat Alternates";
}

.credit__item-num {
  font-size: 70px;
  line-height: 60px;
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 20px;
  border-right: 1px solid #b3b3b7;
}

.credit__item-title {
  font-weight: 600;
  font-size: 26px;
  line-height: 125%;
  color: #202020;
}

.credit__item-text {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 150%;
  color: #74757c;
  margin-bottom: 22px;
}

.credit__item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
}

.credit__item-bottom__item {
  font-family: "Montserrat Alternates";
  -webkit-box-flex: 154px;
  -ms-flex: 154px;
  flex: 154px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 2px solid transparent;
  -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-width: 2px;
  border-style: solid;
  border-image-slice: 1;
  border-bottom: 0;
  padding: 18px;
  padding-bottom: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.credit__item-bottom__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 99%;
  text-align: center;
  color: #56575c;
  margin-bottom: 0px;
}

.credit__item-bottom__subtitle {
  margin-top: auto;
  font-weight: 600;
  font-size: 47px;
  line-height: 57px;
  text-align: center;
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.credit__item-bottom__subtitle span {
  font-size: 16px;
  line-height: 47px;
}

.clients {
  background-color: #202020;
  position: relative;
}

.no-webp .clients::after {
  background-image: url(../img/clients-bg.png);
}

.clients::after {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 650px;
  height: 938px;
  position: absolute;
  right: 0;
  top: -100px;
}

.clients__title {
  font-family: "Montserrat Alternates";
  font-weight: 500;
  line-height: 120%;
  background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clients__slider {
  max-width: 1120px;
  margin-left: 0 !important;
  padding-bottom: 40px !important;
}

.clients__wrapper {
  height: 354px !important;
}

.clients__slide {
  height: calc((100% - 30px) / 2) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.clients__slide img {
  width: 100%;
}

.clients .clients__slide-pagination {
  text-align: left;
  bottom: 0 !important;
}

.bigSlider__slider {
  height: 900px;
  max-width: 1380px;
}

.bigSlider__slide {
  height: auto !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  max-height: 250px;
}

.bigSlider__slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sort__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
}

.sort__select {
  position: relative;
}

.sort__select select {
  font-weight: 500;
  color: #93949a;
}

.sort__select::before {
  content: "";
  display: block;
  width: 40px;
  height: 21px;
  background-image: url(../img/icon/sel.svg);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  right: -26px;
  top: 0;
}

.sort__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.sort__date-item {
  font-family: "Montserrat Alternates";
  font-weight: 500;
  color: #93949a;
  padding: 5px 10px;
}

.pageSlider__item-text-hidden {
  background: -webkit-gradient(linear, left top, left bottom, from(#56575c), to(rgba(86, 87, 92, 0)));
  background: linear-gradient(180deg, #56575c 0%, rgba(86, 87, 92, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-height: 80px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pageSlider__item-text-hidden.active {
  background: none;
  max-height: 100%;
  -webkit-text-fill-color: #56575c;
}

.pageSlider__item-date {
  font-family: "Montserrat Alternates";
  font-size: 14px;
  color: #56575c;
  margin-bottom: 40px;
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */

/* FONT_START */

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

/* FONT_END */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* CSS Mode */

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Slide styles end */

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.f-throwOutUp {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}

.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

.f-fadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

.f-fadeFastIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

.f-fadeSlowIn {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

.f-crossfadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

.f-slideIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.f-classicIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }
}

@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }
}

@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }
}

@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  -webkit-box-shadow: var(--f-button-shadow);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  -webkit-transition: var(--f-button-transition);
  transition: var(--f-button-transition);
}

.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  -webkit-transform: var(--f-button-transform);
  -ms-transform: var(--f-button-transform);
  transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  -ms-touch-action: none;
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.fancybox__container::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image>.fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

.fancybox__caption {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content>.f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content>.f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content>.f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content>.f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide>.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  -webkit-transition: -webkit-transform 0.33s ease;
  transition: -webkit-transform 0.33s ease;
  transition: transform 0.33s ease;
  transition: transform 0.33s ease, -webkit-transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  -webkit-transition: -webkit-clip-path 0.33s ease;
  transition: -webkit-clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease, -webkit-clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  -webkit-filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  -webkit-animation: f-fadeIn 0.2s ease-out;
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  -webkit-transition: none !important;
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: flex;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

@media (min-width: 86.25em) {
  .form__title {
    font-size: 2.25rem;
  }

  .form__title {
    margin-bottom: 3.75rem;
  }

  .form__subtitle {
    font-size: 1rem;
  }

  .form__btn {
    margin-top: 4.375rem;
  }

  .btn {
    font-size: 1.3125rem;
  }

  .btn--white {
    font-size: 1.0625rem;
  }

  .popup__title {
    font-size: 2.5rem;
  }

  .popup__title {
    margin-bottom: 1.875rem;
  }

  .popup__text {
    font-size: 1.5rem;
  }

  .spollers__title {
    font-size: 1.375rem;
  }

  .spollers__body {
    padding-left: 2.8125rem;
  }

  .spollers__body {
    padding-right: 1.875rem;
  }

  .spollers__body {
    padding-top: 3.375rem;
  }

  .spollers__body {
    padding-bottom: 3.125rem;
  }

  .hero {
    padding-top: 14.375rem;
  }

  .hero--home {
    padding-bottom: 8.125rem;
  }

  .hero__wrap {
    padding-top: 4.25rem;
  }

  .hero__wrap {
    padding-bottom: 2.8125rem;
  }

  .hero__wrap {
    padding-left: 3.4375rem;
  }

  .hero__wrap {
    padding-right: 3.4375rem;
  }

  .hero__wrap {
    margin-left: -3.4375rem;
  }

  .hero__subtitle {
    font-size: 1.875rem;
  }

  .hero__subtitle {
    margin-bottom: 1.375rem;
  }

  .hero__title {
    font-size: 2.625rem;
  }

  .hero__title {
    margin-bottom: 1.375rem;
  }

  .hero__text {
    font-size: 1.25rem;
  }

  .hero__text {
    margin-bottom: 3.75rem;
  }

  .hero__btn {
    padding: 1.5rem;
  }

  .hero__btn {
    max-width: 27.25rem;
  }

  .section-title {
    margin-bottom: 4.0625rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .subscription {
    margin-bottom: 2.5rem;
  }

  .content blockquote {
    font-size: 1.25rem;
  }

  .content blockquote {
    margin-bottom: 5rem;
  }

  .title {
    font-size: 3.75rem;
  }

  .title {
    margin-bottom: 2.8125rem;
  }

  .title-page {
    font-size: 2.5rem;
  }

  .title-page {
    margin-bottom: 2.8125rem;
  }

  .pageSlider__item {
    margin-bottom: 7.5rem;
  }

  .pageSlider__item-info__date {
    font-size: 2.375rem;
  }

  .pageSlider__item-info__title {
    font-size: 1.5rem;
  }

  .pageSlider__item-info__text {
    font-size: 1rem;
  }

  .pageSlider__item-info__text {
    margin-bottom: 3.75rem;
  }

  .footer__logo img {
    margin-bottom: 2.5rem;
        margin-inline: auto;
  }

  .footer__logo {
    font-size: 1.25rem;
  }

  .footer__logo span {
    font-size: 0.9375rem;
  }

  .footer__menu {
    gap: 5.625rem;
  }

  .footer__address {
    font-size: 1.125rem;
  }

  .footer__address {
    margin-top: 2rem;
  }

  .footer__address {
    margin-bottom: 2.75rem;
  }

  .service {
    padding-top: 6.625rem;
  }

  .service {
    padding-bottom: 6.9375rem;
  }

  .portfolio {
    padding-top: 9.375rem;
  }

  .portfolio {
    padding-bottom: 5rem;
  }

  .portfolio__btn {
    margin-top: 5rem;
  }

  .review {
    padding-top: 8.75rem;
  }

  .review {
    padding-bottom: 7.5rem;
  }

  .review__company {
    margin-bottom: 2.125rem;
  }

  .review__company {
    gap: 3.125rem;
  }

  .review__company-item {
    gap: 3.125rem;
  }

  .review__company-info {
    font-size: 0.875rem;
  }

  .review__item {
    padding-top: 2.5rem;
  }

  .review__item {
    padding-left: 4.1875rem;
  }

  .review__item {
    padding-right: 3.5rem;
  }

  .review__item {
    padding-bottom: 1.875rem;
  }

  .review__item-text {
    font-size: 1.125rem;
  }

  .review__item-name {
    font-size: 1.3125rem;
  }

  .smallOrder__wrap {
    padding-top: 4.375rem;
  }

  .smallOrder__wrap {
    padding-bottom: 4.8125rem;
  }

  .smallOrder__wrap {
    gap: 2.5rem;
  }

  .smallOrder__title {
    font-size: 2.25rem;
  }

  .smallOrder__title {
    margin-bottom: 1.75rem;
  }

  .smallOrder__text {
    font-size: 1rem;
  }

  .faq {
    padding-top: 8.75rem;
  }

  .faq {
    padding-bottom: 9.125rem;
  }

  .faq__wrap {
    gap: 5.625rem;
  }

  .faq__title {
    font-size: 1.875rem;
  }

  .faq__title {
    padding-left: 2.5rem;
  }

  .faq__title {
    padding-right: 2.5rem;
  }

  .faq__title {
    gap: 3.125rem;
  }

  .faq__title span {
    font-size: 2.5rem;
  }

  .content {
    padding-top: 3.125rem;
  }

  .content {
    padding-bottom: 8.75rem;
  }

  .content-home {
    padding-top: 10rem;
  }

  .content__row {
    gap: 3.125rem;
  }

  .content .subtitle {
    font-size: 1.875rem;
  }

  .content .title {
    font-size: 3.75rem;
  }

  .content .title {
    margin-bottom: 3.5625rem;
  }

  .content .title-page {
    font-size: 2.5rem;
  }

  .content .title-page {
    margin-bottom: 2.8125rem;
  }

  .content p {
    margin-bottom: 1.875rem;
  }

  .content p {
    font-size: 1.125rem;
  }

  .content ul {
    margin-bottom: 1.875rem;
  }

  .content ul {
    font-size: 1.125rem;
  }

  .content ol {
    margin-bottom: 1.875rem;
  }

  .content ol {
    font-size: 1.125rem;
  }

  .order {
    padding-top: 6.25rem;
  }

  .order {
    padding-bottom: 6.25rem;
  }

  .order__wrap {
    padding-top: 6.25rem;
  }

  .order__wrap {
    padding-bottom: 6.25rem;
  }

  .order__wrap {
    padding-left: 6.25rem;
  }

  .order__wrap {
    padding-right: 6.25rem;
  }

  .miniSlider__wrap {
    padding-top: 6.25rem;
  }

  .miniSlider__wrap {
    padding-bottom: 6.25rem;
  }

  .miniSlider__wrap {
    gap: 2.1875rem;
  }

  .miniSlider__info-title {
    font-size: 2.625rem;
  }

  .miniSlider__info-title {
    margin-bottom: 1.25rem;
  }

  .miniSlider__info-title {
    padding-top: 4.625rem;
  }

  .miniSlider__info-text {
    font-size: 1rem;
  }

  .miniSlider__info-text {
    margin-bottom: 7.5rem;
  }

  .team {
    padding-top: 7.8125rem;
  }

  .team {
    padding-bottom: 3.125rem;
  }

  .team__title {
    font-size: 2.5rem;
  }

  .team__item {
    padding-top: 3.125rem;
  }

  .team__item {
    padding-bottom: 4.75rem;
  }

  .team__item {
    padding-left: 1.25rem;
  }

  .team__item {
    padding-right: 1.25rem;
  }

  .team__item img {
    margin-bottom: 3.5625rem;
  }

  .team__item-title {
    font-size: 1.875rem;
  }

  .team__item-subtitle {
    font-size: 1.375rem;
  }

  .news {
    padding-top: 3.125rem;
  }

  .news {
    padding-bottom: 4.375rem;
  }

  .nopage__text {
    font-size: 2.9375rem;
  }

  .nopage__text p {
    margin-bottom: 3.125rem;
  }

  .nopage__btn {
    margin-top: 11.25rem;
  }

  .contact__content {
    padding-bottom: 6.25rem;
  }

  .contact__wrap {
    padding-bottom: 3.75rem;
  }

  .contact__item {
    padding-left: 5rem;
  }

  .contact__item {
    padding-top: 3.125rem;
  }

  .contact__item:nth-child(2) {
    padding-top: 4.6875rem;
  }

  .contact__item:nth-child(2) {
    padding-bottom: 4.75rem;
  }

  .contact__item-title {
    font-size: 1.25rem;
  }

  .contact__item-text {
    font-size: 1.6875rem;
  }

  .contact__form {
    padding-top: 4.375rem;
  }

  .contact__form {
    padding-left: 8.125rem;
  }

  .contact__form {
    padding-right: 6.25rem;
  }

  .contact__form {
    padding-bottom: 6.25rem;
  }

  .contact__form-title {
    font-size: 2.25rem;
  }

  .contact__form-subtitle {
    font-size: 1rem;
  }

  .contact__form-btn {
    margin-top: 3.4375rem;
  }

  .map {
    gap: 4.625rem;
  }

  .credit__content {
    padding-bottom: 6.25rem;
  }

  .clients {
    padding-top: 6.875rem;
  }

  .clients {
    padding-bottom: 5.625rem;
  }

  .clients__title {
    font-size: 2.625rem;
  }

  .clients__title {
    margin-bottom: 4.125rem;
  }

  .sort {
    margin-bottom: 4.0625rem;
  }

  .sort__wrap {
    gap: 5rem;
  }

  .sort__select select {
    font-size: 1.125rem;
  }

  .sort__date-item {
    font-size: 1.125rem;
  }
}

@media (min-width: 120em) {
  .content blockquote {
    max-width: 63.75rem;
  }

  .header__logo-text {
    font-size: 0.9375rem;
  }

  .header__logo-text strong {
    font-size: 1.25rem;
  }

  .menu__body ul li a {
    font-size: 1rem;
  }

  .nopage__wrap {
    margin-top: 5.1875rem;
  }

  .nopage__img {
    padding-top: 12.5rem;
  }

  .nopage__text {
    padding-left: 8.75rem;
  }

  .nopage__text {
    padding-top: 12.5rem;
  }

  .nopage__text {
    padding-bottom: 12.5rem;
  }

  .credit__item-bottom {
    gap: 2.625rem;
  }
}

@media (max-width: 1400px) {
  .smallOrder::before {
    left: -30px;
    width: 300px;
  }
}

@media (max-width: 1310px) {
  .bigSlider__slider {
    height: 800px;
  }
}

@media (max-width: 1220px) {
  .contact__form {
    max-width: 500px;
  }

  .contact__form::before {
    left: -40px;
  }
}

@media (max-width: 1200px) {
  .service__grid {
    display: none;
  }

  .service__grid-mobile {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 318px 318px;
    grid-template-columns: 318px 318px;
    -ms-grid-column-align: center;
    justify-self: center;
    justify-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .service__item:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .service__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .service__item:nth-child(1) {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .service__item {
    max-width: 318px;
  }

  .credit__item:nth-child(2) .credit__item-img {
    translate: 70px 160px;
  }

  .credit__item-img {
    translate: -50px 120px;
    height: 250px;
  }
}

@media (max-width: 62em) {
  .header__logo-text {
    font-size: 0.8125rem;
  }

  .header__logo-text strong {
    font-size: 0.875rem;
  }

  .menu__body ul li a {
    font-size: 0.875rem;
  }

  .nopage__wrap {
    margin-top: 6.1875rem;
  }

  .nopage__img {
    padding-top: 6.25rem;
  }

  .nopage__text {
    padding-left: 1.875rem;
  }

  .nopage__text {
    padding-top: 6.25rem;
  }

  .nopage__text {
    padding-bottom: 5rem;
  }
}

@media (max-width: 992px) {
  .bigSlider__slider {
    height: 770px;
  }
}

@media (max-width: 768px) {
  .bigSlider__slider {
    height: 740px;
  }
}

@media (max-width: 662px) {
  .bigSlider__slider {
    height: 660px;
  }
}

@media (max-width: 592px) {
  .bigSlider__slider {
    height: 560px;
  }
}

@media (max-width: 560px) {
  .nopage__btn {
    max-width: 210px;
    margin-right: 5px;
  }
}

@media (max-width: 501px) {
  .bigSlider__slider {
    height: 500px;
  }
}

@media (max-width: 450px) {
  .bigSlider__slider {
    height: 460px;
  }
}

@media (max-width: 412px) {
  .bigSlider__slider {
    height: 430px;
  }
}

@media (max-width: 386px) {
  .bigSlider__slider {
    height: 390px;
  }
}

@media (max-width: 350px) {
  .bigSlider__slider {
    height: 320px;
  }
}

@media (max-width: 20em) {
  .form__title {
    font-size: 1.375rem;
  }

  .form__title {
    margin-bottom: 1.125rem;
  }

  .form__subtitle {
    font-size: 0.6875rem;
  }

  .form__btn {
    margin-top: 2.5rem;
  }

  .btn {
    font-size: 0.5625rem;
  }

  .btn--white {
    font-size: 0.75rem;
  }

  .popup__title {
    font-size: 1.25rem;
  }

  .popup__title {
    margin-bottom: 0.625rem;
  }

  .popup__text {
    font-size: 1rem;
  }

  .spollers__title {
    font-size: 1.125rem;
  }

  .spollers__body {
    padding-left: 1.25rem;
  }

  .spollers__body {
    padding-right: 1.25rem;
  }

  .spollers__body {
    padding-top: 2.1875rem;
  }

  .spollers__body {
    padding-bottom: 2.75rem;
  }

  .hero {
    padding-top: 6.25rem;
  }

  .hero--home {
    padding-bottom: 3.375rem;
  }

  .hero__wrap {
    padding-top: 1.8125rem;
  }

  .hero__wrap {
    padding-bottom: 1.25rem;
  }

  .hero__wrap {
    padding-left: 1.4375rem;
  }

  .hero__wrap {
    padding-right: 1.4375rem;
  }

  .hero__wrap {
    margin-left: -0.3125rem;
  }

  .hero__subtitle {
    font-size: 0.875rem;
  }

  .hero__subtitle {
    margin-bottom: 0.625rem;
  }

  .hero__title {
    font-size: 1.375rem;
  }

  .hero__title {
    margin-bottom: 0.625rem;
  }

  .hero__text {
    font-size: 0.625rem;
  }

  .hero__text {
    margin-bottom: 2.25rem;
  }

  .hero__btn {
    padding: 0.625rem;
  }

  .hero__btn {
    max-width: 11.5rem;
  }

  .section-title {
    margin-bottom: 1.875rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .subscription {
    margin-bottom: 1.625rem;
  }

  .content blockquote {
    font-size: 0.6875rem;
  }

  .content blockquote {
    margin-bottom: 1.875rem;
  }

  .title {
    font-size: 1.875rem;
  }

  .title {
    margin-bottom: 1.875rem;
  }

  .title-page {
    font-size: 1.5rem;
  }

  .title-page {
    margin-bottom: 1.875rem;
  }

  .pageSlider__item {
    margin-bottom: 1.875rem;
  }

  .pageSlider__item-info__date {
    font-size: 1.25rem;
  }

  .pageSlider__item-info__title {
    font-size: 0.875rem;
  }

  .pageSlider__item-info__text {
    font-size: 0.75rem;
  }

  .pageSlider__item-info__text {
    margin-bottom: 1.25rem;
  }

  .footer__logo img {
    margin-bottom: 1.25rem;
  }

  .footer__logo {
    font-size: 0.6875rem;
  }

  .footer__logo span {
    font-size: 0.5rem;
  }

  .footer__menu {
    gap: 0.625rem;
  }

  .footer__address {
    font-size: 0.75rem;
  }

  .footer__address {
    margin-top: 1.125rem;
  }

  .footer__address {
    margin-bottom: 1.25rem;
  }

  .service {
    padding-top: 2.875rem;
  }

  .service {
    padding-bottom: 4.1875rem;
  }

  .portfolio {
    padding-top: 3.125rem;
  }

  .portfolio {
    padding-bottom: 3.75rem;
  }

  .portfolio__btn {
    margin-top: 1.875rem;
  }

  .review {
    padding-top: 3.5625rem;
  }

  .review {
    padding-bottom: 3.125rem;
  }

  .review__company {
    margin-bottom: 0.75rem;
  }

  .review__company {
    gap: 1.25rem;
  }

  .review__company-item {
    gap: 1.25rem;
  }

  .review__company-info {
    font-size: 0.375rem;
  }

  .review__item {
    padding-top: 1.25rem;
  }

  .review__item {
    padding-left: 1.25rem;
  }

  .review__item {
    padding-right: 1.25rem;
  }

  .review__item {
    padding-bottom: 1.25rem;
  }

  .review__item-text {
    font-size: 0.75rem;
  }

  .review__item-name {
    font-size: 0.5625rem;
  }

  .smallOrder__wrap {
    padding-top: 3.75rem;
  }

  .smallOrder__wrap {
    padding-bottom: 3.75rem;
  }

  .smallOrder__wrap {
    gap: 1.25rem;
  }

  .smallOrder__title {
    font-size: 1.25rem;
  }

  .smallOrder__title {
    margin-bottom: 1.125rem;
  }

  .smallOrder__text {
    font-size: 0.625rem;
  }

  .faq {
    padding-top: 1.25rem;
  }

  .faq {
    padding-bottom: 2.5rem;
  }

  .faq__wrap {
    gap: 1rem;
  }

  .faq__title {
    font-size: 1.25rem;
  }

  .faq__title {
    padding-left: 1.875rem;
  }

  .faq__title {
    padding-right: 1.875rem;
  }

  .faq__title {
    gap: 1.875rem;
  }

  .faq__title span {
    font-size: 1.875rem;
  }

  .content {
    padding-top: 1.875rem;
  }

  .content {
    padding-bottom: 0.0000000625rem;
  }

  .content-home {
    padding-top: 4.375rem;
  }

  .content__row {
    gap: 1.25rem;
  }

  .content .subtitle {
    font-size: 0.75rem;
  }

  .content .title {
    font-size: 1.875rem;
  }

  .content .title {
    margin-bottom: 2.3125rem;
  }

  .content .title-page {
    font-size: 1.5rem;
  }

  .content .title-page {
    margin-bottom: 1.875rem;
  }

  .content p {
    margin-bottom: 0.625rem;
  }

  .content p {
    font-size: 0.75rem;
  }

  .content ul {
    margin-bottom: 0.625rem;
  }

  .content ul {
    font-size: 0.75rem;
  }

  .content ol {
    margin-bottom: 0.625rem;
  }

  .content ol {
    font-size: 0.75rem;
  }

  .order {
    padding-top: 0.0000000625rem;
  }

  .order {
    padding-bottom: 0.0000000625rem;
  }

  .order__wrap {
    padding-top: 4.375rem;
  }

  .order__wrap {
    padding-bottom: 4.375rem;
  }

  .order__wrap {
    padding-left: 1.5625rem;
  }

  .order__wrap {
    padding-right: 1.5625rem;
  }

  .miniSlider__wrap {
    padding-top: 3.125rem;
  }

  .miniSlider__wrap {
    padding-bottom: 5rem;
  }

  .miniSlider__wrap {
    gap: 1.25rem;
  }

  .miniSlider__info-title {
    font-size: 1.5rem;
  }

  .miniSlider__info-title {
    margin-bottom: 0.625rem;
  }

  .miniSlider__info-title {
    padding-top: 0.0000000625rem;
  }

  .miniSlider__info-text {
    font-size: 0.75rem;
  }

  .miniSlider__info-text {
    margin-bottom: 1.25rem;
  }

  .team {
    padding-top: 3.75rem;
  }

  .team {
    padding-bottom: 1.875rem;
  }

  .team__title {
    font-size: 1.5rem;
  }

  .team__item {
    padding-top: 1.875rem;
  }

  .team__item {
    padding-bottom: 1.875rem;
  }

  .team__item {
    padding-left: 0.625rem;
  }

  .team__item {
    padding-right: 0.625rem;
  }

  .team__item img {
    margin-bottom: 1.25rem;
  }

  .team__item-title {
    font-size: 1.375rem;
  }

  .team__item-subtitle {
    font-size: 1.125rem;
  }

  .news {
    padding-top: 1.875rem;
  }

  .news {
    padding-bottom: 1.875rem;
  }

  .nopage__text {
    font-size: 1.25rem;
  }

  .nopage__text p {
    margin-bottom: 1.25rem;
  }

  .nopage__btn {
    margin-top: 1.875rem;
  }

  .contact__content {
    padding-bottom: 2.5rem;
  }

  .contact__wrap {
    padding-bottom: 4.375rem;
  }

  .contact__item {
    padding-left: 0.0000000625rem;
  }

  .contact__item {
    padding-top: 1.25rem;
  }

  .contact__item:nth-child(2) {
    padding-top: 2.8125rem;
  }

  .contact__item:nth-child(2) {
    padding-bottom: 2.875rem;
  }

  .contact__item-title {
    font-size: 1rem;
  }

  .contact__item-text {
    font-size: 1.125rem;
  }

  .contact__form {
    padding-top: 1.875rem;
  }

  .contact__form {
    padding-left: 0.625rem;
  }

  .contact__form {
    padding-right: 0.625rem;
  }

  .contact__form {
    padding-bottom: 1.875rem;
  }

  .contact__form-title {
    font-size: 1.125rem;
  }

  .contact__form-subtitle {
    font-size: 0.8125rem;
  }

  .contact__form-btn {
    margin-top: 1.875rem;
  }

  .map {
    gap: 1.875rem;
  }

  .credit__content {
    padding-bottom: 3.125rem;
  }

  .clients {
    padding-top: 3.125rem;
  }

  .clients {
    padding-bottom: 2.5rem;
  }

  .clients__title {
    font-size: 1.5rem;
  }

  .clients__title {
    margin-bottom: 1.875rem;
  }

  .sort {
    margin-bottom: 1.875rem;
  }

  .sort__wrap {
    gap: 1.25rem;
  }

  .sort__select select {
    font-size: 0.875rem;
  }

  .sort__date-item {
    font-size: 0.875rem;
  }
}

@media (max-width: 87.5em) {
  .content blockquote {
    max-width: 56.25rem;
  }
}

@media (max-width: 81.25em) {
  .credit__item-bottom {
    gap: 0.375rem;
  }
}

@media (max-width: 61.99875em) {
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 88px;
    overflow: auto;
    padding: 1.875rem 0.9375rem 0.9375rem 1.875rem;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
    background: black;
    z-index: 10;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .icon-menu {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 74px;
    height: 60px;
    background: linear-gradient(357deg, #edd27e 0%, #d5ad54 13.4%, #aa7114 47.17%, #e6c56d 92.97%, #edd280 100%, #f6f4c9 100%);
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 20px;
    position: absolute;
    width: 30px;
    height: 0.0625rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 18px;
  }

  .icon-menu::after {
    bottom: 18px;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .content blockquote {
    padding: 28px;
    padding-left: 18px;
    padding-right: 18px;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .content blockquote p {
    padding-left: 10px;
  }

  .content-noimage blockquote {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .content-noimage blockquote p {
    padding-left: 15px;
  }

  .pageSlider__item {
    padding-left: 5px;
  }

  .pageSlider__item:nth-child(even) {
    padding-right: 5px;
  }

  .pageSlider__item:nth-child(even) .pageSlider__item-wrap {
    padding-left: 0;
  }

  .pageSlider__item-wrap {
    display: block;
    gap: 20px;
    padding-right: 0;
  }

  .pageSlider__item-info {
    padding: 20px;
  }

  .pageSlider__item-info__top {
    padding-top: 15px;
    padding-right: 0;
    margin-bottom: 20px;
    gap: 10px;
  }

  .pageSlider__item-info__date {
    padding-right: 10px;
  }

  .pageSlider__item-img {
    display: none;
  }

  .pageSlider__item-slider {
    max-width: 100%;
  }

  .pageSlider .swiper-pagination {
    text-align: center;
  }

  .header__wrap {
    height: 60px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .header__logo img {
    width: 60px;
    margin-top: 18px;
  }

  .header__logo img {
    width: 34px;
    margin-top: 4px;
  }

  .header__contact {
    padding-right: 120px;
  }

  .header__phone {
    margin-bottom: 6px;
  }

  .header__spollers-body__item {
    gap: 0px;
  }

  .menu__body ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__menu {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 80px;
  }

  .footer__contact {
    padding-right: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .portfolio-title-abs {
    display: none;
  }

  .no-webp .smallOrder::before {
    background-image: url(../img/icon/ordersm2.png);
  }

  .smallOrder::before {
    bottom: 0;
    left: 0;
    width: 345px;
    height: 340px;
  }

  .smallOrder__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }

  .smallOrder__title {
    text-align: center;
  }

  .smallOrder__text {
    text-align: center;
    max-width: 240px;
  }

  .content-home::after {
    display: none;
  }

  .content__row-top .content__img {
    max-width: 400px;
    min-width: auto;
  }

  .content__row-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 5px;
  }

  .content__row-bottom .content__img {
    max-width: 400px;
    min-width: auto;
  }

  .content__row-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 5px;
  }

  .news__btn {
    padding: 10px;
  }

  .nopage__btn {
    padding: 12px;
    max-width: 240px;
  }

  .contact__content {
    padding-bottom: 20px;
  }

  .contact__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contact__item {
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contact__item:nth-child(2) {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contact__item-text {
    margin-bottom: 5px;
  }

  .contact__form {
    margin-top: 60px;
    max-width: 100%;
  }

  .contact__form-btn {
    font-size: 14px;
  }

  .map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .map-item {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    min-height: 300px;
  }

  .map-item iframe {
    min-height: 300px;
  }

  .credit__item {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 60px;
  }

  .credit__item:nth-child(2) {
    margin-right: 20px;
    margin-left: 20px;
  }

  .credit__item:nth-child(2) .credit__item-info {
    margin-left: 20px;
  }

  .credit__item:nth-child(2) .credit__item-img {
    translate: 0;
  }

  .credit__item-img {
    translate: 0 0;
    min-width: 200px;
  }

  .credit__item-info {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    margin-right: 20px;
  }

  .credit__item-top {
    gap: 20px;
    padding-top: 16px;
    margin-bottom: 20px;
  }

  .credit__item-num {
    font-size: 40px;
    line-height: 30px;
    padding-right: 10px;
  }

  .credit__item-title {
    font-size: 18px;
  }

  .credit__item-text {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .credit__item-bottom__item {
    padding: 10px;
    -webkit-box-flex: 140px;
    -ms-flex: 140px;
    flex: 140px;
  }

  .credit__item-bottom__title {
    font-size: 16px;
  }

  .credit__item-bottom__subtitle {
    font-size: 30px;
    line-height: 34px;
  }

  .credit__item-bottom__subtitle span {
    font-size: 14px;
    line-height: 34px;
  }
}

@media (max-width: 61.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 61.99875em) and (max-width: 20em) {
  .header__logo {
    gap: 0.1875rem;
  }

  .header__logo-text {
    font-size: 0.375rem;
  }

  .header__logo-text strong {
    font-size: 0.5rem;
  }

  .header__phone {
    font-size: 0.75rem;
  }
}

@media (max-width: 61.99875em) and (max-width: 30em) {
  .nopage__wrap {
    margin-top: 4.8125rem;
  }
}

@media (max-width: 47.99875em) {
  .form__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form__title {
    text-align: center;
  }

  .form__subtitle {
    font-size: 11px;
    text-align: center;
    max-width: 300px;
    margin: auto;
    margin-bottom: 40px;
  }

  .form__btn {
    padding: 14px;
    max-width: 170px;
    font-size: 12px !important;
  }

  .input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
    font-size: 13px;
  }

  .input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
    font-size: 13px;
  }

  .input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
    font-size: 13px;
  }

  .input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
    font-size: 13px;
  }

  .input[placeholder]:not([data-placeholder-nohiden])::placeholder {
    font-size: 13px;
  }

  .spollers__item {
    font-size: 1.125rem;
  }

  .spollers__title {
    padding: 1.25rem 1.875rem;
    padding-right: 50px;
  }

  ._spoller-init .spollers__title::before,
  ._spoller-init .spollers__title::after {
    right: 20px;
  }

  .spollers__body {
    font-size: 18px;
  }

  .hero__wrap {
    max-width: 420px;
  }

  .section-title {
    text-align: center;
  }

  .subscription {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 14px;
  }

  .subscription__img {
    max-width: 78px;
  }

  .subscription__title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .subscription__text {
    font-size: 9px;
  }

  .breadcrumbs {
    padding-top: 20px;
  }

  .header__spollers-title::after {
    translate: 3px;
  }

  .header__spollers-title._spoller-active::after {
    translate: 3px;
  }

  .footer__wrap {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .footer__logo img {
    max-width: 67px;
  }

  .footer__logo span {
    margin-bottom: 4px;
  }

  .footer__menu--desctop {
    display: none;
  }

  .footer__menu--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }

  .footer__list {
    font-size: 16px;
  }

  .footer__list ul li:last-child {
    margin-top: 0;
    margin-left: 0;
    list-style: none;
  }

  .footer__socials img {
    width: 62px;
    height: 27px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .service__grid-mobile {
    -ms-grid-columns: 210px 210px;
    grid-template-columns: 210px 210px;
  }

  .service__item:nth-child(odd) {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .service__item:nth-child(odd) .service__item-info {
    height: 214px;
    padding-top: 35px;
    padding-bottom: 10px;
  }

  .service__item:nth-child(1) {
    max-height: 240px;
  }

  .service__item-info {
    padding-bottom: 30px;
  }

  .service__item-title {
    font-size: 14px;
    margin-bottom: 26px;
  }

  .service__item-subtitle {
    font-size: 10px;
  }

  .portfolio__wrap {
    display: -ms-grid;
    display: grid;
    gap: 15px 15px;
    grid-template-columns: repeat(auto-fit, minmax(147px, 1fr));
  }

  .portfolio__btn {
    padding: 12px;
    max-width: 170px;
  }

  .review__company {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .review__company-img {
    max-width: 60px;
  }

  .review__company-star {
    margin-bottom: 3px;
  }

  .review__company-star img {
    max-width: 8px;
  }

  .review__item-info {
    gap: 14px;
  }

  .review__item-qw {
    max-width: 38px;
  }

  .review__item-name {
    margin-bottom: 3px;
  }

  .review__item-star img {
    max-width: 8px;
  }

  .review__item-company {
    max-width: 60px;
  }

  .review__btn {
    padding: 12px;
    max-width: 170px;
  }

  .smallOrder__btn {
    width: 170px;
    padding: 12px;
  }

  .smallOrder .input {
    width: 270px;
    height: 43px;
    padding-left: 15px;
    font-size: 13px;
  }

  .smallOrder .input::-webkit-input-placeholder {
    font-size: 13px;
  }

  .smallOrder .input::-moz-placeholder {
    font-size: 13px;
  }

  .smallOrder .input:-ms-input-placeholder {
    font-size: 13px;
  }

  .smallOrder .input::-ms-input-placeholder {
    font-size: 13px;
  }

  .smallOrder .input::placeholder {
    font-size: 13px;
  }

  .faq {
    background-position: right;
  }

  .faq__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .faq__title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .miniSlider__wrap {
    display: block !important;
  }

  .miniSlider .swiper-pagination-bullets {
    bottom: 30px !important;
  }

  .miniSlider .swiper-pagination {
    text-align: center;
    margin-left: 0;
  }

  .team__item {
    gap: 20px;
  }

  .team__item img {
    max-width: 240px;
  }

  .contact__form::before {
    display: none;
  }

  .credit__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
  }

  .credit__item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-right: 0;
    margin-left: 0;
  }

  .credit__item:nth-child(2) .credit__item-info {
    margin-left: 0;
  }

  .credit__item-img {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .credit__item-info {
    margin-right: 0;
  }

  .credit__item-bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .credit__item-bottom__item {
    -webkit-box-flex: 90px;
    -ms-flex: 90px;
    flex: 90px;
  }

  .credit__item-bottom__title {
    font-size: 10px;
  }

  .clients::after {
    display: none;
  }

  .clients .clients__slide-pagination {
    text-align: center;
  }
}

@media (max-width: 29.99875em) {
  .menu__body {
    top: 53px;
  }

  .icon-menu {
    width: 44px;
    height: 40px;
    background: linear-gradient(357deg, #edd27e 0%, #d5ad54 13.4%, #aa7114 47.17%, #e6c56d 92.97%, #edd280 100%, #f6f4c9 100%);
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    right: 10px;
    width: 20px;
  }

  .icon-menu::before {
    top: 12px;
  }

  .icon-menu::after {
    bottom: 12px;
  }

  .hero {
    background-position: 76%;
  }

  .hero__wrap {
    max-width: 290px;
  }

  .header__overlay {
    height: 13px;
    top: -13px;
  }

  .header {
    top: 13px;
  }

  .header__wrap {
    height: 40px;
    gap: 5px;
  }

  .header__contact {
    padding-right: 55px;
  }

  .header__phone {
    margin-bottom: 3px;
  }

  .header__messanger span {
    font-size: 6px;
  }

  .header__spollers-title {
    border: 1px solid transparent;
    -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
    border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
    border-width: 1px;
    border-style: solid;
    border-image-slice: 1;
  }

  .header__spollers-title::before,
  .header__spollers-title::after {
    width: 4px !important;
    right: 10px !important;
  }

  .header__spollers-title span {
    font-size: 8px;
    padding-right: 28px;
    padding-left: 4px;
  }

  .header__spollers-img {
    width: 18px;
    height: 14px;
  }

  .header__spollers-img img {
    width: 8px;
  }

  .header__spollers-body__item span {
    font-size: 8px;
    padding-left: 6px;
  }

  .footer__address {
    max-width: 170px;
  }

  .service__grid-mobile {
    -ms-grid-columns: 140px 140px;
    grid-template-columns: 140px 140px;
    gap: 10px;
  }

  .service__item:nth-child(odd) .service__item-info {
    height: 143px;
  }

  .service__item-info {
    padding-left: 16px;
    padding-right: 10px;
    padding-top: 20px;
  }

  .nopage__wrap {
    margin-top: 42px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .nopage-col {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }

  .nopage__img {
    padding-top: 30px;
  }

  .nopage__text {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .nopage__btn {
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
  }

  .clients__wrapper {
    height: 230px !important;
  }
}

@media (max-width: 29.99875em) and (any-hover: hover) {
  .header__spollers-title:hover {
    border: 1px solid transparent;
    -o-border-image: linear-gradient(357deg, #edd27e 0%, #d5ad54 13.4%, #aa7114 47.17%, #e6c56d 92.97%, #edd280 100%, #f6f4c9 100%);
    border-image: linear-gradient(357deg, #edd27e 0%, #d5ad54 13.4%, #aa7114 47.17%, #e6c56d 92.97%, #edd280 100%, #f6f4c9 100%);
    border-width: 1px;
    border-style: solid;
    border-image-slice: 1;
  }
}

@media (min-width: 20em) and (max-width: 86.25em) {
  @supports (font-size: clamp(1.375rem, 1.1108490566rem + 1.320754717vw, 2.25rem)) {
    .form__title {
      font-size: clamp(1.375rem, 1.1108490566rem + 1.320754717vw, 2.25rem);
    }
  }

  @supports not (font-size: clamp(1.375rem, 1.1108490566rem + 1.320754717vw, 2.25rem)) {
    .form__title {
      font-size: calc(1.375rem + 0.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.125rem, 0.3325471698rem + 3.9622641509vw, 3.75rem)) {
    .form__title {
      margin-bottom: clamp(1.125rem, 0.3325471698rem + 3.9622641509vw, 3.75rem);
    }
  }

  @supports not (margin-bottom: clamp(1.125rem, 0.3325471698rem + 3.9622641509vw, 3.75rem)) {
    .form__title {
      margin-bottom: calc(1.125rem + 2.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.6875rem, 0.5931603774rem + 0.4716981132vw, 1rem)) {
    .form__subtitle {
      font-size: clamp(0.6875rem, 0.5931603774rem + 0.4716981132vw, 1rem);
    }
  }

  @supports not (font-size: clamp(0.6875rem, 0.5931603774rem + 0.4716981132vw, 1rem)) {
    .form__subtitle {
      font-size: calc(0.6875rem + 0.3125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-top: clamp(2.5rem, 1.9339622642rem + 2.8301886792vw, 4.375rem)) {
    .form__btn {
      margin-top: clamp(2.5rem, 1.9339622642rem + 2.8301886792vw, 4.375rem);
    }
  }

  @supports not (margin-top: clamp(2.5rem, 1.9339622642rem + 2.8301886792vw, 4.375rem)) {
    .form__btn {
      margin-top: calc(2.5rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.5625rem, 0.3360849057rem + 1.1320754717vw, 1.3125rem)) {
    .btn {
      font-size: clamp(0.5625rem, 0.3360849057rem + 1.1320754717vw, 1.3125rem);
    }
  }

  @supports not (font-size: clamp(0.5625rem, 0.3360849057rem + 1.1320754717vw, 1.3125rem)) {
    .btn {
      font-size: calc(0.5625rem + 0.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.6556603774rem + 0.4716981132vw, 1.0625rem)) {
    .btn--white {
      font-size: clamp(0.75rem, 0.6556603774rem + 0.4716981132vw, 1.0625rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.6556603774rem + 0.4716981132vw, 1.0625rem)) {
    .btn--white {
      font-size: calc(0.75rem + 0.3125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .popup__title {
      font-size: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .popup__title {
      font-size: calc(1.25rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem)) {
    .popup__title {
      margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem);
    }
  }

  @supports not (margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem)) {
    .popup__title {
      margin-bottom: calc(0.625rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1rem, 0.8490566038rem + 0.7547169811vw, 1.5rem)) {
    .popup__text {
      font-size: clamp(1rem, 0.8490566038rem + 0.7547169811vw, 1.5rem);
    }
  }

  @supports not (font-size: clamp(1rem, 0.8490566038rem + 0.7547169811vw, 1.5rem)) {
    .popup__text {
      font-size: calc(1rem + 0.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.125rem, 1.0495283019rem + 0.3773584906vw, 1.375rem)) {
    .spollers__title {
      font-size: clamp(1.125rem, 1.0495283019rem + 0.3773584906vw, 1.375rem);
    }
  }

  @supports not (font-size: clamp(1.125rem, 1.0495283019rem + 0.3773584906vw, 1.375rem)) {
    .spollers__title {
      font-size: calc(1.125rem + 0.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-left: clamp(1.25rem, 0.7783018868rem + 2.358490566vw, 2.8125rem)) {
    .spollers__body {
      padding-left: clamp(1.25rem, 0.7783018868rem + 2.358490566vw, 2.8125rem);
    }
  }

  @supports not (padding-left: clamp(1.25rem, 0.7783018868rem + 2.358490566vw, 2.8125rem)) {
    .spollers__body {
      padding-left: calc(1.25rem + 1.5625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-right: clamp(1.25rem, 1.0613207547rem + 0.9433962264vw, 1.875rem)) {
    .spollers__body {
      padding-right: clamp(1.25rem, 1.0613207547rem + 0.9433962264vw, 1.875rem);
    }
  }

  @supports not (padding-right: clamp(1.25rem, 1.0613207547rem + 0.9433962264vw, 1.875rem)) {
    .spollers__body {
      padding-right: calc(1.25rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(2.1875rem, 1.829009434rem + 1.7924528302vw, 3.375rem)) {
    .spollers__body {
      padding-top: clamp(2.1875rem, 1.829009434rem + 1.7924528302vw, 3.375rem);
    }
  }

  @supports not (padding-top: clamp(2.1875rem, 1.829009434rem + 1.7924528302vw, 3.375rem)) {
    .spollers__body {
      padding-top: calc(2.1875rem + 1.1875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(2.75rem, 2.6367924528rem + 0.5660377358vw, 3.125rem)) {
    .spollers__body {
      padding-bottom: clamp(2.75rem, 2.6367924528rem + 0.5660377358vw, 3.125rem);
    }
  }

  @supports not (padding-bottom: clamp(2.75rem, 2.6367924528rem + 0.5660377358vw, 3.125rem)) {
    .spollers__body {
      padding-bottom: calc(2.75rem + 0.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(6.25rem, 3.7971698113rem + 12.2641509434vw, 14.375rem)) {
    .hero {
      padding-top: clamp(6.25rem, 3.7971698113rem + 12.2641509434vw, 14.375rem);
    }
  }

  @supports not (padding-top: clamp(6.25rem, 3.7971698113rem + 12.2641509434vw, 14.375rem)) {
    .hero {
      padding-top: calc(6.25rem + 8.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(3.375rem, 1.9410377358rem + 7.1698113208vw, 8.125rem)) {
    .hero--home {
      padding-bottom: clamp(3.375rem, 1.9410377358rem + 7.1698113208vw, 8.125rem);
    }
  }

  @supports not (padding-bottom: clamp(3.375rem, 1.9410377358rem + 7.1698113208vw, 8.125rem)) {
    .hero--home {
      padding-bottom: calc(3.375rem + 4.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(1.8125rem, 1.0766509434rem + 3.679245283vw, 4.25rem)) {
    .hero__wrap {
      padding-top: clamp(1.8125rem, 1.0766509434rem + 3.679245283vw, 4.25rem);
    }
  }

  @supports not (padding-top: clamp(1.8125rem, 1.0766509434rem + 3.679245283vw, 4.25rem)) {
    .hero__wrap {
      padding-top: calc(1.8125rem + 2.4375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(1.25rem, 0.7783018868rem + 2.358490566vw, 2.8125rem)) {
    .hero__wrap {
      padding-bottom: clamp(1.25rem, 0.7783018868rem + 2.358490566vw, 2.8125rem);
    }
  }

  @supports not (padding-bottom: clamp(1.25rem, 0.7783018868rem + 2.358490566vw, 2.8125rem)) {
    .hero__wrap {
      padding-bottom: calc(1.25rem + 1.5625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-left: clamp(1.4375rem, 0.8337264151rem + 3.0188679245vw, 3.4375rem)) {
    .hero__wrap {
      padding-left: clamp(1.4375rem, 0.8337264151rem + 3.0188679245vw, 3.4375rem);
    }
  }

  @supports not (padding-left: clamp(1.4375rem, 0.8337264151rem + 3.0188679245vw, 3.4375rem)) {
    .hero__wrap {
      padding-left: calc(1.4375rem + 2 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-right: clamp(1.4375rem, 0.8337264151rem + 3.0188679245vw, 3.4375rem)) {
    .hero__wrap {
      padding-right: clamp(1.4375rem, 0.8337264151rem + 3.0188679245vw, 3.4375rem);
    }
  }

  @supports not (padding-right: clamp(1.4375rem, 0.8337264151rem + 3.0188679245vw, 3.4375rem)) {
    .hero__wrap {
      padding-right: calc(1.4375rem + 2 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-left: clamp(-3.4375rem, 0.6308962264rem + -4.7169811321vw, -0.3125rem)) {
    .hero__wrap {
      margin-left: clamp(-3.4375rem, 0.6308962264rem + -4.7169811321vw, -0.3125rem);
    }
  }

  @supports not (margin-left: clamp(-3.4375rem, 0.6308962264rem + -4.7169811321vw, -0.3125rem)) {
    .hero__wrap {
      margin-left: calc(-0.3125rem + -3.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.875rem, 0.5731132075rem + 1.5094339623vw, 1.875rem)) {
    .hero__subtitle {
      font-size: clamp(0.875rem, 0.5731132075rem + 1.5094339623vw, 1.875rem);
    }
  }

  @supports not (font-size: clamp(0.875rem, 0.5731132075rem + 1.5094339623vw, 1.875rem)) {
    .hero__subtitle {
      font-size: calc(0.875rem + 1 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(0.625rem, 0.3985849057rem + 1.1320754717vw, 1.375rem)) {
    .hero__subtitle {
      margin-bottom: clamp(0.625rem, 0.3985849057rem + 1.1320754717vw, 1.375rem);
    }
  }

  @supports not (margin-bottom: clamp(0.625rem, 0.3985849057rem + 1.1320754717vw, 1.375rem)) {
    .hero__subtitle {
      margin-bottom: calc(0.625rem + 0.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.375rem, 0.9976415094rem + 1.8867924528vw, 2.625rem)) {
    .hero__title {
      font-size: clamp(1.375rem, 0.9976415094rem + 1.8867924528vw, 2.625rem);
    }
  }

  @supports not (font-size: clamp(1.375rem, 0.9976415094rem + 1.8867924528vw, 2.625rem)) {
    .hero__title {
      font-size: calc(1.375rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(0.625rem, 0.3985849057rem + 1.1320754717vw, 1.375rem)) {
    .hero__title {
      margin-bottom: clamp(0.625rem, 0.3985849057rem + 1.1320754717vw, 1.375rem);
    }
  }

  @supports not (margin-bottom: clamp(0.625rem, 0.3985849057rem + 1.1320754717vw, 1.375rem)) {
    .hero__title {
      margin-bottom: calc(0.625rem + 0.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem)) {
    .hero__text {
      font-size: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem);
    }
  }

  @supports not (font-size: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem)) {
    .hero__text {
      font-size: calc(0.625rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(2.25rem, 1.7971698113rem + 2.2641509434vw, 3.75rem)) {
    .hero__text {
      margin-bottom: clamp(2.25rem, 1.7971698113rem + 2.2641509434vw, 3.75rem);
    }
  }

  @supports not (margin-bottom: clamp(2.25rem, 1.7971698113rem + 2.2641509434vw, 3.75rem)) {
    .hero__text {
      margin-bottom: calc(2.25rem + 1.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding: clamp(0.625rem, 0.3608490566rem + 1.320754717vw, 1.5rem)) {
    .hero__btn {
      padding: clamp(0.625rem, 0.3608490566rem + 1.320754717vw, 1.5rem);
    }
  }

  @supports not (padding: clamp(0.625rem, 0.3608490566rem + 1.320754717vw, 1.5rem)) {
    .hero__btn {
      padding: calc(0.625rem + 0.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (max-width: clamp(11.5rem, 6.7452830189rem + 23.7735849057vw, 27.25rem)) {
    .hero__btn {
      max-width: clamp(11.5rem, 6.7452830189rem + 23.7735849057vw, 27.25rem);
    }
  }

  @supports not (max-width: clamp(11.5rem, 6.7452830189rem + 23.7735849057vw, 27.25rem)) {
    .hero__btn {
      max-width: calc(11.5rem + 15.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.875rem, 1.2146226415rem + 3.3018867925vw, 4.0625rem)) {
    .section-title {
      margin-bottom: clamp(1.875rem, 1.2146226415rem + 3.3018867925vw, 4.0625rem);
    }
  }

  @supports not (margin-bottom: clamp(1.875rem, 1.2146226415rem + 3.3018867925vw, 4.0625rem)) {
    .section-title {
      margin-bottom: calc(1.875rem + 2.1875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .section-title {
      font-size: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .section-title {
      font-size: calc(1.25rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.625rem, 1.3608490566rem + 1.320754717vw, 2.5rem)) {
    .subscription {
      margin-bottom: clamp(1.625rem, 1.3608490566rem + 1.320754717vw, 2.5rem);
    }
  }

  @supports not (margin-bottom: clamp(1.625rem, 1.3608490566rem + 1.320754717vw, 2.5rem)) {
    .subscription {
      margin-bottom: calc(1.625rem + 0.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.6875rem, 0.5176886792rem + 0.8490566038vw, 1.25rem)) {
    .content blockquote {
      font-size: clamp(0.6875rem, 0.5176886792rem + 0.8490566038vw, 1.25rem);
    }
  }

  @supports not (font-size: clamp(0.6875rem, 0.5176886792rem + 0.8490566038vw, 1.25rem)) {
    .content blockquote {
      font-size: calc(0.6875rem + 0.5625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.875rem, 0.9316037736rem + 4.7169811321vw, 5rem)) {
    .content blockquote {
      margin-bottom: clamp(1.875rem, 0.9316037736rem + 4.7169811321vw, 5rem);
    }
  }

  @supports not (margin-bottom: clamp(1.875rem, 0.9316037736rem + 4.7169811321vw, 5rem)) {
    .content blockquote {
      margin-bottom: calc(1.875rem + 3.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.875rem, 1.3089622642rem + 2.8301886792vw, 3.75rem)) {
    .title {
      font-size: clamp(1.875rem, 1.3089622642rem + 2.8301886792vw, 3.75rem);
    }
  }

  @supports not (font-size: clamp(1.875rem, 1.3089622642rem + 2.8301886792vw, 3.75rem)) {
    .title {
      font-size: calc(1.875rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.875rem, 1.5919811321rem + 1.4150943396vw, 2.8125rem)) {
    .title {
      margin-bottom: clamp(1.875rem, 1.5919811321rem + 1.4150943396vw, 2.8125rem);
    }
  }

  @supports not (margin-bottom: clamp(1.875rem, 1.5919811321rem + 1.4150943396vw, 2.8125rem)) {
    .title {
      margin-bottom: calc(1.875rem + 0.9375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.5rem, 1.1981132075rem + 1.5094339623vw, 2.5rem)) {
    .title-page {
      font-size: clamp(1.5rem, 1.1981132075rem + 1.5094339623vw, 2.5rem);
    }
  }

  @supports not (font-size: clamp(1.5rem, 1.1981132075rem + 1.5094339623vw, 2.5rem)) {
    .title-page {
      font-size: calc(1.5rem + 1 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.875rem, 1.5919811321rem + 1.4150943396vw, 2.8125rem)) {
    .title-page {
      margin-bottom: clamp(1.875rem, 1.5919811321rem + 1.4150943396vw, 2.8125rem);
    }
  }

  @supports not (margin-bottom: clamp(1.875rem, 1.5919811321rem + 1.4150943396vw, 2.8125rem)) {
    .title-page {
      margin-bottom: calc(1.875rem + 0.9375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.875rem, 0.1768867925rem + 8.4905660377vw, 7.5rem)) {
    .pageSlider__item {
      margin-bottom: clamp(1.875rem, 0.1768867925rem + 8.4905660377vw, 7.5rem);
    }
  }

  @supports not (margin-bottom: clamp(1.875rem, 0.1768867925rem + 8.4905660377vw, 7.5rem)) {
    .pageSlider__item {
      margin-bottom: calc(1.875rem + 5.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.25rem, 0.9103773585rem + 1.6981132075vw, 2.375rem)) {
    .pageSlider__item-info__date {
      font-size: clamp(1.25rem, 0.9103773585rem + 1.6981132075vw, 2.375rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 0.9103773585rem + 1.6981132075vw, 2.375rem)) {
    .pageSlider__item-info__date {
      font-size: calc(1.25rem + 1.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.875rem, 0.6863207547rem + 0.9433962264vw, 1.5rem)) {
    .pageSlider__item-info__title {
      font-size: clamp(0.875rem, 0.6863207547rem + 0.9433962264vw, 1.5rem);
    }
  }

  @supports not (font-size: clamp(0.875rem, 0.6863207547rem + 0.9433962264vw, 1.5rem)) {
    .pageSlider__item-info__title {
      font-size: calc(0.875rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.6745283019rem + 0.3773584906vw, 1rem)) {
    .pageSlider__item-info__text {
      font-size: clamp(0.75rem, 0.6745283019rem + 0.3773584906vw, 1rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.6745283019rem + 0.3773584906vw, 1rem)) {
    .pageSlider__item-info__text {
      font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.25rem, 0.4952830189rem + 3.7735849057vw, 3.75rem)) {
    .pageSlider__item-info__text {
      margin-bottom: clamp(1.25rem, 0.4952830189rem + 3.7735849057vw, 3.75rem);
    }
  }

  @supports not (margin-bottom: clamp(1.25rem, 0.4952830189rem + 3.7735849057vw, 3.75rem)) {
    .pageSlider__item-info__text {
      margin-bottom: calc(1.25rem + 2.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .footer__logo img {
      margin-bottom: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem);
    }
  }

  @supports not (margin-bottom: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .footer__logo img {
      margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.6875rem, 0.5176886792rem + 0.8490566038vw, 1.25rem)) {
    .footer__logo {
      font-size: clamp(0.6875rem, 0.5176886792rem + 0.8490566038vw, 1.25rem);
    }
  }

  @supports not (font-size: clamp(0.6875rem, 0.5176886792rem + 0.8490566038vw, 1.25rem)) {
    .footer__logo {
      font-size: calc(0.6875rem + 0.5625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.5rem, 0.3679245283rem + 0.6603773585vw, 0.9375rem)) {
    .footer__logo span {
      font-size: clamp(0.5rem, 0.3679245283rem + 0.6603773585vw, 0.9375rem);
    }
  }

  @supports not (font-size: clamp(0.5rem, 0.3679245283rem + 0.6603773585vw, 0.9375rem)) {
    .footer__logo span {
      font-size: calc(0.5rem + 0.4375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(0.625rem, -0.8844339623rem + 7.5471698113vw, 5.625rem)) {
    .footer__menu {
      gap: clamp(0.625rem, -0.8844339623rem + 3.5471698113vw, 5.625rem);
    }
  }

  @supports not (gap: clamp(0.625rem, -0.8844339623rem + 7.5471698113vw, 5.625rem)) {
    .footer__menu {
      gap: calc(0.625rem + 5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .footer__address {
      font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .footer__address {
      font-size: calc(0.75rem + 0.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-top: clamp(1.125rem, 0.8608490566rem + 1.320754717vw, 2rem)) {
    .footer__address {
      margin-top: clamp(1.125rem, 0.8608490566rem + 1.320754717vw, 2rem);
    }
  }

  @supports not (margin-top: clamp(1.125rem, 0.8608490566rem + 1.320754717vw, 2rem)) {
    .footer__address {
      margin-top: calc(1.125rem + 0.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.25rem, 0.7971698113rem + 2.2641509434vw, 2.75rem)) {
    .footer__address {
      margin-bottom: clamp(1.25rem, 0.7971698113rem + 2.2641509434vw, 2.75rem);
    }
  }

  @supports not (margin-bottom: clamp(1.25rem, 0.7971698113rem + 2.2641509434vw, 2.75rem)) {
    .footer__address {
      margin-bottom: calc(1.25rem + 1.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(2.875rem, 1.7429245283rem + 5.6603773585vw, 6.625rem)) {
    .service {
      padding-top: clamp(2.875rem, 1.7429245283rem + 5.6603773585vw, 6.625rem);
    }
  }

  @supports not (padding-top: clamp(2.875rem, 1.7429245283rem + 5.6603773585vw, 6.625rem)) {
    .service {
      padding-top: calc(2.875rem + 3.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(4.1875rem, 3.3573113208rem + 4.1509433962vw, 6.9375rem)) {
    .service {
      padding-bottom: clamp(4.1875rem, 3.3573113208rem + 4.1509433962vw, 6.9375rem);
    }
  }

  @supports not (padding-bottom: clamp(4.1875rem, 3.3573113208rem + 4.1509433962vw, 6.9375rem)) {
    .service {
      padding-bottom: calc(4.1875rem + 2.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(3.125rem, 1.2382075472rem + 9.4339622642vw, 9.375rem)) {
    .portfolio {
      padding-top: clamp(3.125rem, 1.2382075472rem + 9.4339622642vw, 9.375rem);
    }
  }

  @supports not (padding-top: clamp(3.125rem, 1.2382075472rem + 9.4339622642vw, 9.375rem)) {
    .portfolio {
      padding-top: calc(3.125rem + 6.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(3.75rem, 3.3726415094rem + 1.8867924528vw, 5rem)) {
    .portfolio {
      padding-bottom: clamp(3.75rem, 3.3726415094rem + 1.8867924528vw, 5rem);
    }
  }

  @supports not (padding-bottom: clamp(3.75rem, 3.3726415094rem + 1.8867924528vw, 5rem)) {
    .portfolio {
      padding-bottom: calc(3.75rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-top: clamp(1.875rem, 0.9316037736rem + 4.7169811321vw, 5rem)) {
    .portfolio__btn {
      margin-top: clamp(1.875rem, 0.9316037736rem + 4.7169811321vw, 5rem);
    }
  }

  @supports not (margin-top: clamp(1.875rem, 0.9316037736rem + 4.7169811321vw, 5rem)) {
    .portfolio__btn {
      margin-top: calc(1.875rem + 3.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(3.5625rem, 1.9964622642rem + 7.8301886792vw, 8.75rem)) {
    .review {
      padding-top: clamp(3.5625rem, 1.9964622642rem + 7.8301886792vw, 8.75rem);
    }
  }

  @supports not (padding-top: clamp(3.5625rem, 1.9964622642rem + 7.8301886792vw, 8.75rem)) {
    .review {
      padding-top: calc(3.5625rem + 5.1875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(3.125rem, 1.804245283rem + 6.6037735849vw, 7.5rem)) {
    .review {
      padding-bottom: clamp(3.125rem, 1.804245283rem + 6.6037735849vw, 7.5rem);
    }
  }

  @supports not (padding-bottom: clamp(3.125rem, 1.804245283rem + 6.6037735849vw, 7.5rem)) {
    .review {
      padding-bottom: calc(3.125rem + 4.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(0.75rem, 0.3349056604rem + 2.0754716981vw, 2.125rem)) {
    .review__company {
      margin-bottom: clamp(0.75rem, 0.3349056604rem + 2.0754716981vw, 2.125rem);
    }
  }

  @supports not (margin-bottom: clamp(0.75rem, 0.3349056604rem + 2.0754716981vw, 2.125rem)) {
    .review__company {
      margin-bottom: calc(0.75rem + 1.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .review__company {
      gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem);
    }
  }

  @supports not (gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .review__company {
      gap: calc(1.25rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .review__company-item {
      gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem);
    }
  }

  @supports not (gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .review__company-item {
      gap: calc(1.25rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.375rem, 0.2240566038rem + 0.7547169811vw, 0.875rem)) {
    .review__company-info {
      font-size: clamp(0.375rem, 0.2240566038rem + 0.7547169811vw, 0.875rem);
    }
  }

  @supports not (font-size: clamp(0.375rem, 0.2240566038rem + 0.7547169811vw, 0.875rem)) {
    .review__company-info {
      font-size: calc(0.375rem + 0.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .review__item {
      padding-top: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem);
    }
  }

  @supports not (padding-top: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .review__item {
      padding-top: calc(1.25rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-left: clamp(1.25rem, 0.3632075472rem + 4.4339622642vw, 4.1875rem)) {
    .review__item {
      padding-left: clamp(1.25rem, 0.3632075472rem + 4.4339622642vw, 4.1875rem);
    }
  }

  @supports not (padding-left: clamp(1.25rem, 0.3632075472rem + 4.4339622642vw, 4.1875rem)) {
    .review__item {
      padding-left: calc(1.25rem + 2.9375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-right: clamp(1.25rem, 0.570754717rem + 3.3962264151vw, 3.5rem)) {
    .review__item {
      padding-right: clamp(1.25rem, 0.570754717rem + 3.3962264151vw, 3.5rem);
    }
  }

  @supports not (padding-right: clamp(1.25rem, 0.570754717rem + 3.3962264151vw, 3.5rem)) {
    .review__item {
      padding-right: calc(1.25rem + 2.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(1.25rem, 1.0613207547rem + 0.9433962264vw, 1.875rem)) {
    .review__item {
      padding-bottom: clamp(1.25rem, 1.0613207547rem + 0.9433962264vw, 1.875rem);
    }
  }

  @supports not (padding-bottom: clamp(1.25rem, 1.0613207547rem + 0.9433962264vw, 1.875rem)) {
    .review__item {
      padding-bottom: calc(1.25rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .review__item-text {
      font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .review__item-text {
      font-size: calc(0.75rem + 0.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.5625rem, 0.3360849057rem + 1.1320754717vw, 1.3125rem)) {
    .review__item-name {
      font-size: clamp(0.5625rem, 0.3360849057rem + 1.1320754717vw, 1.3125rem);
    }
  }

  @supports not (font-size: clamp(0.5625rem, 0.3360849057rem + 1.1320754717vw, 1.3125rem)) {
    .review__item-name {
      font-size: calc(0.5625rem + 0.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(3.75rem, 3.5613207547rem + 0.9433962264vw, 4.375rem)) {
    .smallOrder__wrap {
      padding-top: clamp(3.75rem, 3.5613207547rem + 0.9433962264vw, 4.375rem);
    }
  }

  @supports not (padding-top: clamp(3.75rem, 3.5613207547rem + 0.9433962264vw, 4.375rem)) {
    .smallOrder__wrap {
      padding-top: calc(3.75rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(3.75rem, 3.429245283rem + 1.6037735849vw, 4.8125rem)) {
    .smallOrder__wrap {
      padding-bottom: clamp(3.75rem, 3.429245283rem + 1.6037735849vw, 4.8125rem);
    }
  }

  @supports not (padding-bottom: clamp(3.75rem, 3.429245283rem + 1.6037735849vw, 4.8125rem)) {
    .smallOrder__wrap {
      padding-bottom: calc(3.75rem + 1.0625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .smallOrder__wrap {
      gap: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem);
    }
  }

  @supports not (gap: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem)) {
    .smallOrder__wrap {
      gap: calc(1.25rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.25rem, 0.9481132075rem + 1.5094339623vw, 2.25rem)) {
    .smallOrder__title {
      font-size: clamp(1.25rem, 0.9481132075rem + 1.5094339623vw, 2.25rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 0.9481132075rem + 1.5094339623vw, 2.25rem)) {
    .smallOrder__title {
      font-size: calc(1.25rem + 1 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.125rem, 0.9363207547rem + 0.9433962264vw, 1.75rem)) {
    .smallOrder__title {
      margin-bottom: clamp(1.125rem, 0.9363207547rem + 0.9433962264vw, 1.75rem);
    }
  }

  @supports not (margin-bottom: clamp(1.125rem, 0.9363207547rem + 0.9433962264vw, 1.75rem)) {
    .smallOrder__title {
      margin-bottom: calc(1.125rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.625rem, 0.5117924528rem + 0.5660377358vw, 1rem)) {
    .smallOrder__text {
      font-size: clamp(0.625rem, 0.5117924528rem + 0.5660377358vw, 1rem);
    }
  }

  @supports not (font-size: clamp(0.625rem, 0.5117924528rem + 0.5660377358vw, 1rem)) {
    .smallOrder__text {
      font-size: calc(0.625rem + 0.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(1.25rem, -1.0141509434rem + 11.320754717vw, 8.75rem)) {
    .faq {
      padding-top: clamp(1.25rem, -1.0141509434rem + 11.320754717vw, 8.75rem);
    }
  }

  @supports not (padding-top: clamp(1.25rem, -1.0141509434rem + 11.320754717vw, 8.75rem)) {
    .faq {
      padding-top: calc(1.25rem + 7.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(2.5rem, 0.5rem + 10vw, 9.125rem)) {
    .faq {
      padding-bottom: clamp(2.5rem, 0.5rem + 10vw, 9.125rem);
    }
  }

  @supports not (padding-bottom: clamp(2.5rem, 0.5rem + 10vw, 9.125rem)) {
    .faq {
      padding-bottom: calc(2.5rem + 6.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(1rem, -0.3962264151rem + 6.9811320755vw, 5.625rem)) {
    .faq__wrap {
      gap: clamp(1rem, -0.3962264151rem + 2.9811320755vw, 5.625rem);
    }
  }

  @supports not (gap: clamp(1rem, -0.3962264151rem + 6.9811320755vw, 5.625rem)) {
    .faq__wrap {
      gap: calc(1rem + 4.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.25rem, 1.0613207547rem + 0.9433962264vw, 1.875rem)) {
    .faq__title {
      font-size: clamp(1.25rem, 1.0613207547rem + 0.9433962264vw, 1.875rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 1.0613207547rem + 0.9433962264vw, 1.875rem)) {
    .faq__title {
      font-size: calc(1.25rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-left: clamp(1.875rem, 1.6863207547rem + 0.9433962264vw, 2.5rem)) {
    .faq__title {
      padding-left: clamp(1.875rem, 1.6863207547rem + 6.9433962264vw, 7.5rem);
    }
  }

  @supports not (padding-left: clamp(1.875rem, 1.6863207547rem + 0.9433962264vw, 2.5rem)) {
    .faq__title {
      padding-left: calc(1.875rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-right: clamp(1.875rem, 1.6863207547rem + 0.9433962264vw, 2.5rem)) {
    .faq__title {
      padding-right: clamp(1.875rem, 1.6863207547rem + 0.9433962264vw, 2.5rem);
    }
  }

  @supports not (padding-right: clamp(1.875rem, 1.6863207547rem + 0.9433962264vw, 2.5rem)) {
    .faq__title {
      padding-right: calc(1.875rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .faq__title {
      gap: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem);
    }
  }

  @supports not (gap: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .faq__title {
      gap: calc(1.875rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.875rem, 1.6863207547rem + 0.9433962264vw, 2.5rem)) {
    .faq__title span {
      font-size: clamp(1.875rem, 1.6863207547rem + 0.9433962264vw, 2.5rem);
    }
  }

  @supports not (font-size: clamp(1.875rem, 1.6863207547rem + 0.9433962264vw, 2.5rem)) {
    .faq__title span {
      font-size: calc(1.875rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .content {
      padding-top: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem);
    }
  }

  @supports not (padding-top: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .content {
      padding-top: calc(1.875rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(0.0000000625rem, -2.6415093526rem + 13.2075470755vw, 8.75rem)) {
    .content {
      padding-bottom: clamp(0.0000000625rem, -2.6415093526rem + 13.2075470755vw, 8.75rem);
    }
  }

  @supports not (padding-bottom: clamp(0.0000000625rem, -2.6415093526rem + 13.2075470755vw, 8.75rem)) {
    .content {
      padding-bottom: calc(0.0000000625rem + 8.7499999375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(4.375rem, 2.6768867925rem + 8.4905660377vw, 10rem)) {
    .content-home {
      padding-top: clamp(4.375rem, 2.6768867925rem + 8.4905660377vw, 10rem);
    }
  }

  @supports not (padding-top: clamp(4.375rem, 2.6768867925rem + 8.4905660377vw, 10rem)) {
    .content-home {
      padding-top: calc(4.375rem + 5.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .content__row {
      gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem);
    }
  }

  @supports not (gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .content__row {
      gap: calc(1.25rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.4103773585rem + 1.6981132075vw, 1.875rem)) {
    .content .subtitle {
      font-size: clamp(0.75rem, 0.4103773585rem + 1.6981132075vw, 1.875rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.4103773585rem + 1.6981132075vw, 1.875rem)) {
    .content .subtitle {
      font-size: calc(0.75rem + 1.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.875rem, 1.3089622642rem + 2.8301886792vw, 3.75rem)) {
    .content .title {
      font-size: clamp(1.875rem, 1.3089622642rem + 2.8301886792vw, 3.75rem);
    }
  }

  @supports not (font-size: clamp(1.875rem, 1.3089622642rem + 2.8301886792vw, 3.75rem)) {
    .content .title {
      font-size: calc(1.875rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(2.3125rem, 1.9351415094rem + 1.8867924528vw, 3.5625rem)) {
    .content .title {
      margin-bottom: clamp(2.3125rem, 1.9351415094rem + 1.8867924528vw, 3.5625rem);
    }
  }

  @supports not (margin-bottom: clamp(2.3125rem, 1.9351415094rem + 1.8867924528vw, 3.5625rem)) {
    .content .title {
      margin-bottom: calc(2.3125rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.5rem, 1.1981132075rem + 1.5094339623vw, 2.5rem)) {
    .content .title-page {
      font-size: clamp(1.5rem, 1.1981132075rem + 1.5094339623vw, 2.5rem);
    }
  }

  @supports not (font-size: clamp(1.5rem, 1.1981132075rem + 1.5094339623vw, 2.5rem)) {
    .content .title-page {
      font-size: calc(1.5rem + 1 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.875rem, 1.5919811321rem + 1.4150943396vw, 2.8125rem)) {
    .content .title-page {
      margin-bottom: clamp(1.875rem, 1.5919811321rem + 1.4150943396vw, 2.8125rem);
    }
  }

  @supports not (margin-bottom: clamp(1.875rem, 1.5919811321rem + 1.4150943396vw, 2.8125rem)) {
    .content .title-page {
      margin-bottom: calc(1.875rem + 0.9375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem)) {
    .content p {
      margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem);
    }
  }

  @supports not (margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem)) {
    .content p {
      margin-bottom: calc(0.625rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .content p {
      font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .content p {
      font-size: calc(0.75rem + 0.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem)) {
    .content ul {
      margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem);
    }
  }

  @supports not (margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem)) {
    .content ul {
      margin-bottom: calc(0.625rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .content ul {
      font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .content ul {
      font-size: calc(0.75rem + 0.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem)) {
    .content ol {
      margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem);
    }
  }

  @supports not (margin-bottom: clamp(0.625rem, 0.2476415094rem + 1.8867924528vw, 1.875rem)) {
    .content ol {
      margin-bottom: calc(0.625rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .content ol {
      font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.6367924528rem + 0.5660377358vw, 1.125rem)) {
    .content ol {
      font-size: calc(0.75rem + 0.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(0.0000000625rem, -1.8867923715rem + 9.4339621698vw, 6.25rem)) {
    .order {
      padding-top: clamp(0.0000000625rem, -1.8867923715rem + 9.4339621698vw, 6.25rem);
    }
  }

  @supports not (padding-top: clamp(0.0000000625rem, -1.8867923715rem + 9.4339621698vw, 6.25rem)) {
    .order {
      padding-top: calc(0.0000000625rem + 6.2499999375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(0.0000000625rem, -1.8867923715rem + 9.4339621698vw, 6.25rem)) {
    .order {
      padding-bottom: clamp(0.0000000625rem, -1.8867923715rem + 9.4339621698vw, 6.25rem);
    }
  }

  @supports not (padding-bottom: clamp(0.0000000625rem, -1.8867923715rem + 9.4339621698vw, 6.25rem)) {
    .order {
      padding-bottom: calc(0.0000000625rem + 6.2499999375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(4.375rem, 3.8089622642rem + 2.8301886792vw, 6.25rem)) {
    .order__wrap {
      padding-top: clamp(4.375rem, 3.8089622642rem + 2.8301886792vw, 6.25rem);
    }
  }

  @supports not (padding-top: clamp(4.375rem, 3.8089622642rem + 2.8301886792vw, 6.25rem)) {
    .order__wrap {
      padding-top: calc(4.375rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(4.375rem, 3.8089622642rem + 2.8301886792vw, 6.25rem)) {
    .order__wrap {
      padding-bottom: clamp(4.375rem, 3.8089622642rem + 2.8301886792vw, 6.25rem);
    }
  }

  @supports not (padding-bottom: clamp(4.375rem, 3.8089622642rem + 2.8301886792vw, 6.25rem)) {
    .order__wrap {
      padding-bottom: calc(4.375rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-left: clamp(1.5625rem, 0.1474056604rem + 7.0754716981vw, 6.25rem)) {
    .order__wrap {
      padding-left: clamp(1.5625rem, 0.1474056604rem + 7.0754716981vw, 6.25rem);
    }
  }

  @supports not (padding-left: clamp(1.5625rem, 0.1474056604rem + 7.0754716981vw, 6.25rem)) {
    .order__wrap {
      padding-left: calc(1.5625rem + 4.6875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-right: clamp(1.5625rem, 0.1474056604rem + 7.0754716981vw, 6.25rem)) {
    .order__wrap {
      padding-right: clamp(1.5625rem, 0.1474056604rem + 7.0754716981vw, 6.25rem);
    }
  }

  @supports not (padding-right: clamp(1.5625rem, 0.1474056604rem + 7.0754716981vw, 6.25rem)) {
    .order__wrap {
      padding-right: calc(1.5625rem + 4.6875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(3.125rem, 2.1816037736rem + 4.7169811321vw, 6.25rem)) {
    .miniSlider__wrap {
      padding-top: clamp(3.125rem, 2.1816037736rem + 4.7169811321vw, 6.25rem);
    }
  }

  @supports not (padding-top: clamp(3.125rem, 2.1816037736rem + 4.7169811321vw, 6.25rem)) {
    .miniSlider__wrap {
      padding-top: calc(3.125rem + 3.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(5rem, 4.6226415094rem + 1.8867924528vw, 6.25rem)) {
    .miniSlider__wrap {
      padding-bottom: clamp(5rem, 4.6226415094rem + 1.8867924528vw, 6.25rem);
    }
  }

  @supports not (padding-bottom: clamp(5rem, 4.6226415094rem + 1.8867924528vw, 6.25rem)) {
    .miniSlider__wrap {
      padding-bottom: calc(5rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(1.25rem, 0.9669811321rem + 1.4150943396vw, 2.1875rem)) {
    .miniSlider__wrap {
      gap: clamp(1.25rem, 0.9669811321rem + 1.4150943396vw, 2.1875rem);
    }
  }

  @supports not (gap: clamp(1.25rem, 0.9669811321rem + 1.4150943396vw, 2.1875rem)) {
    .miniSlider__wrap {
      gap: calc(1.25rem + 0.9375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.5rem, 1.1603773585rem + 1.6981132075vw, 2.625rem)) {
    .miniSlider__info-title {
      font-size: clamp(1.5rem, 1.1603773585rem + 1.6981132075vw, 2.625rem);
    }
  }

  @supports not (font-size: clamp(1.5rem, 1.1603773585rem + 1.6981132075vw, 2.625rem)) {
    .miniSlider__info-title {
      font-size: calc(1.5rem + 1.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem)) {
    .miniSlider__info-title {
      margin-bottom: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem);
    }
  }

  @supports not (margin-bottom: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem)) {
    .miniSlider__info-title {
      margin-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(0.0000000625rem, -1.3962263337rem + 6.9811319811vw, 4.625rem)) {
    .miniSlider__info-title {
      padding-top: clamp(0.0000000625rem, -1.3962263337rem + 6.9811319811vw, 4.625rem);
    }
  }

  @supports not (padding-top: clamp(0.0000000625rem, -1.3962263337rem + 6.9811319811vw, 4.625rem)) {
    .miniSlider__info-title {
      padding-top: calc(0.0000000625rem + 4.6249999375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.6745283019rem + 0.3773584906vw, 1rem)) {
    .miniSlider__info-text {
      font-size: clamp(0.75rem, 0.6745283019rem + 0.3773584906vw, 1rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.6745283019rem + 0.3773584906vw, 1rem)) {
    .miniSlider__info-text {
      font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.25rem, -0.6367924528rem + 9.4339622642vw, 7.5rem)) {
    .miniSlider__info-text {
      margin-bottom: clamp(1.25rem, -0.6367924528rem + 9.4339622642vw, 7.5rem);
    }
  }

  @supports not (margin-bottom: clamp(1.25rem, -0.6367924528rem + 9.4339622642vw, 7.5rem)) {
    .miniSlider__info-text {
      margin-bottom: calc(1.25rem + 6.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(3.75rem, 2.5235849057rem + 6.1320754717vw, 7.8125rem)) {
    .team {
      padding-top: clamp(3.75rem, 2.5235849057rem + 6.1320754717vw, 7.8125rem);
    }
  }

  @supports not (padding-top: clamp(3.75rem, 2.5235849057rem + 6.1320754717vw, 7.8125rem)) {
    .team {
      padding-top: calc(3.75rem + 4.0625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .team {
      padding-bottom: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem);
    }
  }

  @supports not (padding-bottom: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .team {
      padding-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.5rem, 1.1981132075rem + 1.5094339623vw, 2.5rem)) {
    .team__title {
      font-size: clamp(1.5rem, 1.1981132075rem + 1.5094339623vw, 2.5rem);
    }
  }

  @supports not (font-size: clamp(1.5rem, 1.1981132075rem + 1.5094339623vw, 2.5rem)) {
    .team__title {
      font-size: calc(1.5rem + 1 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .team__item {
      padding-top: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem);
    }
  }

  @supports not (padding-top: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .team__item {
      padding-top: calc(1.875rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(1.875rem, 1.0070754717rem + 4.3396226415vw, 4.75rem)) {
    .team__item {
      padding-bottom: clamp(1.875rem, 1.0070754717rem + 4.3396226415vw, 4.75rem);
    }
  }

  @supports not (padding-bottom: clamp(1.875rem, 1.0070754717rem + 4.3396226415vw, 4.75rem)) {
    .team__item {
      padding-bottom: calc(1.875rem + 2.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-left: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem)) {
    .team__item {
      padding-left: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem);
    }
  }

  @supports not (padding-left: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem)) {
    .team__item {
      padding-left: calc(0.625rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-right: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem)) {
    .team__item {
      padding-right: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem);
    }
  }

  @supports not (padding-right: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem)) {
    .team__item {
      padding-right: calc(0.625rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.25rem, 0.5518867925rem + 3.4905660377vw, 3.5625rem)) {
    .team__item img {
      margin-bottom: clamp(1.25rem, 0.5518867925rem + 3.4905660377vw, 3.5625rem);
    }
  }

  @supports not (margin-bottom: clamp(1.25rem, 0.5518867925rem + 3.4905660377vw, 3.5625rem)) {
    .team__item img {
      margin-bottom: calc(1.25rem + 2.3125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.375rem, 1.2240566038rem + 0.7547169811vw, 1.875rem)) {
    .team__item-title {
      font-size: clamp(1.375rem, 1.2240566038rem + 0.7547169811vw, 1.875rem);
    }
  }

  @supports not (font-size: clamp(1.375rem, 1.2240566038rem + 0.7547169811vw, 1.875rem)) {
    .team__item-title {
      font-size: calc(1.375rem + 0.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.125rem, 1.0495283019rem + 0.3773584906vw, 1.375rem)) {
    .team__item-subtitle {
      font-size: clamp(1.125rem, 1.0495283019rem + 0.3773584906vw, 1.375rem);
    }
  }

  @supports not (font-size: clamp(1.125rem, 1.0495283019rem + 0.3773584906vw, 1.375rem)) {
    .team__item-subtitle {
      font-size: calc(1.125rem + 0.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .news {
      padding-top: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem);
    }
  }

  @supports not (padding-top: clamp(1.875rem, 1.4976415094rem + 1.8867924528vw, 3.125rem)) {
    .news {
      padding-top: calc(1.875rem + 1.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(1.875rem, 1.1202830189rem + 3.7735849057vw, 4.375rem)) {
    .news {
      padding-bottom: clamp(1.875rem, 1.1202830189rem + 3.7735849057vw, 4.375rem);
    }
  }

  @supports not (padding-bottom: clamp(1.875rem, 1.1202830189rem + 3.7735849057vw, 4.375rem)) {
    .news {
      padding-bottom: calc(1.875rem + 2.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.25rem, 0.7405660377rem + 2.5471698113vw, 2.9375rem)) {
    .nopage__text {
      font-size: clamp(1.25rem, 0.7405660377rem + 2.5471698113vw, 2.9375rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 0.7405660377rem + 2.5471698113vw, 2.9375rem)) {
    .nopage__text {
      font-size: calc(1.25rem + 1.6875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .nopage__text p {
      margin-bottom: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem);
    }
  }

  @supports not (margin-bottom: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .nopage__text p {
      margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-top: clamp(1.875rem, -0.9551886792rem + 14.1509433962vw, 11.25rem)) {
    .nopage__btn {
      margin-top: clamp(1.875rem, -0.9551886792rem + 14.1509433962vw, 11.25rem);
    }
  }

  @supports not (margin-top: clamp(1.875rem, -0.9551886792rem + 14.1509433962vw, 11.25rem)) {
    .nopage__btn {
      margin-top: calc(1.875rem + 9.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(2.5rem, 1.3679245283rem + 5.6603773585vw, 6.25rem)) {
    .contact__content {
      padding-bottom: clamp(2.5rem, 1.3679245283rem + 5.6603773585vw, 6.25rem);
    }
  }

  @supports not (padding-bottom: clamp(2.5rem, 1.3679245283rem + 5.6603773585vw, 6.25rem)) {
    .contact__content {
      padding-bottom: calc(2.5rem + 3.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(3.75rem, 4.5636792453rem + -0.9433962264vw, 4.375rem)) {
    .contact__wrap {
      padding-bottom: clamp(3.75rem, 4.5636792453rem + -0.9433962264vw, 4.375rem);
    }
  }

  @supports not (padding-bottom: clamp(3.75rem, 4.5636792453rem + -0.9433962264vw, 4.375rem)) {
    .contact__wrap {
      padding-bottom: calc(4.375rem + -0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-left: clamp(0.0000000625rem, -1.5094338809rem + 7.547169717vw, 5rem)) {
    .contact__item {
      padding-left: clamp(0.0000000625rem, -1.5094338809rem + 7.547169717vw, 5rem);
    }
  }

  @supports not (padding-left: clamp(0.0000000625rem, -1.5094338809rem + 7.547169717vw, 5rem)) {
    .contact__item {
      padding-left: calc(0.0000000625rem + 4.9999999375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .contact__item {
      padding-top: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem);
    }
  }

  @supports not (padding-top: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem)) {
    .contact__item {
      padding-top: calc(1.25rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(2.8125rem, 2.2464622642rem + 2.8301886792vw, 4.6875rem)) {
    .contact__item:nth-child(2) {
      padding-top: clamp(2.8125rem, 2.2464622642rem + 2.8301886792vw, 4.6875rem);
    }
  }

  @supports not (padding-top: clamp(2.8125rem, 2.2464622642rem + 2.8301886792vw, 4.6875rem)) {
    .contact__item:nth-child(2) {
      padding-top: calc(2.8125rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(2.875rem, 2.3089622642rem + 2.8301886792vw, 4.75rem)) {
    .contact__item:nth-child(2) {
      padding-bottom: clamp(2.875rem, 2.3089622642rem + 2.8301886792vw, 4.75rem);
    }
  }

  @supports not (padding-bottom: clamp(2.875rem, 2.3089622642rem + 2.8301886792vw, 4.75rem)) {
    .contact__item:nth-child(2) {
      padding-bottom: calc(2.875rem + 1.875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1rem, 0.9245283019rem + 0.3773584906vw, 1.25rem)) {
    .contact__item-title {
      font-size: clamp(1rem, 0.9245283019rem + 0.3773584906vw, 1.25rem);
    }
  }

  @supports not (font-size: clamp(1rem, 0.9245283019rem + 0.3773584906vw, 1.25rem)) {
    .contact__item-title {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.125rem, 0.9551886792rem + 0.8490566038vw, 1.6875rem)) {
    .contact__item-text {
      font-size: clamp(1.125rem, 0.9551886792rem + 0.8490566038vw, 1.6875rem);
    }
  }

  @supports not (font-size: clamp(1.125rem, 0.9551886792rem + 0.8490566038vw, 1.6875rem)) {
    .contact__item-text {
      font-size: calc(1.125rem + 0.5625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(1.875rem, 1.1202830189rem + 3.7735849057vw, 4.375rem)) {
    .contact__form {
      padding-top: clamp(1.875rem, 1.1202830189rem + 3.7735849057vw, 4.375rem);
    }
  }

  @supports not (padding-top: clamp(1.875rem, 1.1202830189rem + 3.7735849057vw, 4.375rem)) {
    .contact__form {
      padding-top: calc(1.875rem + 2.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-left: clamp(0.625rem, -1.6391509434rem + 11.320754717vw, 8.125rem)) {
    .contact__form {
      padding-left: clamp(0.625rem, -1.6391509434rem + 11.320754717vw, 8.125rem);
    }
  }

  @supports not (padding-left: clamp(0.625rem, -1.6391509434rem + 11.320754717vw, 8.125rem)) {
    .contact__form {
      padding-left: calc(0.625rem + 7.5 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-right: clamp(0.625rem, -1.0731132075rem + 8.4905660377vw, 6.25rem)) {
    .contact__form {
      padding-right: clamp(0.625rem, -1.0731132075rem + 8.4905660377vw, 6.25rem);
    }
  }

  @supports not (padding-right: clamp(0.625rem, -1.0731132075rem + 8.4905660377vw, 6.25rem)) {
    .contact__form {
      padding-right: calc(0.625rem + 5.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(1.875rem, 0.554245283rem + 6.6037735849vw, 6.25rem)) {
    .contact__form {
      padding-bottom: clamp(1.875rem, 0.554245283rem + 6.6037735849vw, 6.25rem);
    }
  }

  @supports not (padding-bottom: clamp(1.875rem, 0.554245283rem + 6.6037735849vw, 6.25rem)) {
    .contact__form {
      padding-bottom: calc(1.875rem + 4.375 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.125rem, 0.7853773585rem + 1.6981132075vw, 2.25rem)) {
    .contact__form-title {
      font-size: clamp(1.125rem, 0.7853773585rem + 1.6981132075vw, 2.25rem);
    }
  }

  @supports not (font-size: clamp(1.125rem, 0.7853773585rem + 1.6981132075vw, 2.25rem)) {
    .contact__form-title {
      font-size: calc(1.125rem + 1.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.8125rem, 0.7558962264rem + 0.2830188679vw, 1rem)) {
    .contact__form-subtitle {
      font-size: clamp(0.8125rem, 0.7558962264rem + 0.2830188679vw, 1rem);
    }
  }

  @supports not (font-size: clamp(0.8125rem, 0.7558962264rem + 0.2830188679vw, 1rem)) {
    .contact__form-subtitle {
      font-size: calc(0.8125rem + 0.1875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-top: clamp(1.875rem, 1.4033018868rem + 2.358490566vw, 3.4375rem)) {
    .contact__form-btn {
      margin-top: clamp(1.875rem, 1.4033018868rem + 2.358490566vw, 3.4375rem);
    }
  }

  @supports not (margin-top: clamp(1.875rem, 1.4033018868rem + 2.358490566vw, 3.4375rem)) {
    .contact__form-btn {
      margin-top: calc(1.875rem + 1.5625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(1.875rem, 1.0448113208rem + 4.1509433962vw, 4.625rem)) {
    .map {
      gap: clamp(1.875rem, 1.0448113208rem + 4.1509433962vw, 4.625rem);
    }
  }

  @supports not (gap: clamp(1.875rem, 1.0448113208rem + 4.1509433962vw, 4.625rem)) {
    .map {
      gap: calc(1.875rem + 2.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(3.125rem, 2.1816037736rem + 4.7169811321vw, 6.25rem)) {
    .credit__content {
      padding-bottom: clamp(3.125rem, 2.1816037736rem + 4.7169811321vw, 6.25rem);
    }
  }

  @supports not (padding-bottom: clamp(3.125rem, 2.1816037736rem + 4.7169811321vw, 6.25rem)) {
    .credit__content {
      padding-bottom: calc(3.125rem + 3.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-top: clamp(3.125rem, 1.9929245283rem + 5.6603773585vw, 6.875rem)) {
    .clients {
      padding-top: clamp(3.125rem, 1.9929245283rem + 5.6603773585vw, 6.875rem);
    }
  }

  @supports not (padding-top: clamp(3.125rem, 1.9929245283rem + 5.6603773585vw, 6.875rem)) {
    .clients {
      padding-top: calc(3.125rem + 3.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (padding-bottom: clamp(2.5rem, 1.5566037736rem + 4.7169811321vw, 5.625rem)) {
    .clients {
      padding-bottom: clamp(2.5rem, 1.5566037736rem + 4.7169811321vw, 5.625rem);
    }
  }

  @supports not (padding-bottom: clamp(2.5rem, 1.5566037736rem + 4.7169811321vw, 5.625rem)) {
    .clients {
      padding-bottom: calc(2.5rem + 3.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(1.5rem, 1.1603773585rem + 1.6981132075vw, 2.625rem)) {
    .clients__title {
      font-size: clamp(1.5rem, 1.1603773585rem + 1.6981132075vw, 2.625rem);
    }
  }

  @supports not (font-size: clamp(1.5rem, 1.1603773585rem + 1.6981132075vw, 2.625rem)) {
    .clients__title {
      font-size: calc(1.5rem + 1.125 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.875rem, 1.195754717rem + 3.3962264151vw, 4.125rem)) {
    .clients__title {
      margin-bottom: clamp(1.875rem, 1.195754717rem + 3.3962264151vw, 4.125rem);
    }
  }

  @supports not (margin-bottom: clamp(1.875rem, 1.195754717rem + 3.3962264151vw, 4.125rem)) {
    .clients__title {
      margin-bottom: calc(1.875rem + 2.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (margin-bottom: clamp(1.875rem, 1.2146226415rem + 3.3018867925vw, 4.0625rem)) {
    .sort {
      margin-bottom: clamp(1.875rem, 1.2146226415rem + 3.3018867925vw, 4.0625rem);
    }
  }

  @supports not (margin-bottom: clamp(1.875rem, 1.2146226415rem + 3.3018867925vw, 4.0625rem)) {
    .sort {
      margin-bottom: calc(1.875rem + 2.1875 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (gap: clamp(1.25rem, 0.1179245283rem + 5.6603773585vw, 5rem)) {
    .sort__wrap {
      gap: clamp(1.25rem, 0.1179245283rem + 5.6603773585vw, 5rem);
    }
  }

  @supports not (gap: clamp(1.25rem, 0.1179245283rem + 5.6603773585vw, 5rem)) {
    .sort__wrap {
      gap: calc(1.25rem + 3.75 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.875rem, 0.7995283019rem + 0.3773584906vw, 1.125rem)) {
    .sort__select select {
      font-size: clamp(0.875rem, 0.7995283019rem + 0.3773584906vw, 1.125rem);
    }
  }

  @supports not (font-size: clamp(0.875rem, 0.7995283019rem + 0.3773584906vw, 1.125rem)) {
    .sort__select select {
      font-size: calc(0.875rem + 0.25 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.875rem, 0.7995283019rem + 0.3773584906vw, 1.125rem)) {
    .sort__date-item {
      font-size: clamp(0.875rem, 0.7995283019rem + 0.3773584906vw, 1.125rem);
    }
  }

  @supports not (font-size: clamp(0.875rem, 0.7995283019rem + 0.3773584906vw, 1.125rem)) {
    .sort__date-item {
      font-size: calc(0.875rem + 0.25 * (100vw - 20rem) / 66.25);
    }
  }
}

@media (min-width: 87.5em) and (max-width: 120em) {
  @supports (max-width: clamp(56.25rem, 36.0576923077rem + 23.0769230769vw, 63.75rem)) {
    .content blockquote {
      max-width: clamp(56.25rem, 36.0576923077rem + 23.0769230769vw, 63.75rem);
    }
  }

  @supports not (max-width: clamp(56.25rem, 36.0576923077rem + 23.0769230769vw, 63.75rem)) {
    .content blockquote {
      max-width: calc(56.25rem + 7.5 * (100vw - 87.5rem) / 32.5);
    }
  }
}

@media (max-width: 61.99875em) and (min-width: 86.25em) {
  .header__logo {
    gap: 0.75rem;
  }

  .header__logo-text {
    font-size: 1rem;
  }

  .header__logo-text strong {
    font-size: 1.125rem;
  }

  .header__phone {
    font-size: 1.4375rem;
  }
}

@media (max-width: 61.99875em) and (min-width: 20em) and (max-width: 86.25em) {
  @supports (gap: clamp(0.1875rem, 0.0176886792rem + 0.8490566038vw, 0.75rem)) {
    .header__logo {
      gap: clamp(0.1875rem, 0.0176886792rem + 0.8490566038vw, 0.75rem);
    }
  }

  @supports not (gap: clamp(0.1875rem, 0.0176886792rem + 0.8490566038vw, 0.75rem)) {
    .header__logo {
      gap: calc(0.1875rem + 0.5625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.375rem, 0.1863207547rem + 0.9433962264vw, 1rem)) {
    .header__logo-text {
      font-size: clamp(0.375rem, 0.1863207547rem + 0.9433962264vw, 1rem);
    }
  }

  @supports not (font-size: clamp(0.375rem, 0.1863207547rem + 0.9433962264vw, 1rem)) {
    .header__logo-text {
      font-size: calc(0.375rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.5rem, 0.3113207547rem + 0.9433962264vw, 1.125rem)) {
    .header__logo-text strong {
      font-size: clamp(0.5rem, 0.3113207547rem + 0.9433962264vw, 1.125rem);
    }
  }

  @supports not (font-size: clamp(0.5rem, 0.3113207547rem + 0.9433962264vw, 1.125rem)) {
    .header__logo-text strong {
      font-size: calc(0.5rem + 0.625 * (100vw - 20rem) / 66.25);
    }
  }

  @supports (font-size: clamp(0.75rem, 0.5424528302rem + 1.0377358491vw, 1.4375rem)) {
    .header__phone {
      font-size: clamp(0.75rem, 0.5424528302rem + 1.0377358491vw, 1.4375rem);
    }
  }

  @supports not (font-size: clamp(0.75rem, 0.5424528302rem + 1.0377358491vw, 1.4375rem)) {
    .header__phone {
      font-size: calc(0.75rem + 0.6875 * (100vw - 20rem) / 66.25);
    }
  }
}

@media (min-width: 62em) and (max-width: 120em) {
  @supports (font-size: clamp(0.8125rem, 0.6788793103rem + 0.2155172414vw, 0.9375rem)) {
    .header__logo-text {
      font-size: clamp(0.8125rem, 0.6788793103rem + 0.2155172414vw, 0.9375rem);
    }
  }

  @supports not (font-size: clamp(0.8125rem, 0.6788793103rem + 0.2155172414vw, 0.9375rem)) {
    .header__logo-text {
      font-size: calc(0.8125rem + 0.125 * (100vw - 62rem) / 58);
    }
  }

  @supports (font-size: clamp(0.875rem, 0.474137931rem + 0.6465517241vw, 1.25rem)) {
    .header__logo-text strong {
      font-size: clamp(0.875rem, 0.474137931rem + 0.6465517241vw, 1.25rem);
    }
  }

  @supports not (font-size: clamp(0.875rem, 0.474137931rem + 0.6465517241vw, 1.25rem)) {
    .header__logo-text strong {
      font-size: calc(0.875rem + 0.375 * (100vw - 62rem) / 58);
    }
  }

  @supports (font-size: clamp(0.875rem, 0.7413793103rem + 0.2155172414vw, 1rem)) {
    .menu__body ul li a {
      font-size: clamp(0.875rem, 0.7413793103rem + 0.2155172414vw, 1rem);
    }
  }

  @supports not (font-size: clamp(0.875rem, 0.7413793103rem + 0.2155172414vw, 1rem)) {
    .menu__body ul li a {
      font-size: calc(0.875rem + 0.125 * (100vw - 62rem) / 58);
    }
  }

  @supports (margin-top: clamp(5.1875rem, 7.2564655172rem + -1.724137931vw, 6.1875rem)) {
    .nopage__wrap {
      margin-top: clamp(5.1875rem, 7.2564655172rem + -1.724137931vw, 6.1875rem);
    }
  }

  @supports not (margin-top: clamp(5.1875rem, 7.2564655172rem + -1.724137931vw, 6.1875rem)) {
    .nopage__wrap {
      margin-top: calc(6.1875rem + -1 * (100vw - 62rem) / 58);
    }
  }

  @supports (padding-top: clamp(6.25rem, -0.4310344828rem + 10.775862069vw, 12.5rem)) {
    .nopage__img {
      padding-top: clamp(6.25rem, -0.4310344828rem + 10.775862069vw, 12.5rem);
    }
  }

  @supports not (padding-top: clamp(6.25rem, -0.4310344828rem + 10.775862069vw, 12.5rem)) {
    .nopage__img {
      padding-top: calc(6.25rem + 6.25 * (100vw - 62rem) / 58);
    }
  }

  @supports (padding-left: clamp(1.875rem, -5.474137931rem + 11.8534482759vw, 8.75rem)) {
    .nopage__text {
      padding-left: clamp(1.875rem, -5.474137931rem + 11.8534482759vw, 8.75rem);
    }
  }

  @supports not (padding-left: clamp(1.875rem, -5.474137931rem + 11.8534482759vw, 8.75rem)) {
    .nopage__text {
      padding-left: calc(1.875rem + 6.875 * (100vw - 62rem) / 58);
    }
  }

  @supports (padding-top: clamp(6.25rem, -0.4310344828rem + 10.775862069vw, 12.5rem)) {
    .nopage__text {
      padding-top: clamp(6.25rem, -0.4310344828rem + 10.775862069vw, 12.5rem);
    }
  }

  @supports not (padding-top: clamp(6.25rem, -0.4310344828rem + 10.775862069vw, 12.5rem)) {
    .nopage__text {
      padding-top: calc(6.25rem + 6.25 * (100vw - 62rem) / 58);
    }
  }

  @supports (padding-bottom: clamp(5rem, -3.0172413793rem + 12.9310344828vw, 12.5rem)) {
    .nopage__text {
      padding-bottom: clamp(5rem, -3.0172413793rem + 12.9310344828vw, 12.5rem);
    }
  }

  @supports not (padding-bottom: clamp(5rem, -3.0172413793rem + 12.9310344828vw, 12.5rem)) {
    .nopage__text {
      padding-bottom: calc(5rem + 7.5 * (100vw - 62rem) / 58);
    }
  }
}

@media (max-width: 61.99875em) and (min-width: 62em) {
  .nopage__wrap {
    margin-top: 4.5625rem;
  }
}

@media (max-width: 61.99875em) and (min-width: 30em) and (max-width: 62em) {
  @supports (margin-top: clamp(4.5625rem, 5.046875rem + -0.78125vw, 4.8125rem)) {
    .nopage__wrap {
      margin-top: clamp(4.5625rem, 5.046875rem + -0.78125vw, 4.8125rem);
    }
  }

  @supports not (margin-top: clamp(4.5625rem, 5.046875rem + -0.78125vw, 4.8125rem)) {
    .nopage__wrap {
      margin-top: calc(4.8125rem + -0.25 * (100vw - 30rem) / 32);
    }
  }
}

@media (min-width: 81.25em) and (max-width: 120em) {
  @supports (gap: clamp(0.375rem, -4.3427419355rem + 5.8064516129vw, 2.625rem)) {
    .credit__item-bottom {
      gap: clamp(1.375rem, -4.3427419355rem + 5.8064516129vw, 2.625rem);
    }
  }

  @supports not (gap: clamp(0.375rem, -4.3427419355rem + 5.8064516129vw, 2.625rem)) {
    .credit__item-bottom {
      gap: calc(0.375rem + 2.25 * (100vw - 81.25rem) / 38.75);
    }
  }
}

@media (any-hover: hover) {
  .btn:hover {
    border: 2px solid transparent;
    -o-border-image: linear-gradient(357deg, #edd27e 0%, #d5ad54 13.4%, #aa7114 47.17%, #e6c56d 92.97%, #edd280 100%, #f6f4c9 100%);
    border-image: linear-gradient(357deg, #edd27e 0%, #d5ad54 13.4%, #aa7114 47.17%, #e6c56d 92.97%, #edd280 100%, #f6f4c9 100%);
    border-width: 2px;
    border-style: solid;
    border-image-slice: 1;
  }

  .btn--white:hover {
    border: 2px solid #202020;
    background-color: #202020;
    color: #fff;
  }

  .header__spollers-title:hover {
    border: 2px solid transparent;
    -o-border-image: linear-gradient(357deg, #edd27e 0%, #d5ad54 13.4%, #aa7114 47.17%, #e6c56d 92.97%, #edd280 100%, #f6f4c9 100%);
    border-image: linear-gradient(357deg, #edd27e 0%, #d5ad54 13.4%, #aa7114 47.17%, #e6c56d 92.97%, #edd280 100%, #f6f4c9 100%);
    border-width: 1px;
    border-style: solid;
    border-image-slice: 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn-up:hover {
    background-color: #022749;
  }
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}

.webp .checkbox-other span:before {
  background: url(https://snipp.ru/uploads/contents/checkbox-1.webp) 0 0 no-repeat;
}

.webp .checkbox-other input[type=checkbox]:checked+span:before {
  background-image: url(https://snipp.ru/uploads/contents/checkbox-2.webp);
}

.webp .review {
  background-image: url(../img/rev-bg.webp);
}

.webp .smallOrder::before {
  background-image: url(../img/icon/ordersm.webp);
}

.webp .faq {
  background-image: url(../img/faq.webp);
}

.webp .content-home {
  background-image: url(../img/rev-bg.webp);
}

.webp .content-home::after {
  background-image: url(../img/text.webp);
}

.webp .order {
  background-image: url(../img/order.webp);
}

.webp .miniSlider::before {
  background-image: url(../img/rel-bg.webp);
}

.webp .team__item {
  background-image: url(../img/team-bg.webp);
}

.webp .nopage__text {
  background-image: url(../img/404-bg.webp);
}

.webp .clients::after {
  background-image: url(../img/clients-bg.webp);
}

@media (max-width: 61.99875em) {

  .webp .smallOrder::before {
    background-image: url(../img/icon/ordersm2.webp);
  }
}

.pageSlider-smi .pageSlider__item-wrap::after {
  height: 45%;
}

.pageSlider-smi .pageSlider__item:nth-child(even) .pageSlider__item-wrap::after {
  height: 45%;
}


.tab-btn-active {
  pointer-events: none;
  color: red;
}

.tab-pane:not(.tab-pane-show) {
  display: none;
}

@media(max-width:1420px) {
  .pageSlider-smi .pageSlider__item-wrap::after {
    height: 50%;
  }

  .pageSlider-smi .pageSlider__item:nth-child(even) .pageSlider__item-wrap::after {
    height: 50%;
  }
}

@media(max-width:1366.98px) {
  .pageSlider__item-img img {
    width: 510px;
  }

  .pageSlider__item-slider {
    max-width: 720px;
  }
}

@media(max-width:1280px) {
  .pageSlider__item-img img {
    width: 410px;
  }

  .pageSlider__item-slider {
    max-width: 620px;
  }
}

@media(max-width:1080px) {
  .pageSlider__item-slider {
    max-width: 520px;
  }
}

@media(max-width:991.98px) {
  .pageSlider__item-slider {
    max-width: 100%;
  }

  .pageSlider-smi .pageSlider__item-wrap::after {
    height: 99%;
    left: 0;
  }

  .pageSlider-smi .pageSlider__item:nth-child(even) .pageSlider__item-wrap::after {
    height: 99%;
  }

  [class*=__container] {
    padding: 0 10px;
  }
}

.tab {
  margin-bottom: 100px;
}

.tab-nav {
  display: flex;
  margin-bottom: 30px;
}

.tab-btn {
  overflow: hidden;
  flex-grow: 1;
  padding-left: 33px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 17px;
  color: #56575c;
  border: 1px solid #edd280;
  /* -o-border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
  border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%); */
  border-width: 1px;
  border-style: solid;
  border-image-slice: 1;
  border-radius: 15px 15px 0 0;
}

.tab-btn-active {
  background: #edd280;
}

.tab-pane img {
  width: 100%;
}

.port__slider {
  height: 700px !important;
  padding-bottom: 100px !important;
}

.port__slide {
  height: calc((100% - 30px) / 2);
}

@media(max-width:992px) {
  .tab-btn {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
  }
}

@media(max-width:768px) {
  .tab-btn {
    border-radius: 10px 10px 0 0;
    font-size: 10px;
  }

  .tab {
    margin-bottom: 30px;
  }

  .port__slide {
    height: 200px !important;
  }

  .port__slider {
    height: 510px !important;
    padding-bottom: 40px !important;
  }
  .faq {
        background-position: center;
    }
  
  .faq__title{
      padding-left:20px;
  }
}

@media(max-width:480px) {
  .tab-nav {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
  }

  .tab-btn {
    border-radius: 0;
    font-size: 14px;
  }
}

@media(max-width:380px) {
     .faq {
        background-position: right;
    }
}

.header__menu .menu-item-has-children{
    margin-right:10px;
}