@charset "UTF-8";
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: arialnarrow;
  font-display: swap;
  src: url("../fonts/arialnarrow.woff2") format("woff2"), url("../fonts/arialnarrow.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

body {
  color: #000;
  line-height: 1;
  font-family: var(--font-family);
  font-size: 0.875rem;
  -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: var(--font-family);
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  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;
  touch-action: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container] {
  max-width: 75rem;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.checkbox {
  position: relative;
}
.checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}
.checkbox__input {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}
.checkbox__input:checked + .checkbox__label:before {
  background: url(../img/chek.svg) center/contain no-repeat;
  mask: none;
}
.checkbox__label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 10px;
}
.checkbox__label:before {
  content: "";
  align-self: flex-start;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  inset: calc(0px - var(--border-w));
  /*
       если нет поддержки inset:
       top: var(--border-w);
       left: var(--border-w);
       right: var(--border-w);
       bottom: var(--border-w);
       */
  border-radius: 5px;
  padding: 2.66px;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.checkbox__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 157%;
  color: #8c8e94;
}
.checkbox__text a {
  color: #ffb43a;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .checkbox__text a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 47.99875em) {
  .checkbox__text {
    font-size: 12px;
    line-height: 130%;
  }
}

.options {
  display: flex;
  gap: 40px;
}
.options:not(:last-of-type) {
  margin-bottom: 45px;
}
@media (max-width: 72.5em) {
  .options {
    flex-wrap: wrap;
  }
  .options:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
@media (max-width: 47.99875em) {
  .options {
    gap: 20px;
  }
}
.options__item {
  position: relative;
  cursor: pointer;
  flex: 0 0 calc(25% - 27px);
}
@media (max-width: 72.5em) {
  .options__item {
    flex: 0 0 210px;
  }
}
@media (max-width: 47.99875em) {
  .options__item {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 24.375em) {
  .options__item {
    flex: 0 0 100%;
  }
}
.options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.options__input:focus + .options__label:before {
  box-shadow: 0 0 5px #000;
}
.options__input:checked + .options__label {
  background: #ffb43a;
}
.options__input:checked + .options__label .options__text {
  color: #fff;
}
.options__input:checked + .options__label:after {
  transform: scale(1);
  display: none;
}
.options__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  border-radius: 20px;
  padding: 25px;
  background: #fff;
  width: 100%;
  transition: all 0.3s ease 0s;
}
.options__label:after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media (max-width: 47.99875em) {
  .options__label:after {
    inset: -0.5px;
    padding: 1px;
  }
}
@media (any-hover: hover) {
  .options__label:hover {
    background: #fff7e5;
  }
}
@media (max-width: 47.99875em) {
  .options__label {
    padding: 20px;
  }
}
.options__text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 107%;
  color: #393939;
  white-space: nowrap;
}
@media (max-width: 47.99875em) {
  .options__text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 178%;
    color: #393939;
  }
}

.options.options_img {
  display: flex;
}
.options.options_img .options__item {
  position: relative;
  cursor: pointer;
  flex: 0 0 calc(25% - 27px);
}
@media (max-width: 72.5em) {
  .options.options_img .options__item {
    flex: 0 0 210px;
  }
}
@media (max-width: 47.99875em) {
  .options.options_img .options__item {
    flex: 0 0 220px;
  }
}
@media (max-width: 24.375em) {
  .options.options_img .options__item {
    flex: 0 0 100%;
  }
}
.options.options_img .options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.options.options_img .options__input:focus + .options__label:before {
  box-shadow: 0 0 5px #000;
}
.options.options_img .options__input:checked + .options__label {
  background: transparent;
}
.options.options_img .options__input:checked + .options__label .options__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 107%;
  color: #393939;
}
@media (max-width: 47.99875em) {
  .options.options_img .options__input:checked + .options__label .options__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 178%;
    color: #393939;
  }
}
.options.options_img .options__input:checked + .options__label::before {
  transform: scale(1);
  background: #ffb43a;
}
.options.options_img .options__label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
  gap: 10px;
  border-radius: 0px;
  padding: 10px 8px 0;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.options.options_img .options__label:after {
  display: none;
}
.options.options_img .options__label::before {
  content: "";
  position: absolute;
  border-radius: 20px;
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  height: 71px;
  background: #ebebeb;
  transition: all 0.3s ease 0s;
}
@media (max-width: 72.5em) {
  .options.options_img .options__label::before {
    height: 60px;
  }
}
@media (max-width: 47.99875em) {
  .options.options_img .options__label::before {
    height: 67px;
  }
}
@media (max-width: 24.375em) {
  .options.options_img .options__label::before {
    height: 91px;
  }
}
.options.options_img .options__label img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
@media (any-hover: hover) {
  .options.options_img .options__label:hover::before {
    background: #fff7e5;
  }
}
@media (max-width: 47.99875em) {
  .options.options_img .options__label {
    gap: 0;
  }
}
.options.options_img .options__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 107%;
  color: #393939;
}
@media (max-width: 47.99875em) {
  .options.options_img .options__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 178%;
    color: #393939;
  }
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.videos__video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 57.5%;
}
.videos__video video,
.videos__video iframe,
.videos__video object,
.videos__video embed, .videos__video .video-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

:root {
  --font-family: "Montserrat";
  --second-family: "arialnarrow";
  --border-w: 1.33px;
}

h1 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 52px;
  line-height: 130%;
  text-transform: uppercase;
  color: #393939;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  h1 {
    font-size: 38px;
    line-height: 130%;
  }
}
@media (max-width: 24.375em) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 124%;
  text-align: center;
  color: #393939;
  margin-bottom: 30px;
}
@media (max-width: 47.99875em) {
  h2 {
    font-size: 24px;
    line-height: 140%;
  }
}

h2.uppercase {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 47.99875em) {
  h2.uppercase {
    font-size: 24px;
  }
}

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 26px;
  line-height: 124%;
  color: #393939;
  margin-bottom: 30px;
}
@media (max-width: 47.99875em) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #393939;
  margin-bottom: 20px;
}

section {
  padding: 60px 0;
}
@media (max-width: 75em) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 47.99875em) {
  section {
    padding: 30px 0;
  }
}

[class*=__container] {
  max-width: 87.5rem;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 75em) {
  [class*=__container] {
    max-width: 72.875rem;
    padding: 0 25px;
  }
}
@media (max-width: 47.99875em) {
  [class*=__container] {
    padding: 0 9px;
  }
}

.btn {
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  border-radius: 40px;
  padding: 15px 30px;
  overflow: hidden;
  display: inline-flex;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn span {
  position: relative;
  z-index: 3;
}
@media (max-width: 47.99875em) {
  .btn span span {
    display: none;
  }
}
@media (max-width: 72.5em) {
  .btn {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 12px;
    line-height: 191%;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(73deg, #ffcc49 0%, #ffb43a 40.89%, #ff5700 99.38%);
  opacity: 0;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .btn:hover::after {
    opacity: 1;
  }
}

.form {
  border-radius: 27px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 5px 5px 13px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  position: relative;
  flex: 0 0 40%;
}
@media (max-width: 72.5em) {
  .form {
    width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .form {
    padding: 15px;
  }
}
.form::before {
  content: "";
  position: absolute;
  inset: calc(0px - var(--border-w));
  /*
  если нет поддержки inset:
  top: var(--border-w);
  left: var(--border-w);
  right: var(--border-w);
  bottom: var(--border-w);
  */
  border-radius: 27px;
  padding: 3.99px;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
@media (max-width: 72.5em) {
  .form h3 {
    text-align: center;
  }
}
.form__bottom {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 72.5em) {
  .form__bottom {
    align-items: center;
  }
}
@media (max-width: 47.99875em) {
  .form__bottom {
    gap: 20px;
  }
}
@media (max-width: 24.375em) {
  .form__bottom {
    flex-direction: column-reverse;
  }
}
.form__input {
  display: block;
  width: 100%;
  border-radius: 27px;
  padding: 13px 26px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 157%;
  color: #393939;
  border: 1.33px solid;
  background-color: #fff;
  border: none;
  outline: none;
}
.form__error {
  color: #fd5e05;
  padding: 0 28px;
  margin: 4px 0;
}

@media (max-width: 47.99875em) {
  .form__input {
    font-size: 14px;
    line-height: 210%;
  }
}
.form__row:not(:last-of-type) {
  margin-bottom: 25px;
}
.form__row:last-of-type {
  margin-bottom: 40px;
}
.form__row--mb-0 {
  margin-bottom: 0 !important;
}

.form__label {
  display: flex;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  padding: 2px;
  border-radius: 27px;
}
/*.form__label:not(:last-of-type) {
  margin-bottom: 25px;
}
.form__label:last-of-type {
  margin-bottom: 40px;
}*/
@media (max-width: 47.99875em) {
  .form__label:last-of-type {
    margin-bottom: 30px;
  }
}
@media (max-width: 47.99875em) {
  .form .btn {
    flex: 0 0 134px;
  }
}
@media (max-width: 24.375em) {
  .form .btn {
    flex: 0 0 auto;
    width: 100%;
    padding: 13px 20px;
  }
}

.header {
  padding: 15px 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
@media (max-width: 72.5em) {
  .header__container {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.header__logo {
  flex: 0 0 180px;
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 75em) {
  .header__logo {
    flex: 0 0 160px;
  }
}
@media (max-width: 72.5em) {
  .header__logo {
    flex: 0 0 155px;
    order: 1;
  }
}
@media (max-width: 24.375em) {
  .header__logo {
    flex: 0 0 125px;
  }
}
.header__location {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 75em) {
  .header__location {
    gap: 15px;
  }
}
@media (max-width: 24.375em) {
  .header__location {
    gap: 10px;
  }
}
.header__location img {
  display: block;
  width: 45px;
  height: auto;
}
@media (max-width: 75em) {
  .header__location img {
    width: 45px;
  }
}
@media (max-width: 72.5em) {
  .header__location img {
    width: 25px;
  }
}
.header__location span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 169%;
  color: #ffb43a;
  white-space: nowrap;
}
.header__location span span {
  color: #000;
}
@media (max-width: 72.5em) {
  .header__location span {
    font-size: 12px;
    line-height: 130%;
  }
}
@media (max-width: 24.375em) {
  .header__location span {
    flex-wrap: wrap;
    display: block;
    font-size: 10px;
    line-height: 130%;
  }
}
@media (max-width: 72.5em) {
  .header__location {
    order: 3;
  }
}
.header__tel {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 157%;
  color: #393939;
  transition: all 0.3s ease 0s;
}
.header__tel img {
  display: block;
  width: 25px;
  height: auto;
}
@media (max-width: 72.5em) {
  .header__tel img {
    width: 24px;
  }
}
@media (max-width: 24.375em) {
  .header__tel img {
    display: none;
  }
}
@media (max-width: 72.5em) {
  .header__tel {
    font-size: 16px;
    line-height: 184%;
  }
}
@media (any-hover: hover) {
  .header__tel:hover {
    color: #ffb43a;
  }
}
@media (max-width: 72.5em) {
  .header__tel {
    flex: 0 0 calc(100% - 155px - 18px);
    justify-content: flex-end;
    order: 2;
  }
}
@media (max-width: 72.5em) {
  .header__btn {
    order: 4;
    margin-top: -10px;
  }
}

/*
.icon-menu {
	display: none;
	@media (max-width: $mobile) {
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
		span,
		&::before,
		&::after {
			content: "";
			transition: all 0.3s ease 0s;
			left: 0px;
			position: absolute;
			width: 100%;
			height: 2px;
			background-color: #000;
		}
		&::before {
			top: 0px;
		}
		&::after {
			bottom: 0px;
		}
		span {
			top: calc(50% - 1px);
		}
		.menu-open & {
			span {
				transform: scale(0);
			}
			&::before {
				transform: rotate(-45deg);
				top: calc(50% - 1px);
			}
			&::after {
				transform: rotate(45deg);
				bottom: calc(50% - 1px);
			}
		}
	}
}
*/
.footer {
  padding: 30px 0;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
}
@media (max-width: 47.99875em) {
  .footer {
    padding: 30px 0;
  }
}
.footer p:nth-of-type(1) {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 124%;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 47.99875em) {
  .footer p:nth-of-type(1) {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.footer p:nth-of-type(2) {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 169%;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media (max-width: 47.99875em) {
  .footer p:nth-of-type(2) {
    font-size: 16px;
  }
}
.footer p:nth-of-type(3) {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 105%;
  text-align: center;
  color: #fff;
}
@media (max-width: 47.99875em) {
  .footer p:nth-of-type(3) {
    font-size: 28px;
  }
}

.reiting {
  padding-bottom: 150px;
}
@media (max-width: 75em) {
  .reiting {
    padding-bottom: 371px;
  }
}
@media (max-width: 72.5em) {
  .reiting {
    padding: 50px 0;
  }
}
.reiting__container {
  position: relative;
}
.reiting__container::after {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -204px;
  display: block;
  background: url(../img/teen.png) center bottom/contain no-repeat;
  width: 35%;
  height: 100%;
}
@media (max-width: 75em) {
  .reiting__container::after {
    width: 37%;
  }
}
@media (max-width: 72.5em) {
  .reiting__container::after {
    bottom: -50px;
    left: -10%;
  }
}
@media (max-width: 47.99875em) {
  .reiting__container::after {
    width: 50%;
    left: -25%;
    bottom: -10%;
  }
}
.reiting__inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 70%;
  margin-left: auto;
  gap: 45px;
}
@media (max-width: 72.5em) {
  .reiting__inner {
    justify-content: center;
  }
}
@media (max-width: 47.99875em) {
  .reiting__inner {
    gap: 30px;
  }
}
.reiting__item {
  flex: 1 0 calc(33.333% - 30px);
  max-width: 374px;
}
.reiting__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.reiting__item:nth-of-type(4) {
  margin-right: 12.5%;
}
@media (max-width: 72.5em) {
  .reiting__item:nth-of-type(4) {
    margin-right: 0;
  }
}
@media (max-width: 72.5em) {
  .reiting__item {
    flex: 0 0 calc(50% - 23px);
  }
}
@media (max-width: 47.99875em) {
  .reiting__item {
    flex: 0 0 calc(50% - 15px);
  }
}
.reiting p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
@media (max-width: 75em) {
  .reiting p {
    margin-bottom: 5.875rem;
  }
}
@media (max-width: 72.5em) {
  .reiting p {
    font-size: 24px;
  }
}
@media (max-width: 47.99875em) {
  .reiting p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.sertificats__inner {
  display: flex;
  gap: 44px;
}
@media (max-width: 72.5em) {
  .sertificats__inner {
    gap: 36px;
  }
}
@media (max-width: 47.99875em) {
  .sertificats__inner {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.sertificats__inner a {
  flex: 0 0 0 calc(33.33% - 66px);
  display: block;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25), 0 0 15px 0 rgba(0, 0, 0, 0.11);
  border: 6.67px solid #ffcc49;
  border-radius: 7px;
  overflow: hidden;
}
.sertificats__inner a img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 72.5em) {
  .sertificats__inner a {
    flex: 0 0 0 calc(33.33% - 54px);
  }
}
@media (max-width: 47.99875em) {
  .sertificats__inner a {
    flex: 0 0 100%;
  }
}

.rewiews h2 {
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
}
.rewiews__inner {
  position: relative;
}
.rewiews__slider {
  max-width: calc(100% - 71px - 71px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 47.99875em) {
  .rewiews__slider {
    padding-bottom: 50px !important;
    max-width: 100%;
  }
}
.rewiews__slide {
  background: #fff7e5;
  border-radius: 29px;
  padding: 43px;
}
@media (max-width: 47.99875em) {
  .rewiews__slide {
    padding: 30px;
  }
}
.rewiews__top {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}
@media (max-width: 47.99875em) {
  .rewiews__top {
    gap: 20px;
    margin-bottom: 15px;
  }
}
.rewiews__top img {
  display: block;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 100px;
  background: linear-gradient(0deg, #ff9325 0%, #ffc746 100%);
}
.rewiews__top p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 152%;
  color: #393939;
}
@media (max-width: 47.99875em) {
  .rewiews__top p {
    font-size: 16px;
    line-height: 216%;
    max-width: 100%;
  }
}
.rewiews__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 171%;
  color: #393939;
}
@media (max-width: 47.99875em) {
  .rewiews__text {
    font-size: 14px;
    line-height: 150%;
  }
}
.rewiews__pagination {
  display: none;
}
@media (max-width: 47.99875em) {
  .rewiews__pagination {
    display: block;
  }
}
.first-screen__inner {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
}
.first-screen__inner a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 107%;
  color: #393939;
  display: block;
  padding: 0 28px;
  transition: all 0.3s ease 0s;
}
.first-screen__inner a:not(:last-of-type) {
  border-right: 2px solid #ffb43a;
}
@media (max-width: 72.5em) {
  .first-screen__inner a:not(:last-of-type) {
    padding: 10px;
    width: fit-content;
    border-right: 0px solid #ffb43a;
    border-bottom: 2px solid #ffb43a;
  }
}
@media (max-width: 72.5em) {
  .first-screen__inner a {
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
    line-height: 178%;
  }
  .first-screen__inner a:last-of-type {
    padding: 10px;
    width: fit-content;
    border-bottom: 2px solid #ffb43a;
  }
}
@media (max-width: 47.99875em) {
  .first-screen__inner a {
    font-size: 18px;
  }
}
@media (any-hover: hover) {
  .first-screen__inner a:hover {
    color: #ffb43a;
  }
}
@media (max-width: 72.5em) {
  .first-screen__inner {
    flex-direction: column;
  }
}
@media (max-width: 47.99875em) {
  .first-screen__inner {
    margin-bottom: 40px;
  }
}
.first-screen__form {
  padding: 70px 0 35px;
  background: url(../img/bgfs.webp) center/cover no-repeat;
}
@media (max-width: 47.99875em) {
  .first-screen__form {
    padding: 20px 0;
    background: url(../img/bg-f-mob.webp) center/cover no-repeat;
  }
}
.first-screen__form-inner {
  display: flex;
  gap: 55px;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 72.5em) {
  .first-screen__form-inner {
    flex-direction: column-reverse;
  }
}
@media (max-width: 47.99875em) {
  .first-screen__form-inner {
    gap: 150px;
  }
}
.first-screen__action {
  border-radius: 27px;
  padding: 30px;
  box-shadow: 5px 5px 13px 0 rgba(0, 0, 0, 0.05);
  background: #fff7e5;
  mix-blend-mode: hard-light;
  flex: 0 0 calc(40% - 23px);
  height: 100%;
  position: relative;
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.8s ease 0s;
}
.first-screen__action::before {
  content: "";
  position: absolute;
  inset: calc(0px - var(--border-w));
  /*
  если нет поддержки inset:
  top: var(--border-w);
  left: var(--border-w);
  right: var(--border-w);
  bottom: var(--border-w);
  */
  border-radius: 27px;
  padding: 2.66px;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.first-screen__action p:nth-of-type(1) {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 80%;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 26px;
}
@media (max-width: 47.99875em) {
  .first-screen__action p:nth-of-type(1) {
    font-size: 32px;
    line-height: 147%;
    margin-bottom: 10px;
  }
}
.first-screen__action p:nth-of-type(2) {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: #393939;
}
@media (max-width: 47.99875em) {
  .first-screen__action p:nth-of-type(2) {
    font-size: 16px;
  }
}
@media (max-width: 72.5em) {
  .first-screen__action {
    flex: 0 0 auto;
  }
}
@media (max-width: 47.99875em) {
  .first-screen__action {
    padding: 15px 30px;
  }
}
.first-screen__action._watcher-view {
  opacity: 1;
  transform: translateX(0px);
}
.first-screen form {
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: translateX(50px);
}
.first-screen form._watcher-view {
  opacity: 1;
  transform: translateX(0px);
}

.problems {
  position: relative;
}
.problems::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 550px;
  height: 398px;
  border-radius: 134px;
  display: block;
  filter: blur(401.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
.problems::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 550px;
  height: 398px;
  border-radius: 134px;
  display: block;
  filter: blur(401.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
.problems h2 {
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 47.99875em) {
  .problems h4 {
    text-align: center;
  }
}
.problems__container {
  position: relative;
  z-index: 2;
}
.problems__inner {
  display: flex;
  gap: 40px;
}
@media (max-width: 72.5em) {
  .problems__inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 47.99875em) {
  .problems__inner {
    gap: 30px;
  }
}
.problems__item {
  border-radius: 20px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  overflow: hidden;
  height: 100%;
  padding: 55px 25px;
  flex: 0 0 calc(25% - 31px);
}
.problems__item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 169%;
  color: #393939;
}
@media (max-width: 75em) {
  .problems__item {
    padding: 45px 25px;
  }
}
@media (max-width: 72.5em) {
  .problems__item {
    flex: 0 0 calc(50% - 20px);
    height: auto;
  }
}
@media (max-width: 47.99875em) {
  .problems__item {
    padding: 20px;
    flex: 0 0 100%;
  }
}
.problems__img {
  width: 100%;
  margin-bottom: 45px;
}
.problems__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 47.99875em) {
  .problems__img {
    width: 210px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.apparats_two {
  position: relative;
}
.apparats_two::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 550px;
  height: 398px;
  border-radius: 134px;
  display: block;
  filter: blur(401.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
.apparats_two::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 550px;
  height: 398px;
  border-radius: 134px;
  display: block;
  filter: blur(401.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
.apparats_two .apparats__item p {
  padding-bottom: 80px;
}
@media (max-width: 75em) {
  .apparats_two .apparats__item p {
    padding-bottom: 24px;
  }
}
.apparats__prise {
  position: relative;
  padding: 30px 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 20px;
  flex: 0 1 100%;
}
.apparats__prise::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.apparats__note {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #393939;
  text-align: center;
  margin-top: 50px;
}
.apparats__prise-item {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.apparats__prise-item:not(:last-of-type) {
  margin-bottom: 15px;
}
.apparats__prise-item span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 158%;
  color: #393939;
}
.apparats__prise-item span:nth-of-type(2) {
  background: #fff7e5;
  padding: 10px 15px;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  height: fit-content;
  font-weight: 600;
}
@media (max-width: 47.99875em) {
  .apparats__prise-item span:nth-of-type(2) {
    flex: 0 0 120px;
  }
}
@media (max-width: 47.99875em) {
  .apparats__prise-item span {
    font-size: 12px;
  }
}
@media (max-width: 75em) {
  .apparats h2 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 47.99875em) {
  .apparats h2 {
    max-width: 100%;
  }
}
.apparats__inner {
  display: flex;
  gap: 40px;
}
@media (max-width: 72.5em) {
  .apparats__inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 47.99875em) {
  .apparats__inner {
    gap: 30px;
  }
}
.apparats__item {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.33% - 27px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
.apparats__item h4 {
  padding: 30px 20px 0;
}
.apparats__item p {
  padding: 0 20px 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #3c4049;
}
@media (max-width: 72.5em) {
  .apparats__item {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 47.99875em) {
  .apparats__item {
    flex: 0 0 100%;
  }
}
.apparats__img {
  width: 100%;
  padding-bottom: 80%;
  position: relative;
}
.apparats__img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1175px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 30px;
}
@media (max-width: 72.5em) {
  .why__inner {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 24.375em) {
  .why__inner {
    grid-template-columns: 20px 1fr;
    grid-template-rows: repeat(5, auto);
  }
}
.why__border {
  grid-area: 1/1/6/2;
  border: 3px solid #ffb983;
  border-radius: 63px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 0;
}
@media (max-width: 24.375em) {
  .why__border {
    gap: 20px;
  }
}
.why__border .cirkle {
  flex: 0 0 calc(20% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  opacity: 0;
  transition: all 0.8s ease 0s;
}
.why__border .cirkle::after {
  content: "";
  position: absolute;
  display: block;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 11px 0 rgba(255, 96, 6, 0.3);
  background: #fff url(../img/arrow-circle.svg) center/149px 9px no-repeat;
}
@media (max-width: 24.375em) {
  .why__border .cirkle::after {
    top: 0px;
  }
}
.why__border .cirkle._watcher-view {
  opacity: 1;
}
.why__item {
  display: flex;
  gap: 40px;
  align-items: center;
  opacity: 0;
  transition: all 0.8s ease 0s;
}
.why__item:nth-of-type(1) {
  grid-area: 1/2/2/3;
}
.why__item:nth-of-type(2) {
  grid-area: 2/2/3/3;
}
.why__item:nth-of-type(3) {
  grid-area: 3/2/4/3;
}
.why__item:nth-of-type(4) {
  grid-area: 4/2/5/3;
}
.why__item:nth-of-type(5) {
  grid-area: 5/2/6/3;
}
@media (max-width: 72.5em) {
  .why__item {
    gap: 20px;
  }
}
@media (max-width: 24.375em) {
  .why__item {
    gap: 5px;
    flex-direction: column;
    align-items: start;
  }
}
.why__item._watcher-view {
  opacity: 1;
}
.why__num {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 100px;
  text-align: center;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.9;
  flex: 0 0 178px;
}
@media (max-width: 72.5em) {
  .why__num {
    font-size: 60px;
    flex: 0 0 83px;
  }
}
@media (max-width: 24.375em) {
  .why__num {
    flex: 0 0 auto;
    font-size: 40px;
  }
}
.why__content p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
}
.why__content p:nth-of-type(1) {
  color: #ffb43a;
}
.why__content p:nth-of-type(2) {
  color: #000;
}
@media (max-width: 72.5em) {
  .why__content p {
    font-size: 18px;
  }
}
@media (max-width: 47.99875em) {
  .why__content p {
    font-size: 16px;
  }
}

@media (max-width: 72.5em) {
  .contacts {
    padding-bottom: 0;
  }
}
.contacts__banner {
  margin-bottom: 40px;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.49);
  background: #fff7e5;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.contacts__banner a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 64px;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 47.99875em) {
  .contacts__banner a {
    font-size: 38px;
    line-height: 111%;
  }
}
@media (max-width: 25.3125em) {
  .contacts__banner a {
    font-size: 28px;
  }
}
@media (max-width: 72.5em) {
  .contacts__banner {
    flex-direction: column;
  }
}
@media (max-width: 47.99875em) {
  .contacts__banner {
    padding: 20px;
    gap: 20px;
  }
}
.contacts__left {
  display: flex;
  flex-direction: column;
}
.contacts__left span {
  white-space: nowrap;
}
.contacts__left span:nth-of-type(1) {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 26px;
  line-height: 81%;
  text-align: center;
  color: #393939;
  margin-bottom: 10px;
}
@media (max-width: 47.99875em) {
  .contacts__left span:nth-of-type(1) {
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 144%;
  }
}
.contacts__left span:nth-of-type(2) {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 58px;
  line-height: 66%;
  text-align: center;
  color: #393939;
}
@media (max-width: 47.99875em) {
  .contacts__left span:nth-of-type(2) {
    font-size: 36px;
    line-height: 117%;
  }
}
.contacts__inner {
  display: flex;
  gap: 116px;
  justify-content: center;
}
@media (max-width: 72.5em) {
  .contacts__inner {
    gap: 50px;
    align-items: center;
  }
}
@media (max-width: 47.99875em) {
  .contacts__inner {
    flex-direction: column;
  }
}
.contacts img {
  flex: 0 0 375px;
  display: block;
  width: 375px;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin-bottom: -100px;
}
@media (max-width: 72.5em) {
  .contacts img {
    margin-bottom: 0;
  }
}
@media (max-width: 47.99875em) {
  .contacts img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contacts .form {
  flex: 0 0 45%;
  border-radius: 0px;
  overflow: hidden;
  padding: 0px;
  padding-top: 127px;
  box-shadow: 5px 5px 13px 0 rgba(0, 0, 0, 0);
  background: #fff;
  position: relative;
}
.contacts .form::before {
  opacity: 0;
}
@media (max-width: 72.5em) {
  .contacts .form {
    padding-top: 0;
  }
}
@media (max-width: 47.99875em) {
  .contacts .form {
    flex: 0 0 auto;
  }
}
@media (max-width: 72.5em) {
  .contacts .form .form__bottom {
    flex-direction: column-reverse;
    align-items: start;
    gap: 20px;
  }
  .contacts .form .form__bottom .btn {
    width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .contacts .form .btn {
    flex: 0 0 auto;
  }
}

.maps__list {
  display: flex;
  gap: 20px;
}
@media (max-width: 47.99875em) {
  .maps__list {
    flex-direction: column;
  }
}
.maps .maps-item__map {
  flex: 0 0 calc(50% - 10px);
  height: 488px;
}
@media (max-width: 75em) {
  .maps .maps-item__map {
    height: 405px;
  }
}
@media (max-width: 47.99875em) {
  .maps .maps-item__map {
    height: 322px;
    flex: 0 0 auto;
  }
}
.maps .maps-item__map:nth-of-type(odd) {
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: translateX(-50px);
}
.maps .maps-item__map:nth-of-type(even) {
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: translateX(50px);
}
.maps .maps-item__map._watcher-view {
  opacity: 1;
  transform: translateX(0px);
}
.maps .ymaps-2-1-79-balloon__content {
  padding: 25px 10px !important;
  background: #f2a55a !important;
  font: 16px/20px Arial, sans-serif !important;
  color: #fff !important;
  border-radius: 20px !important;
}
.maps .ymaps-2-1-79-balloon__layout {
  border-radius: 20px !important;
  overflow: hidden;
}
.maps .ymaps-2-1-79-balloon {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0), 0 5px 15px -7px rgba(0, 0, 0, 0) !important;
}
.maps .ymaps-2-1-79-balloon__tail:after {
  background: #f2a55a !important;
}
.maps .ymaps-2-1-79-balloon_layout_panel {
  background-color: transparent !important;
}

.attation {
  padding: 40px 0;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
}
@media (max-width: 47.99875em) {
  .attation.attation_two .attation__right {
    min-height: 442px;
  }
}
.attation.attation_two h2 {
  text-align: left;
}
.attation__inner {
  display: flex;
  gap: 42px;
}
@media (max-width: 72.5em) {
  .attation__inner {
    gap: 10px;
    flex-direction: column;
  }
}
.attation__right {
  border-radius: 27px;
  overflow: hidden;
  background: #fff url(../img/bg04.jpg) center/cover no-repeat;
  flex: 0 1 100%;
  box-shadow: 5px 5px 13px 0 rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: translateX(50px);
}
@media (max-width: 47.99875em) {
  .attation__right {
    padding: 20px;
    background: #fff url(../img/bg04-mob.jpg) center/cover no-repeat;
    min-height: 590px;
  }
}
.attation__right._watcher-view {
  opacity: 1;
  transform: translateX(0px);
}
.attation__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 47.99875em) {
  .attation__top {
    gap: 20px;
  }
}
.attation__old-price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 124%;
  color: #393939;
  position: relative;
  width: fit-content;
}
@media (max-width: 47.99875em) {
  .attation__old-price {
    font-size: 30px;
    line-height: 187%;
  }
}
.attation__old-price::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  background: #8c8e94;
  transform: rotate(170deg);
  height: 4px;
  width: 100%;
}
.attation__price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 85px;
  line-height: 1;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 47.99875em) {
  .attation__price {
    font-size: 70px;
    line-height: 80%;
  }
}
.attation__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.attation__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 21px;
  line-height: 169%;
  color: #393939;
}
.attation__list li::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  overflow: hidden;
  border-radius: 100%;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
}
@media (max-width: 47.99875em) {
  .attation__list li {
    font-size: 16px;
    line-height: 140%;
  }
}
.attation .form {
  flex: 0 0 45%;
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: translateX(-50px);
}
.attation .form h3 {
  margin-bottom: 14px;
}
@media (max-width: 72.5em) {
  .attation .form h3 {
    text-align: start;
  }
}
.attation .form h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}
@media (max-width: 47.99875em) {
  .attation .form h4 {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 20px;
  }
}
@media (max-width: 72.5em) {
  .attation .form .form__bottom {
    flex-direction: column-reverse;
    align-items: start;
    gap: 20px;
  }
  .attation .form .form__bottom .btn {
    width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .attation .form .btn {
    flex: 0 0 auto;
  }
}
.attation .form._watcher-view {
  opacity: 1;
  transform: translateX(0px);
}

.doctors {
  position: relative;
}
@media (max-width: 47.99875em) {
  .doctors h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    text-align: center;
    color: #393939;
  }
}
.doctors::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 550px;
  height: 398px;
  border-radius: 134px;
  display: block;
  filter: blur(250.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
@media (max-width: 72.5em) {
  .doctors::after {
    right: -50%;
  }
}
@media (max-width: 47.99875em) {
  .doctors::after {
    width: 237px;
    height: 172px;
    right: auto;
    left: -10%;
    filter: blur(150px);
    background: #ffcc49;
    transform: rotate(32deg);
    opacity: 0.82;
    top: 100px;
  }
}
.doctors::before {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 250px;
  height: 150px;
  border-radius: 134px;
  display: block;
  filter: blur(100.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
@media (max-width: 72.5em) {
  .doctors::before {
    left: -50%;
    width: 465px;
    height: 337px;
  }
}
@media (max-width: 47.99875em) {
  .doctors::before {
    filter: blur(200px);
    background: #ffcc49;
    transform: rotate(32deg);
    opacity: 0.82;
    right: -10%;
    left: auto;
  }
}
.doctors__slider-inner {
  position: relative;
}
.doctors__slider {
  max-width: calc(100% - 284px);
  padding-bottom: 50px !important;
}
@media (max-width: 47.99875em) {
  .doctors__slider {
    max-width: calc(100% - 142px);
  }
}
@media (max-width: 47.99875em) {
  .doctors__slider {
    max-width: 100%;
  }
}
.doctors__inner {
  display: flex;
  gap: 120px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 85.3125em) {
  .doctors__inner {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
@media (max-width: 47.99875em) {
  .doctors__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.doctors__img {
  width: 350px;
  flex: 0 0 350px;
  height: 120%;
  margin: 14px;
  border-radius: 28px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
.doctors__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 47.99875em) {
  .doctors__img {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
  }
}
.doctors__content {
  max-width: 600px;
}
.doctors__top {
  margin-bottom: 30px;
}
.doctors__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 124%;
  color: #393939;
  margin-bottom: 14px;
}
@media (max-width: 47.99875em) {
  .doctors__name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #393939;
    margin-bottom: 10px;
  }
}
.doctors__proff {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #8c8e94;
}
@media (max-width: 47.99875em) {
  .doctors__proff {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 249%;
    color: #8c8e94;
  }
}
.doctors__bottom .btn {
  margin-bottom: 14px;
  width: fit-content;
}
@media (max-width: 47.99875em) {
  .doctors__bottom .btn {
    width: 100%;
  }
}
.doctors__bottom p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 38px;
  line-height: 124%;
  text-transform: uppercase;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 47.99875em) {
  .doctors__bottom p {
    font-size: 32px;
    line-height: 155%;
  }
}
@media (max-width: 24.375em) {
  .doctors__bottom p {
    font-size: 24px;
    line-height: 196%;
  }
}
.detstvo h2 {
  max-width: 1171px;
  margin-left: auto;
  margin-right: auto;
}
.detstvo__container p {
  margin-bottom: 65px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 107%;
  color: #393939;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .detstvo__container p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 178%;
    color: #393939;
    margin-bottom: 30px;
  }
}
.detstvo__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.detstvo__inner p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 107%;
  color: #393939;
  margin-bottom: 0;
}
@media (max-width: 47.99875em) {
  .detstvo__inner p {
    font-size: 16px;
    line-height: 178%;
    text-align: center;
  }
}
@media (max-width: 47.99875em) {
  .detstvo__inner {
    gap: 10px;
  }
}
.detstvo__item {
  flex: 0 0 calc(33.33% - 20px);
  border-radius: 20px;
  padding: 25px 40px;
  background: #fff7e5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 72.5em) {
  .detstvo__item {
    flex: 0 0 calc(50% - 20px);
    padding: 25px 40px;
  }
}
@media (max-width: 47.99875em) {
  .detstvo__item {
    flex: 0 0 100%;
    padding: 25px 40px;
  }
}
.detstvo__item:nth-of-type(odd) {
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: translateX(-50px);
}
.detstvo__item:nth-of-type(even) {
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: translateX(50px);
}
.detstvo__item._watcher-view {
  opacity: 1;
  transform: translateX(0px);
}

.sovet {
  position: relative;
}
.sovet::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 550px;
  height: 398px;
  border-radius: 134px;
  display: block;
  filter: blur(401.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
@media (max-width: 72.5em) {
  .sovet::after {
    right: -50%;
  }
}
@media (max-width: 47.99875em) {
  .sovet::after {
    width: 237px;
    height: 172px;
    right: auto;
    left: -10%;
    filter: blur(200px);
    background: #ffcc49;
    transform: rotate(32deg);
    opacity: 0.82;
    top: 100px;
  }
}
.sovet::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 550px;
  height: 398px;
  border-radius: 134px;
  display: block;
  filter: blur(401.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
@media (max-width: 72.5em) {
  .sovet::before {
    left: -50%;
    width: 465px;
    height: 337px;
  }
}
@media (max-width: 47.99875em) {
  .sovet::before {
    filter: blur(200px);
    background: #ffcc49;
    transform: rotate(32deg);
    opacity: 0.82;
    right: -10%;
    left: auto;
  }
}
.sovet h2 {
  text-align: start;
  margin-bottom: 90px;
}
@media (max-width: 72.5em) {
  .sovet h2 {
    margin-bottom: 151px;
  }
}
@media (max-width: 47.99875em) {
  .sovet h2 {
    margin-bottom: 40px;
  }
}
.sovet__container {
  position: relative;
  z-index: 2;
}
.sovet__inner {
  display: flex;
  gap: 50px;
  padding-bottom: 87px;
}
@media (max-width: 72.5em) {
  .sovet__inner {
    padding-bottom: 41px;
  }
}
@media (max-width: 47.99875em) {
  .sovet__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.sovet__content {
  max-width: 900px;
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: translateX(-50px);
}
.sovet__content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 158%;
  color: #393939;
}
.sovet__content p:nth-of-type(1) {
  margin-bottom: 30px;
}
.sovet__content p:nth-of-type(2) {
  font-weight: 600;
}
@media (max-width: 47.99875em) {
  .sovet__content p {
    font-size: 18px;
  }
}
.sovet__content._watcher-view {
  opacity: 1;
  transform: translateX(0px);
}
.sovet__vrach {
  display: flex;
  align-items: end;
  position: relative;
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: translateX(50px);
}
.sovet__vrach::after {
  content: "";
  position: absolute;
  width: 323px;
  height: 446px;
  bottom: -35px;
  background: url(../img/vrach.png) center bottom/contain no-repeat;
}
@media (max-width: 72.5em) {
  .sovet__vrach::after {
    bottom: -41px;
  }
}
@media (max-width: 47.99875em) {
  .sovet__vrach::after {
    width: 358px;
    height: 463px;
    bottom: 31px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }
}
@media (max-width: 47.99875em) {
  .sovet__vrach {
    padding-top: 393px;
    width: 100%;
  }
}
.sovet__vrach._watcher-view {
  opacity: 1;
  transform: translateX(0px);
}
.sovet__text {
  z-index: 2;
  border-radius: 27px;
  width: 250px;
  padding: 10px;
  background: #fff;
  position: relative;
  margin-bottom: -100px;
}
@media (max-width: 72.5em) {
  .sovet__text {
    margin-bottom: -41px;
  }
}
@media (max-width: 47.99875em) {
  .sovet__text {
    margin-bottom: 0;
  }
}
.sovet__text::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 27px;
  padding: 2px;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.sovet__text p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #393939;
}
.sovet__text p:nth-of-type(1) {
  margin-bottom: 6px;
}
.sovet__text p:nth-of-type(2) {
  font-weight: 400;
}
@media (max-width: 47.99875em) {
  .sovet__text {
    width: 100%;
  }
}

.quiz {
  position: relative;
}
.quiz::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 550px;
  height: 398px;
  border-radius: 134px;
  display: block;
  filter: blur(250.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
@media (max-width: 72.5em) {
  .quiz::after {
    right: -50%;
  }
}
@media (max-width: 47.99875em) {
  .quiz::after {
    width: 237px;
    height: 172px;
    right: auto;
    left: -10%;
    filter: blur(150px);
    background: #ffcc49;
    transform: rotate(32deg);
    opacity: 0.82;
    top: 100px;
  }
}
.quiz::before {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 250px;
  height: 150px;
  border-radius: 134px;
  display: block;
  filter: blur(100.033996582px);
  background: #ffcc49;
  transform: rotate(32deg);
  opacity: 0.82;
  z-index: -1;
}
@media (max-width: 72.5em) {
  .quiz::before {
    left: -50%;
    width: 465px;
    height: 337px;
  }
}
@media (max-width: 47.99875em) {
  .quiz::before {
    filter: blur(200px);
    background: #ffcc49;
    transform: rotate(32deg);
    opacity: 0.82;
    right: -10%;
    left: auto;
    width: 237px;
    height: 172px;
  }
}
.quiz__container {
  position: relative;
  z-index: 2;
}
.quiz__container::after {
  content: "";
  position: absolute;
  bottom: -114px;
  right: -232px;
  display: block;
  background: url(../img/instrument.png) center/contain no-repeat;
  width: 333px;
  height: 705px;
}
@media (max-width: 72.5em) {
  .quiz__container::after {
    position: absolute;
    bottom: -78px;
    right: -165px;
    display: block;
    background: url(../img/instrument.png) center/contain no-repeat;
    width: 299px;
    height: 680px;
  }
}
@media (max-width: 47.99875em) {
  .quiz__container::after {
    width: 133px;
    height: 322px;
    right: -20px;
    bottom: 487px;
    z-index: -1;
  }
}
@media (max-width: 24.375em) {
  .quiz__container::after {
    bottom: 1710px;
  }
}
.quiz h2 {
  margin-bottom: 60px;
}
@media (max-width: 47.99875em) {
  .quiz h2 {
    margin-bottom: 40px;
  }
}
.quiz h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 107%;
  color: #393939;
}
@media (max-width: 47.99875em) {
  .quiz h3 {
    margin-bottom: 40px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 178%;
    color: #393939;
  }
}
.quiz__inner-items {
  display: flex;
  gap: 46px;
  align-items: center;
  flex-wrap: wrap;
}
.quiz__inner-items:not(:last-of-type) {
  margin-bottom: 46px;
}
@media (max-width: 72.5em) {
  .quiz__inner-items {
    gap: 40px;
  }
}
@media (max-width: 47.99875em) {
  .quiz__inner-items {
    gap: 20px;
  }
}
@media (max-width: 47.99875em) {
  .quiz__inner-items:nth-of-type(2) {
    flex-direction: row-reverse;
    justify-content: start;
  }
}
@media (max-width: 24.375em) {
  .quiz__inner-items:nth-of-type(2) {
    flex-direction: column;
  }
}
.quiz__inner-items input {
  display: block;
  width: 100%;
  border-radius: 40px;
  padding: 15px 20px;
  flex: 0 0 calc(33.33% - 33px);
  background: #fff7e5;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  outline: none;
}
.quiz__inner-items input::placeholder {
  color: #8c8e94;
}
@media (max-width: 72.5em) {
  .quiz__inner-items input {
    flex: 0 0 calc(33.33% - 33px);
  }
}
@media (max-width: 47.99875em) {
  .quiz__inner-items input {
    flex: 0 0 100%;
    font-weight: 500;
    font-size: 14px;
  }
}
.quiz__inner-items .checkbox {
  flex: 0 0 427px;
  border: 1px solid #fdecc5;
  border-radius: 18px;
  padding: 23px;
  margin-bottom: 0;
}
.quiz__inner-items .checkbox .checkbox__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #8c8e94;
}
.quiz__inner-items .checkbox .checkbox__label:before {
  content: "";
  align-self: flex-start;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  inset: -0.5px;
  border-radius: 5px;
  padding: 1px;
  background: linear-gradient(46deg, #ff5700 0%, #ffb43a 41.15%, #ffcc49 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.quiz__inner-items .checkbox .checkbox__input:checked + .checkbox__label:before {
  background: url(../img/chek-float.png) center/contain no-repeat;
  mask: none;
}
@media (max-width: 72.5em) {
  .quiz__inner-items .checkbox {
    flex: 0 0 calc(33.33% - 27px);
  }
}
@media (max-width: 47.99875em) {
  .quiz__inner-items .checkbox {
    padding: 18px;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 24.375em) {
  .quiz__inner-items .checkbox {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .quiz__inner-items .btn {
    flex: 0 0 134px;
  }
}
@media (max-width: 24.375em) {
  .quiz__inner-items .btn {
    flex: 0 0 auto;
    width: 100%;
  }
}

.videos h2 {
  max-width: 962px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media (max-width: 47.99875em) {
  .videos h2 {
    margin-bottom: 30px;
  }
}
.videos__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 47.99875em) {
  .videos__inner {
    flex-wrap: wrap;
  }
}
.videos__item {
  flex: 0 0 calc(50% - 20px);
}
.videos__item p {
  padding: 0 45px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 107%;
  color: #393939;
}
@media (max-width: 47.99875em) {
  .videos__item p {
    font-size: 16px;
    line-height: 130%;
    padding: 0;
  }
}
@media (max-width: 47.99875em) {
  .videos__item {
    flex: 0 0 100%;
  }
}
.videos__video {
  margin-bottom: 30px;
  background: #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 47.99875em) {
  .videos__video {
    margin-bottom: 20px;
  }
}

.videos__footer {
  margin: 1.5rem 0;
  display: none;
}
@media (max-width: 47.99875em) {
  .videos__footer {
    display: flex;
    justify-content: center;
  }
  .videos__item {
    display: none;
  }
  /* first 3 elm */
  .videos__item:nth-child(-n+3) {
    display: block;
  }
}



.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "";
  background: url(../img/play.png) center/contain no-repeat;
}
@media (max-width: 47.99875em) {
  .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    background: url(../img/play-mob.png) center/contain no-repeat;
  }
}

.video-js .vjs-big-play-button {
  height: 88px;
  width: 70px;
  cursor: pointer;
  opacity: 1;
  border: 0 solid #fff;
  background-color: transparent;
  background-color: transparent;
  border-radius: 0;
  margin-top: -44px;
  margin-left: -35px;
}
@media (max-width: 47.99875em) {
  .video-js .vjs-big-play-button {
    height: 52px;
    width: 42px;
    margin-top: -26px;
    margin-left: -21px;
  }
}
.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

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

.swiper-button-lock {
  display: none !important;
}
/**
 * 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, 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");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #393939;
}

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

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

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

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

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

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

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

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

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

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

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  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 {
  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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  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 {
  scroll-snap-type: x mandatory;
}

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  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 {
  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: 71px;
  height: 71px;
  margin-top: -30px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: 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 {
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
  background: url(../img/arrow-desc.svg) center/contain no-repeat;
  width: 24px;
  height: 42px;
}

@media (max-width: 767.8px) {
  .swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 100%;
    width: 60px;
    height: 20px;
  }

  .swiper-button-next:after,
.swiper-button-prev:after {
    background: url(../img/arrow-mob.svg) center/contain no-repeat;
    width: 60px;
    height: 20px;
  }
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0px;
  right: auto;
}

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

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0px;
  left: auto;
  transform: rotate(180deg);
}

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

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  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 {
  transform: scale(0.33);
  position: relative;
}

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

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  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, #ededed);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-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%;
  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%;
  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;
  transition: 0.2s transform, 0.2s top;
}

.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%;
  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 {
  transition: 0.2s transform, 0.2s left;
}

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

.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%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  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: flex;
  justify-content: 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%;
  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;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  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;
}

@keyframes swiper-preloader-spin {
  100% {
    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 {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

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

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

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

.swiper-fade .swiper-slide {
  pointer-events: none;
  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;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

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

.swiper-cube.swiper-rtl .swiper-slide {
  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;
  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;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
@font-face {
  font-family: "lg";
  src: url(data:font/woff2;base64,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) format("woff2"), url(data:font/woff;base64,d09GRgABAAAAABLgAAsAAAAAEpQAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIGIGNtYXAAAAFoAAAApAAAAKSI7DN0Z2FzcAAAAgwAAAAIAAAACAAAABBnbHlmAAACFAAADjgAAA44V8bBEWhlYWQAABBMAAAANgAAADYbqSuuaGhlYQAAEIQAAAAkAAAAJAeuA91obXR4AAAQqAAAAHAAAABwZgALDmxvY2EAABEYAAAAOgAAADonfiQgbWF4cAAAEVQAAAAgAAAAIAAmAI5uYW1lAAARdAAAAUoAAAFKqFVCHnBvc3QAABLAAAAAIAAAACAAAwAAAAMD7AGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6QoDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAIgAAAAeABAAAwAOAAEAIOAa4B3gM+Bw4JXg8uH/4g3jEugN6Qr//f//AAAAAAAg4BrgHeAz4HDglODy4f/iDOMR6A3pAP/9//8AAf/jH+of6B/TH5cfdB8YHgweABz9GAMXEQADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAAEAFYAAQOqA1UAAwATACMAJwAAAREzEQcyNzY1NCcmIyIHBhUUFxYTMhcWFRQHBiMiJyY1NDc2ExEzEQIqVoCMZWVlZYyMZWVlZYywfX19fbCwfX19fTBWAQEBVP6srGVljIxlZWVljIxlZQMAfX2wsH19fX2wsH19/awBVP6sAAMAVgABA6oDVQAPAB8AIgAAJTI3NjU0JyYjIgcGFRQXFhMyFxYVFAcGIyInJjU0NzYTEQUCAIxlZWVljIxlZWVljLB9fX19sLB9fX19WgEAVWVljIxlZWVljIxlZQMAfX2wsH19fX2wsH19/ZYBgMAAAAAAAwBVAAADqwNVABQAKQA+AAABITIXFhURFAcGIyEiJyY1ETQ3NjMHERQXFjMhBgcGIyEiJyY1ETQ3NjclISIHBhURFBcWMyEyNzY1ETQnJiMBgAGrNSUmJiU1/lU1JiUlJjXVDA0RAiQOISEp/lU1JSYYGCYCgP5VEgwNDQwSAasRDQwMDREDVSUmNf5WNSYlJSY1Aao1JiWy/d0SDA0lGBgmJTUBqykhIQ1dDA0S/lYSDQwMDRIBqhIMDQABANYAgQMqAtUACwAAAQcXBycHJzcnNxc3Ayru7jzu7jzu7jzu7gKZ7u487u487u487u4AAQBVAFUDqwMAACIAAAEyFxYVFA8BITIXFhUUBwYjIRcWFRQHBiMiJwEmNTQ3ATYzAasRDQwM4gKZEgwNDQwS/WfiDAwNERIN/tYNDQEqDRIDAAwNEhIM4gwNERINDOIMEhIMDQ0BKg0SEQ0BKwwAAAEAVQBVA6sDAAAiAAABMhcBFhUUBwEGIyInJjU0PwEhIicmNTQ3NjMhJyY1NDc2MwJVEg0BKg0N/tYNEhIMDAzi/WcSDA0NDBICmeIMDAwSAwAM/tUMEhIN/tYNDQwSEgziDQwSEQ0M4gwSEwwMAAACAKoAKwNWAysAAwAKAAA3IRUhAQcnMxEzEaoCrP1UAgCqqoBUgVYBVqysAar+VgAJAKoAVQNWAwEAAwAHAAsADwATABcAGwAfACMAACU1MxUDNTMVATUzFTczFSMBNTMVITUzFQM1MxUzNTMVATUzFQKqrKys/lSsVKys/wCs/lSsrKxUrP5UrFWsrAEArKwBAKysrKz/AKysrKz/AKysrKwCAKysAAAEANYAgQMqAtUABQALABEAFwAAATMVIzUjEzUzFSM1ATUzFSMVHQEzFSM1AlbUVICAVNT+gNSAgNQC1dSA/lSA1FQBLNRUgKyAVNQABADWAIEDKgLVAAUACwARABcAAAEzFSM1MwM1MxUjFQE1MxUjNRE1MxUjNQKqgNRUVNSA/qxU1NRUAlVU1P2s1FSAAdSA1FT+rFTUgAAAAAADAIAAQQNqAysACwAbADIAAAEjFSM1IzUzNTMVMwcyNzY1NCcmIyIHBhUUFxYhFwcnNScGIyInJjU0NzYzMhcWFRQHFwIAVipWVipWalA4ODg4UFA4ODg4AVDUQNQMTGh0UVFRUXR0UFBCDAIBVlYqVlbWODhQUDg4ODhQUDg41EDUIgxCUFB0dFFRUVF0aEwMAAAAAwCAAEEDagMrAAMAEwAqAAABMxUjFzI3NjU0JyYjIgcGFRQXFiEXByc1JwYjIicmNTQ3NjMyFxYVFAcXASrW1mxQODg4OFBQODg4OAFQ1EDUDExodFFRUVF0dFBQQgwCKyqsODhQUDg4ODhQUDg41EDUIgxCUFB0dFFRUVF0aEwMAAAAAQCAAAMDgANVADMAACUyFhUUBiMiJjU8ATclDgEjIiY1NDYzMhYXJS4BNTQ2MzIWFRQGIyImJwUeARUUBgcFPgEDADNJSTMzSQL+0hIsGjRMSzUZLRIBLAEDSzU0TEs1GS0S/tQBAwICATAQLP1JMzNLSzMHDwawERFLNTRMEhCuBw8INExMNDVLExGwCA8HCA8HsA8RAAAEAK4AWQNWA4EAFAAaACAAJgAAARYXFhUUBwYHNTY3NjU0JyYnFSc3AzcWFxUmAxYXByYnNwYHIzY3Aip+V1dXV35cPT09PVzCwvw+LjxgcgogPDgMgiQIVgw6Av0QYGCCgmBgEFYQR0deXkdHEKa+wv0cPiIKVgwBHDowPEpcvjQ2WkwAAAAABACqAFkDUgOBAAUACwARACYAAAE2NzMGBwc2NxcGBwEjJic3FicHNQYHBhUUFxYXFSYnJjU0NzY3NQLQIgpWDDjkPC4+SGABKFYKIj46sMJcPT09PVx+V1dXV34BFy48XEosCiI+OAwBfDwuPEiMvqYQR0deXkdHEFYQYGCCgmBgEIQAAgCAAIEDgALVAAYADQAAAQc1ITUhNQEVIRUhFScDgKr+1AEs/lQBLP7UqgIrqoBUgP8AgFSAqgACANYAKwMqAysABgANAAABFyMRIxEjATMHJzMRMwGAqoBUgAHUgKqqgFQDK6r+1AEs/lSqqgEsAAIAFP/hA+wDuAAcADEAAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjEyMiBh0BMwcjFSM1IzUzNTQ2OwEVAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWZ0SQcMXA1PV09PPC5JA7gmJ4VaWWZmWlmFJycnJ4VZWmZmWVqFJyb+rRALNkzk5EwtMEVRAAUAFP/hA+wDuAAcAFYAYgB1AIsAAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjAw4BIyoBMTAiIyImNTQ2OwEuATEqASMiJicuATU0NjczFRQGBw4BBx4BFRQGBw4BFRQWFx4BFRQGByUjFSM1IzUzNTMVMwUqASMOAQcOARUeATc+AScuASM3LgEjKgEHDgEHDgEXHgEzOgE3PgEnAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWYcFy0JAgICAQ9pdRkBDgEBBAIKIBATE3cBdxwMBA4CFwwVDQkLDwsQJR4eAQJMNExMNEz+vwIEAhEfCwsLAjQjIysCAikhLQoeGAIFAwoPBQQBBAcjEwIFAxUWCQO4JieFWllmZlpZhScnJyeFWVpmZllahScm/UILBhxEQx0TIQUKDCodUh8BAwoHAQEBAgwnHCAlDAgNBwgQCQ8rIyMzDtNNTTNNTW4CDAoLGQ0bHQIDJRsZI8YgGAEDEA0NGg8bIwEGNx8AAAACABT/4QPsA7gAHABRAAABIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmIxMuAScOAQcmNjcmNhcWBw4BBwYXFjc+AScmJyYnJgYHBhceAQcuATc+ATc2FhcWBw4BBwYnAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWYiGBsTCiAlDCYOFyovHAUFFQICJCYaGhcFBRciLS1NGBkIBBwSLB8CA2xAUoQLBgkJKyEiKwO4JieFWllmZlpZhScnJyeFWVpmZllahScm/aACFAs1XxtRgUAmaxMLHx9DHR0HBxsbUSsrGCIDAykoJzEYHSEKQC1LYQcJS0wsKitDFBMDAAAAAAIAFP/hA+wDuAAcAF4AAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjExwBFRQHDgEHBiMiJicyFjMyNjcuASceATMyNjcuAT0BHgEXLgE1NDY3HgEXLgE1NDYzMhYXPgE3DgEHPgE3DgEHAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWbIEhJGMzNDKUshBgwGIj0ZIDEKBQkEBw0GIS0KFgwTGAcGJGc9AgE5KBUkDhAfDgUWDw4cDQkZDgO4JieFWllmZlpZhScnJyeFWVpmZllahScm/m4DBwMwMTFPGRkXFAEWEwEmHQEBAgEHNSMBBQYBDSsZDRkLLDcDBgsFKDkQDgMMCBEbCgIIBg8ZCgAAAAACAFgAAgOrA1UALgBWAAABNTwBNS4BJy4BJzAiMSMmBgcOAQcOARUUFhcHBhQXHgE/AR4BMzI2Nz4BNz4BNSMUBgcOAQcOASMiJicuAQ8BNzYmJy4BNTQ2Nz4BNz4BOwEeARceARcDqwU7MTOKUAIVLV0sJ0QbKjAREksDAwUgEeIlVC0sVSc9ZCEUF1YREBpPMR9DIydIHwgRCKM3AgEEEhAmIRY1ICJJIxM/bSgnLwMBwBUBAQFLhDM1QgQBFRcUNiI0gkgoVCnjBg4HEQ8FTBESExIcXkAoXTEnSR8zSxYODxIQBAEDNqIJEQcjSSM5ZikbKxASEAM0KihoOwAAAgBVAAADqwNVACYAQQAAAQcGFBcWMj8BFRQWMzI2NRE0JicuASc4ATEuAScuASMhIgYVFBYzATc2NCcmIg8BNTQmIyIGFREUFjMhMjY1NCYjAxniDAwNIwziGRISGQICAQUDAwcEAwkE/wASGRkS/mfiDAwNIwziGRISGRkSAQASGRkSAwDiDCQMDQ3imRIZGRIBAAQIBAQHAwMEAgIBGRESGf1V4g0jDA0N4ZkRGRkR/wASGRkSERkAAAACAGIADAOeA0kAJgBOAAABNzY0JyYiDwE1NCYjIgYVERQWFx4BFzgBMR4BFx4BMyEyNjU0JiMBNxUUFjMyNjURNCYnLgEnMDQxLgEnLgEjISIGFRQWOwEHBhQXFjI3ArziDQ0MJAziGRIRGQECAQUDAwcEBAgEAQASGRkS/UniGRIRGQECAQUDAwcEBAgE/wASGRkSmeINDQwkDAIr4gwjDQwM4pkSGRkS/wAECQMEBwMDBQECAhkSEhn94uGZERkZEQEABQgEAwcDAQMEAgECGRIRGeINIw0MDAAAAQAAAAIAAKwEdEFfDzz1AAsEAAAAAADcTnOMAAAAANxOc4wAAP/hA+wDuAAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAD7AABAAAAAAAAAAAAAAAAAAAAHAQAAAAAAAAAAAAAAAIAAAAEAABWBAAAVgQAAFUEAADWBAAAVQQAAFUEAACqBAAAqgQAANYEAADWBAAAgAQAAIAEAACABAAArgQAAKoEAACABAAA1gQAABQEAAAUBAAAFAQAABQEAABYBAAAVQQAAGIAAAAAAAoAFAAeAF4AmAD2ARABSAGAAZgB1AH6AiICbAKuAvoDPgOAA5wDuAQABMIFRAXQBlAGrgccAAAAAQAAABwAjAAJAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAIAAAABAAAAAAACAAcAgQABAAAAAAADAAIAdQABAAAAAAAEAAIAlgABAAAAAAAFAAsAVAABAAAAAAAGAAIAewABAAAAAAAKABoABgADAAEECQABAAQAAgADAAEECQACAA4AiAADAAEECQADAAQAdwADAAEECQAEAAQAmAADAAEECQAFABYAXwADAAEECQAGAAQAfQADAAEECQAKADQAIGxnAGwAZ0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALlZlcnNpb24gMi4wAFYAZQByAHMAaQBvAG4AIAAyAC4AMGxnAGwAZ2xnAGwAZ1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmxnAGwAZwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
}
.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}
.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}
.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}
.lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  box-shadow: none;
}
.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}
.lg-toolbar .lg-icon:hover {
  color: #fff;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-maximize {
  font-size: 22px;
}
.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  -o-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}
.lg-sub-html a {
  color: inherit;
}
.lg-sub-html a:hover {
  text-decoration: underline;
}
.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -moz-transition: -moz-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -moz-transform: scale3d(0.5, 0.5, 0.5);
  -o-transform: scale3d(0.5, 0.5, 0.5);
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}
.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}
.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}
.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lg-outer.lg-zoom-from-image {
  opacity: 1;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  -o-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}
.lg-outer .lg-item {
  will-change: transform, opacity;
  display: none !important;
}
.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url(data:image/gif;base64,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) no-repeat scroll center center transparent;
}
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}
.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}
.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}
.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  -o-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}
.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-container {
  display: none;
}
.lg-container.lg-show {
  display: block;
}
.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}
.lg-inline .lg-backdrop {
  z-index: 1;
}
.lg-inline .lg-outer {
  z-index: 2;
}
.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  -moz-transition: -moz-transform 0.35s ease-out 0s;
  -o-transition: -o-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}


/* Кнопка Чат в телеграм */
.chat-telegram {
    position: fixed;
    bottom: 16px;
    right: 125px;
    z-index: 99;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;

    font-size: 14px;

    padding: 4px;
    background: #FFFFFF;
    border: 2px solid #2298D5;
    color: #2298D5;
    border-radius: 10px;

    transition: all 0.3s;
}
.chat-telegram:hover {
    box-shadow: 0 0 10px 0 #30A8DE;
}

.chat-telegram__icon {
    display: block;
}
.chat-telegram__text {
    text-align: center;
    color: #2298D5;
    padding: 0 12px;
    font-weight: 500;
}
@media only screen and (max-width: 575px) {
    .chat-telegram {
        flex-direction: column-reverse;
        right: 2px;
        top: 50%;
        transform: translate(0px, -50%);
        bottom: inherit;
    }
    .chat-telegram__text {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        display: block;
        text-orientation: mixed;
        padding: 12px 0;
    }

}