@charset "UTF-8";
@font-face {
  font-family: Mont;
  font-display: swap;
  src: url("../fonts/Mont-Black.woff2") format("woff2"),
    url("../fonts/Mont-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: Monda;
  font-display: swap;
  src: url("../fonts/Monda-Regular.woff2") format("woff2"),
    url("../fonts/Monda-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Oswald;
  font-display: swap;
  src: url("../fonts/Oswald-Light.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: OswaldLight;
  font-display: swap;
  src: url("../fonts/Oswald-Light.ttf") format("ttf");
  font-weight: 550;
  font-style: normal;
}
@font-face {
  font-family: OswaldVarBold;
  font-display: swap;
  src: url("../fonts/Oswald-VariableFont_wght.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: OswaldBold;
  font-display: swap;
  src: url("../fonts/Oswald-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: OswaldMedium;
  font-display: swap;
  src: url("../fonts/Oswald-Medium.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: OswaldSemiBold;
  font-display: swap;
  src: url("../fonts/Oswald-SemiBold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: OswaldBold;
  font-display: swap;
  src: url("../fonts/Oswald-SemiLight.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

body {
  color: #ffffff;
  line-height: 1.3;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000000;
}

input,
button,
textarea {
  font-family: "Source Sans 3", sans-serif;
  font-size: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: inherit;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}
.menu-open body .header__nav {
  transform: translateX(0);
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

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

@media (max-width: 80em) {
  [class*="__container"] {
    max-width: 1000px;
  }
}

@media (max-width: 525px) {
  [class*="__container"] {
    padding: 0 20px;
  }
}

.container-small {
  max-width: 1280px;
}

.container--big {
  max-width: 1920px;
  padding: 0;
}

@media (max-width: 80em) {
  .container-small {
    max-width: 1080px;
  }
}

@media (max-width: 972px) {
  .container--big {
    padding: 0 40px;
  }
}

@media (max-width: 525px) {
  .container--big {
    padding: 0 20px;
  }
}

.checkbox {
  position: relative;
}
.checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
  background-color: #eb7605;
  background-image: url("../img/icons/check-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.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 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #eb7605;
}
.checkbox__text {
  font-size: 14px;
}
.checkbox__text a {
  text-decoration: underline;
}
.checkbox--small .checkbox__input:checked + .checkbox__label:before {
  background-size: 8px 6px;
}
.checkbox--small .checkbox__label:before {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.select {
  position: relative;
  font-size: 14px;
}
.select__body {
  position: relative;
}
.select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
}
.select__value {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 20px;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.select__value:before {
  content: "";
  flex: 0 0 10px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 5px;
  background-repeat: no-repeat;
  background-image: url("../img/icons/more.svg");
}
._select-open .select__value:before {
  transform: rotate(-180deg);
}
.select__text {
  flex: 1 1 auto;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: 30px;
  padding: 8px 12px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #363535;
  border-radius: 4px;
}
.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}
.select__option {
  width: 100%;
  display: block;
  text-align: left;
  cursor: pointer;
  color: inherit;
  text-transform: uppercase;
  line-height: 1.4;
}
.select__option:not(:last-child) {
  margin-bottom: 4px;
}
.select__option._select-selected {
  color: #eb7605;
}
@media (any-hover: hover) {
  .select__option:hover {
    color: #eb7605;
  }
}
.select__row {
  display: inline-flex;
  align-items: center;
}
.select._select-open {
  z-index: 5;
}
._select-tag {
  cursor: pointer;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3fb8af;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  cursor: default;
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}

.noUi-active {
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #e8e7e6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

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

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

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}
.popup--gallery {
  padding: 5px;
}
.popup--gallery .popup__content {
  max-width: 1200px;
  padding: 64px 115px;
  background-color: #1b1b1b;
}
@media (max-width: 80em) {
  .popup--gallery .popup__content {
    max-width: 945px;
  }
}
@media (max-width: 60.75em) {
  .popup--gallery .popup__content {
    padding: 48px 80px;
  }
}
@media (max-width: 39.375em) {
  .popup--gallery .popup__content {
    padding: 40px 14px;
  }
}
.popup--gallery .popup__text {
  position: relative;
}
@media (max-width: 39.375em) {
  .popup--gallery .popup__close {
    top: 14px;
    right: 14px;
  }
}
.popup--city {
  padding: 165px 0 0 0;
  background-color: transparent;
  transition: none;
}
.popup--city .popup__wrapper {
  background-color: #000000;
}
.popup--city .popup__close {
  top: 19px;
}
@media (max-width: 47.99875em) {
  .popup--city .popup__close {
    top: 46px;
    right: 25px;
  }
}
@media (max-width: 39.375em) {
  .popup--city .popup__close {
    top: 37px;
  }
}
.popup--city .city__title {
  margin-bottom: 40px;
}
@media (max-width: 39.375em) {
  .popup--city .city__title {
    margin-bottom: 30px;
  }
}
.popup--city .city__search {
  position: relative;
  margin-bottom: 50px;
  max-width: 690px;
  width: 100%;
}
.popup--city .city__search::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 19px;
  height: 19px;
  background-image: url("../img/icons/zoom.svg");
  content: "";
}
@media (max-width: 47.99875em) {
  .popup--city .city__search {
    max-width: 100%;
  }
}
.popup--city .city__input {
  width: 100%;
  padding: 12px 45px 12px 16px;
  font-size: 16px;
  background-color: #363535;
  border: 1px solid transparent;
  border-radius: 2px;
  color: #a8a8a8;
  outline: transparent;
  transition: border-color 0.3s ease;
}
.popup--city .city__input::placeholder {
  color: #a8a8a8;
}
.popup--city .city__input:focus {
  border-color: #eb7605;
}
.popup--city .popup__content {
  flex-grow: 1;
  max-width: 100%;
}
.popup--city .city__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 120px;
}
@media (max-width: 80em) {
  .popup--city .city__list {
    gap: 35px 60px;
  }
}
@media (max-width: 60.75em) {
  .popup--city .city__list {
    gap: 35px;
  }
}
@media (max-width: 47.99875em) {
  .popup--city .city__list {
    padding-bottom: 50px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 39.375em) {
  .popup--city .city__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 29.99875em) {
  .popup--city .city__list {
    grid-template-columns: 100%;
    gap: 25px;
  }
}
.popup--city .city__item {
  font-size: 20px;
  line-height: 1.5;
}
.popup--city .city__item a {
  transition: color 0.3s ease;
}
.popup--city .city__item a:hover {
  color: #eb7605;
}
@media (max-width: 60.75em) {
  .popup--city .city__item {
    font-size: 18px;
  }
}
.popup--city .popup__container {
  position: relative;
}
@media (max-width: 47.99875em) {
  .popup--city .popup__container {
    padding-top: 40px;
  }
}
@media (max-width: 29.99875em) {
  .popup--city .popup__container {
    padding-top: 30px;
  }
}
@media (max-width: 76.875em) {
  .popup--city {
    padding: 105px 0 0 0;
  }
}
@media (max-width: 47.99875em) {
  .popup--city {
    padding: 70px 0 0 0;
  }
}
@media (max-width: 39.375em) {
  .popup--city {
    padding: 60px 0 0 0;
  }
}
.popup--check .popup__content {
  max-width: max-content;
  padding: 30px;
  background-color: #1b1b1b;
  line-height: 1.5;
}
@media (max-width: 29.99875em) {
  .popup--check .popup__content {
    padding: 30px 20px;
  }
}
.popup--check .check__location {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 16px;
}
.popup--check .check__location::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 24px;
  background-image: url("../img/icons/location.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
@media (max-width: 39.375em) {
  .popup--check .check__location {
    font-size: 14px;
  }
}
.popup--check .popup__close {
  top: 15px;
  right: 15px;
}
.popup--check .check__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 39.375em) {
  .popup--check .check__button {
    font-size: 12px;
  }
}
@media (max-width: 29.99875em) {
  .popup--check .check__button {
    padding: 12px 32px;
  }
}
.popup--check .check__choose {
  font-weight: 700;
  text-transform: uppercase;
  color: #eb7605;
  font-size: 14px;
}
@media (max-width: 39.375em) {
  .popup--check .check__choose {
    font-size: 12px;
  }
}

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

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

.popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  transform: scale(0);
  transition: transform 0.3s ease 0s;
  max-width: 1115px;
  width: 100%;
  border-radius: 16px;
}
.lock .popup__content {
  visibility: visible;
}
@media (max-width: 80em) {
  .popup__content {
    max-width: 945px;
  }
}

.popup__close {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 28px;
  right: 28px;
  background-size: cover;
  background-image: url("../img/icons/close-grey.svg");
}
@media (max-width: 47.99875em) {
  .popup__close {
    top: 20px;
    right: 20px;
  }
}

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

.button {
  padding: 16px 48px;
  background-color: #eb7605;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.button:hover {
  background-color: #ff8c1d;
}
.button:active {
  background-color: #000;
  color: #eb7605;
}
.button--ghost {
  color: #eb7605;
  background-color: transparent;
  border: 1px solid #eb7605;
}
.button--ghost:hover {
  color: #000000;
}

.button--ghost:active {
  color: #eb7605;
}

.button--l {
  font-size: 14px;
}
.button--m {
  font-size: 13px;
}
.button--s {
  font-size: 12px;
}

.sound-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.sound-button.active .sound-button__enable {
  display: none;
}
.sound-button.active .sound-button__disable {
  display: block;
}

.sound-button__disable {
  display: none;
}

.sound-button__icon {
  width: 16px;
  height: 16px;
}

.title {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 45px;
}

@media (max-width: 1280px) {
  .title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 35px;
  }
}

@media (max-width: 525px) {
  .title {
    font-size: 32px;
  }
}

.title--litle-20,
.title--litle-24 {
  text-transform: initial;
  font-weight: 700;
}
.title--litle-20 {
  font-size: 20px;
}
.title--litle-24 {
  font-size: 24px;
}
.title--h1 {
  font-size: 48px;
}
@media (max-width: 80em) {
  .title--h1 {
    font-size: 36px;
  }
}
@media (max-width: 47.99875em) {
  .title--h1 {
    font-size: 30px;
  }
}
.title--h2 {
  font-size: 40px;
}
@media (max-width: 80em) {
  .title--h2 {
    font-size: 36px;
  }
}
@media (max-width: 47.99875em) {
  .title--h2 {
    font-size: 24px;
  }
}
.title--h3 {
  font-size: 36px;
}
.title--h4 {
  font-size: 30px;
}
.title--h5 {
  font-size: 24px;
}
.title--h6 {
  font-size: 18px;
}

.link {
  position: relative;
  transition: color 0.3s ease;
}
.link:hover {
  color: #eb7605;
}
.link--address::before,
.link--phone::before,
.link--mail::before {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  content: "";
}
.link--location {
  padding-right: 23px;
}
.link--location::after {
  position: absolute;
  display: block;
  width: 10px;
  height: 5px;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-image: url("../img/icons/more.svg");
}
.link--address {
  padding-left: 28px;
}
.link--address::before {
  width: 19px;
  height: 24px;
  background-image: url("../img/icons/location.svg");
}
.link--phone {
  padding-left: 36px;
}
.link--phone::before {
  width: 17px;
  height: 17px;
  background-image: url("../img/icons/phone.svg");
}
.link--mail {
  padding-left: 29px;
}
.link--mail::before {
  width: 18px;
  height: 14px;
  background-image: url("../img/icons/mail.svg");
}
@media (max-width: 29.99875em) {
  .link {
    font-size: 16px;
  }
}

.detail {
  display: inline-block;
  padding-right: 34px;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 12px;
  background-image: url("../img/icons/arrow-detail.svg");
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.detail--accent {
  color: #eb7605;
  background-image: url("../img/icons/arrow-detail-accent.svg");
}

.logo {
  display: block;
}

.play-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
}

.play-btn img {
  width: 100%;
  height: 100%;
}

.play-btn__icon {
  width: 20px;
  height: 18px;
}

.tabs__navigation {
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #363535;
}

.tabs__title {
  position: relative;
  color: #4f4f4f;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.tabs__title._tab-active {
  color: #ffffff;
}
.tabs__title._tab-active::after {
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 100%;
  height: 4px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #eb7605;
  transition: background-color 0.3s ease;
  content: "";
}
@media (max-width: 29.99875em) {
  .tabs__title {
    font-size: 16px;
  }
}

.decor {
  position: relative;
}
.decor::before,
.decor::after {
  position: absolute;
  height: 291px;
  width: 291px;
  content: "";
  filter: blur(200px);
  border-radius: 50%;
}
@media (max-width: 64em) {
  .decor::before,
  .decor::after {
    display: none;
  }
}
/* .decor::before {
  background-color: #ff3c5f;
} */
/* .decor::after {
  background-color: #EB7605;
} */
.decor--bottom-left-r::before {
  bottom: 15%;
  left: -5%;
}
.decor--bottom-left-r::after {
  display: none;
}
.decor--bottom-left-r-c::before {
  bottom: 20%;
  left: -35%;
}
.decor--bottom-left-r-c::after {
  display: none;
}
.decor--top-left-r::before {
  top: -20%;
  left: -5%;
}
.decor--top-left-r::after {
  display: none;
}
.decor--top-strict-left-r::before {
  top: 0%;
  left: -5%;
}
.decor--top-strict-left-r::after {
  display: none;
}
.decor--mid-right-y::before {
  display: none;
}
.decor--mid-right-y::after {
  top: 45%;
  right: -10%;
}
.decor--top-left-y-mid-right-r::before {
  top: 45%;
  right: -10%;
}
.decor--top-left-y-mid-right-r::after {
  top: -10%;
  left: -5%;
}
.decor--bottom-left-r-mid-right-y::before {
  top: 55%;
  left: -5%;
}
.decor--bottom-left-r-mid-right-y::after {
  top: 25%;
  right: -10%;
}
.decor--top-r-y::before {
  top: -30%;
  right: -10%;
}
.decor--top-r-y::after {
  top: 0;
  left: -5%;
}
.decor--bottom-left-y-mid-right-y-c::before {
  top: 50%;
  right: -35%;
  background-color: #eb7605;
}
.decor--bottom-left-y-mid-right-y-c::after {
  top: 70%;
  left: -35%;
}
.decor--top-right-r::before {
  top: 20%;
  right: -10%;
}
.decor--top-right-r::after {
  display: none;
}
.decor--top-right-y::before {
  display: none;
}
.decor--top-right-y::after {
  top: -15%;
  right: -10%;
}
.decor--mid-left-r-top-right-y::before {
  top: 45%;
  left: -5%;
}
.decor--mid-left-r-top-right-y::after {
  top: -15%;
  right: -10%;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pagination ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 700;
}
.pagination ul a,
.pagination ul span {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.pagination ul a:hover {
  background-color: #1b1b1b;
}
.pagination ul li.active span {
  color: #000000;
  background-color: #eb7605;
}

.arrow {
  width: 24px;
  height: 24px;
  display: none;
}
.arrow--show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow--prev {
  transform: rotate(180deg);
}

.arrow__icon {
  width: 6px;
  height: 12px;
}

.product, .lesson5 {
  background-color: #1b1b1b;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 39.375em) {
  .product--news .product__info {
    padding: 24px 20px 32px;
  }
}
.product--album .product__title {
  margin-bottom: 64px;
  font-size: 18px;
}
@media (max-width: 80em) {
  .product--album .product__img {
    height: 200px;
  }
}
.product--video {
  overflow: visible;
  background-color: transparent;
}
.product--video .gallery__video {
  box-shadow: none;
  height: auto;
}
.product--video .gallery__video-slide {
  margin-bottom: 24px;
  height: auto;
}
.product--video .product__descr {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.5;
  font-family: "Mont", sans-serif;
}
.product--video img {
  border-radius: 16px;
}
@media (max-width: 80em) {
  .product--video img {
    height: 220px;
  }
}
@media (max-width: 29.99875em) {
  .product--video img {
    height: 220px;
  }
}

.product__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product__link:hover .product__detail {
  text-decoration-color: #eb7605;
}

@media (max-width: 64em) {
  .product__img {
    max-width: 100%;
  }
}
@media (max-width: 60.75em) {
  .product__img {
    height: 240px;
  }
}
@media (max-width: 29.99875em) {
  .product__img {
    height: 200px;
  }
}

.product__info {
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  padding: 24px 24px 32px;
}
@media (max-width: 64em) {
  .product__info {
    max-width: 100%;
  }
}
@media (max-width: 39.375em) {
  .product__info {
    padding: 24px 24px 32px;
  }
}

.product__date {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.product__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
}

@media (max-width: 93.75em) {
  .product__title {
    font-size: 18px;
  }
}

.product__descr {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-bottom: 32px;
  height: 77px;
}
@media (max-width: 93.75em) {
  .product__descr {
    font-size: 16px;
  }
}
@media (max-width: 39.375em) {
  .product__descr {
    font-size: 14px;
  }
}

.product__detail {
  font-size: 16px;
  margin-top: auto;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}
@media (max-width: 39.375em) {
  .product__detail {
    font-size: 12px;
  }
}

.review {
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background-color: #1b1b1b;
  border-radius: 16px;
}
@media (max-width: 29.99875em) {
  .review {
    padding: 24px 20px;
  }
}

.review__top {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 29.99875em) {
  .review__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.mini-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mini-rating .mini-rating__icon {
  width: 18px;
  height: 18px;
  fill: #4f4f4f;
}
.mini-rating li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-rating li.active .mini-rating__icon {
  fill: #eb7605;
}

.review__title {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 80em) {
  .review__title {
    font-size: 18px;
  }
}
@media (max-width: 47.99875em) {
  .review__title {
    font-size: 16px;
  }
}

.review__text {
  margin-bottom: 30px;
  /* height: 160px; */
  height:auto;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
@media (max-width: 80em) {
  .review__text {
    font-size: 16px;
  }
}
@media (max-width: 47.99875em) {
  .review__text {
    font-size: 14px;
  }
}

.review__date {
  margin-top: auto;
  text-align: right;
  font-size: 14px;
  color: #9c9c9c;
}

.user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user__avatar {
  width: 48px;
  min-width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.user__info,
.user__name {
  display: block;
}

.user__name {
  margin-bottom: 2px;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 29.99875em) {
  .user__name {
    font-size: 16px;
  }
}

.user__location {
  font-size: 12px;
  color: #9c9c9c;
}

.tags {
  display: flex;
  gap: 10px;
}

.tag {
  padding: 4px 8px;
  display: block;
  font-size: 12px;
  background-color: #363535;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.tag:hover {
  color: #eb7605;
  border-color: #eb7605;
}
@media (max-width: 29.99875em) {
  .tag {
    padding: 4px;
  }
}

.menu {
  display: flex;
  justify-content: space-between;
  gap: 10px 20px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}
.menu a,
.menu .header__menu-link > span {
  transition: color 0.3s ease;
}
.menu a:hover,
.menu .header__menu-link > span:hover {
  color: #eb7605;
  cursor: pointer;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials__link {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials__link--big {
  width: 36px;
}

.socials__icon {
  fill: #ffffff;
}

.socials__icon path {
  transition: fill 0.3s ease;
}

.socials__icon:hover path {
  fill: #eb7605;
}

.payment {
  display: flex;
  gap: 8px;
}

.payment__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 25px;
  background-color: #363535;
  border-radius: 4px;
  box-shadow: 0 0.1px 2.2px 0 rgba(0, 41, 76, 0.0078431373);
}

.payment__img {
  object-fit: cover;
}

.field {
  display: flex;
  flex-direction: column;
}
.field__label {
  margin-bottom: 6px;
  display: block;
  font-size: 16px;
}
.field__label span {
  color: #eb5757;
}
@media (max-width: 48em) {
  .field__label {
    font-size: 14px;
  }
}

.field__input,
.field__textarea {
  padding: 11px 16px;
  border: 1px solid #4f4f4f;
  background-color: #363535;
  border-radius: 2px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}
.field__input::placeholder,
.field__textarea::placeholder {
  color: #a8a8a8;
}
.field__input:focus,
.field__textarea:focus {
  border-color: #eb7605;
  outline: transparent;
}

.field__textarea {
  resize: vertical;
  min-height: 165px;
}
@media (max-width: 48em) {
  .field__textarea {
    min-height: 106px;
  }
}

.form__error {
  margin-top: 6px;
  color: #eb5757;
  font-size: 14px;
}

.checkbox__text {
  line-height: 1.5;
}
@media (max-width: 48em) {
  .checkbox__text {
    font-size: 12px;
  }
}

.breadcrumbs {
  font-size: 14px;
  line-height: 1.4;
}
.breadcrumbs ul {
  display: flex;
  gap: 10px;
}
.breadcrumbs li:not(:last-child) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumbs li:not(:last-child)::after {
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background-size: 6px 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/icons/next.svg");
}
@media (max-width: 29.99875em) {
  .breadcrumbs li:not(:last-child) {
    display: none;
  }
}
.breadcrumbs a {
  color: #4f4f4f;
  transition: color 0.3s ease;
}
.breadcrumbs a:hover {
  color: #eb7605;
}
.breadcrumbs span {
  color: #a8a8a8;
}
@media (max-width: 29.99875em) {
  .breadcrumbs span {
    font-size: 12px;
  }
}
@media (max-width: 29.99875em) {
  .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.breadcrumbs__backlink {
  display: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}
@media (max-width: 29.99875em) {
  .breadcrumbs__backlink {
    display: flex;
  }
}

.breadcrumbs__icon {
  width: 4px;
  height: 8px;
  fill: #4f4f4f;
}

.card {
  background-color: #1b1b1b;
  border-radius: 16px;
}

.guide {
  display: flex;
  gap: 40px;
  padding: 48px 64px 52px;
}
@media (max-width: 80em) {
  .guide {
    padding: 48px;
  }
}
@media (max-width: 48em) {
  .guide {
    flex-direction: column;
    padding: 32px;
    gap: 30px;
  }
}
@media (max-width: 39.375em) {
  .guide {
    padding: 32px 20px;
  }
}

.guide__promo {
  width: 280px;
  flex: none;
}
@media (max-width: 48em) {
  .guide__promo {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
  }
}
@media (max-width: 39.375em) {
  .guide__promo {
    flex-direction: column;
    align-items: flex-start;
  }
}

.guide__avatar {
  margin-bottom: 32px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 48em) {
  .guide__avatar {
    margin-bottom: 0;
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 29.99875em) {
  .guide__avatar {
    width: 140px;
    height: 140px;
  }
}

.guide__button {
  width: 100%;
}
@media (max-width: 48em) {
  .guide__button {
    max-width: 283px;
  }
}
@media (max-width: 29.99875em) {
  .guide__button {
    max-width: 100%;
    padding: 16px 32px;
  }
}

.guide__title {
  margin-bottom: 32px;
}
@media (max-width: 48em) {
  .guide__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 29.99875em) {
  .guide__title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}

.guide__subtitle {
  margin-bottom: 20px;
  display: block;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 80em) {
  .guide__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 48em) {
  .guide__subtitle {
    font-size: 14px;
  }
}

.guide__text {
  margin-bottom: 24px;
  display: block;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 48em) {
  .guide__text {
    font-size: 14px;
  }
}

.guide__quote {
  position: relative;
  padding-top: 51px;
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;
}
.guide__quote::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 48px;
  height: 35px;
  background-image: url("../img/icons/quote.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
@media (max-width: 29.99875em) {
  .guide__quote::before {
    width: 40px;
    height: 29px;
  }
}
@media (max-width: 48em) {
  .guide__quote {
    font-size: 14px;
  }
}
@media (max-width: 29.99875em) {
  .guide__quote {
    padding-top: 35px;
  }
}

.chars {
  display: flex;
  gap: 20px;
  margin: 0 50px;
}

@media (max-width: 80em) {
  .chars {
    margin: 0 -25px;
  }
}
@media (max-width: 972px) {
  .chars {
    margin: 0;
    flex-wrap: wrap;
  }
}
@media (max-width: 29.99875em) {
  .chars {
    margin-bottom: 60px;
  }
}

.chars__item {
  padding: 32px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 972px) {
  .chars__item {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 48em) {
  .chars__item {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 29.99875em) {
  .chars__item {
    max-width: 100%;
    display: grid;
    gap: 5px 10px;
    grid-template-columns: 48px auto;
  }
}

.chars__icon {
  margin-bottom: 24px;
  width: 56px;
  height: 56px;
}
@media (max-width: 80em) {
  .chars__icon {
    margin-bottom: 16px;
  }
}

@media (max-width: 29.99875em) {
  .chars__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
}

.chars__title {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}
@media (max-width: 80em) {
  .chars__title {
    font-size: 18px;
  }
}

@media (max-width: 29.99875em) {
  .chars__title {
    margin-bottom: 0;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    text-align: left;
  }
}

.chars__descr {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 80em) {
  .chars__descr {
    font-size: 14px;
  }
}

@media (max-width: 29.99875em) {
  .chars__descr {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: left;
  }
}

.stock {
  padding: 48px 64px;
  display: flex;
  gap: 40px;
  background-color: #1b1b1b;
  border-radius: 16px;
}
@media (max-width: 80em) {
  .stock {
    padding: 48px 40px;
  }
}
@media (max-width: 48em) {
  .stock {
    padding: 32px;
  }
}
@media (max-width: 39.375em) {
  .stock {
    padding: 32px 20px;
    flex-direction: column;
    gap: 20px;
  }
}

.stock__img {
  max-width: 280px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 48em) {
  .stock__img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 29.99875em) {
  .stock__img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 280px;
  }
}

.stock__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  line-height: 1.5;
}
@media (max-width: 48em) {
  .stock__info {
    gap: 16px;
  }
}

.stock__title {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 48em) {
  .stock__title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}

.stock__duration {
  position: relative;
  padding-left: 44px;
  font-weight: 700;
}
.stock__duration::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url("../img/icons/calendar.svg");
  content: "";
}
@media (max-width: 48em) {
  .stock__duration {
    font-size: 16px;
  }
}

@media (max-width: 48em) {
  .stock__descr {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
@media (max-width: 29.99875em) {
  .stock__descr {
    font-size: 14px;
  }
}

.stock__button {
  max-width: max-content;
}
@media (max-width: 29.99875em) {
  .stock__button {
    max-width: 100%;
    text-align: center;
    font-size: 12px;
  }
}

.pricelist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: 16px;
  overflow: hidden;
}
.pricelist > div {
  width: 100%;
  min-height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: #1b1b1b;
}
.pricelist > div strong {
  display: block;
  font-weight: 500;
  font-size: 24px;
}

@media (max-width: 1280px) {
  .pricelist > div strong {
    font-size: 20px;
  }
}

.pricelist > div strong + span {
  margin-bottom: 5px;
}
.pricelist > div span {
  font-size: 16px;
}

@media (max-width: 1280px) {
  .pricelist > div span {
    font-size: 14px;
  }
}

@media (max-width: 39.375em) {
  .pricelist {
    grid-template-columns: repeat(2, 1fr);
  }
}

div.pricelist__logo {
  padding: 20px;
}
@media (max-width: 80em) {
  div.pricelist__logo img {
    width: 108px;
    height: 38px;
  }
}
@media (max-width: 39.375em) {
  div.pricelist__logo {
    display: none;
  }
}

div.pricelist__time {
  padding: 20px 10px;
  justify-content: flex-start;
}
@media (max-width: 39.375em) {
  div.pricelist__time--lucky {
    grid-column: 1/3;
  }
}
@media (max-width: 39.375em) {
  div.pricelist__time--hot {
    grid-column: 1/3;
    grid-row: 4/5;
  }
}
@media (max-width: 39.375em) {
  div.pricelist__time--evening {
    grid-column: 1/3;
    grid-row: 7/8;
  }
}
@media (max-width: 80em) {
  div.pricelist__time {
    padding: 20px 5px;
  }
}

div.pricelist__name {
  padding: 20px 15px;
}
@media (max-width: 39.375em) {
  div.pricelist__name--adult {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
div.pricelist__name--child {
  grid-column: 1/2;
  grid-row: 3/4;
}
div.pricelist__name--adult-hot,
div.pricelist__name--adult-evening,
div.pricelist__name--child-hot,
div.pricelist__name--child-evening {
  display: none;
}
@media (max-width: 39.375em) {
  div.pricelist__name--adult-hot,
  div.pricelist__name--adult-evening,
  div.pricelist__name--child-hot,
  div.pricelist__name--child-evening {
    display: flex;
    grid-column: 1/2;
  }
}
div.pricelist__name--adult-hot {
  grid-row: 5/6;
}
div.pricelist__name--child-hot {
  grid-row: 6/7;
}
div.pricelist__name--adult-evening {
  grid-row: 8/9;
}
div.pricelist__name--child-evening {
  grid-row: 9/10;
}

div.pricelist__price strong {
  font-size: 40px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

.price--single .pricelist__price span {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.price--single .pricelist__price strong {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: #ffa54d;
}

.gift__pricelist .pricelist__price strong {
  font-size: 35px;
}

@media (max-width: 1280px) {
  div.pricelist__price strong {
    font-size: 30px;
  }

  .gift__pricelist .pricelist__price strong {
    font-size: 25px;
  }

  .price--single .pricelist__price span {
    font-size: 18px;
  }

  .price--single .pricelist__price strong {
    font-size: 20px;
  }
}

@media (max-width: 630px) {
  .price--single .pricelist__price--adult-evening {
    grid-column: 2 / 3;
    grid-row: 8 / 9;
  }
}

@media (max-width: 39.375em) {
  div.pricelist__price--adult-lucky {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
div.pricelist__price--child-lucky {
  grid-column: 2/3;
  grid-row: 3/4;
}
@media (max-width: 39.375em) {
  div.pricelist__price--adult-hot {
    grid-row: 5/6;
  }
}
div.pricelist__price--child-hot {
  grid-column: 3/4;
  grid-row: 3/4;
}
@media (max-width: 39.375em) {
  div.pricelist__price--child-hot {
    grid-column: 2/3;
    grid-row: 6/7;
  }
}

.calendar {
  border-radius: 16px;
  overflow: hidden;
  background-color: #1b1b1b;
  line-height: 1.5;
  align-self: flex-start;
}

.calendar__month {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eb7605;
  color: #000000;
  font-weight: 500;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
}

.calendar__content {
  padding: 24px 16px;
}

.calendar__weekdays {
  margin-bottom: 8px;
  display: flex;
}
.calendar__weekdays li {
  width: 14.2857142857%;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
}

.calendar__days {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
}
.calendar__days div {
  width:14.2857142857%;
  height:50px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  font-size:14px;
  cursor:pointer;
  border-radius: 2px;z-index:99;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.calendar__days div:hover,
.calendar__days div.today {
  background-color: #eb7605;
  color: #000000;
}
.calendar__days div.prev-date,
.calendar__days div.next-date {
  color: #4f4f4f;
  pointer-events: none;
}

.calendar__menu {
  padding-top: 12px;
  border-top: 1px solid #4f4f4f;
  display: flex;
  justify-content: space-between;
}

.calendar__button {
  text-transform: uppercase;
  color: #eb7605;
  font-size: 12px;
  font-weight: 700;
}

.calendar__btn {
  width: 22px;
  height: 22px;
  background-image: url("../img/icons/calendar-angle.svg");
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.calendar__btn--prev {
  transform: rotate(180deg);
}
.calendar__months {
  display: none;
}

.timing {
  padding: 30px;
  border-radius: 16px;
  background-color: #1b1b1b;
}
@media (max-width: 47.99875em) {
  .timing {
    padding: 30px 20px;
  }
}

.timing__navigation {
  margin-bottom: 30px;
}

.timing__hours {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 80em) {
  .timing__hours {
    gap: 20px 8px;
  }
}
@media (max-width: 60.75em) {
  .timing__hours {
    gap: 20px 23px;
  }
}
@media (max-width: 39.375em) {
  .timing__hours {
    gap: 10px 13px;
  }
}

.timing__hour {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #747d7e;
  cursor: pointer;
  transition: color 0.3s ease;
}
.timing__hour::after {
  position: absolute;
  content: "";
}
.timing__hour--sold {
  background-color: #000000;
  pointer-events: none;
}
.timing__hour--nightwalking {
  background-color: #4232ff;
}
.timing__hour--master-classes {
  background-color: #1f499f;
}

.promo__info {
  display: flex;
  gap: 40px;
}

@media (max-width: 972px) {
  .promo__info {
    gap: 30px;
  }
}

.promo__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.promo__text-block {
  margin-bottom: 20px;
}

.promo__text-block p {
  line-height: 1.5;
  font-size: 20px;
}

@media (max-width: 1280px) {
  .promo__text-block p {
    font-size: 16px;
  }
}

.promo__text-block p:not(:last-of-type) {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .promo__text-block p:not(:last-of-type) {
    margin-bottom: 15px;
  }
}

@media (max-width: 525px) {
  .promo__text-block,
  .promo__text-block p {
    margin-bottom: 0;
    order: 3;
    font-size: 14px;
  }

  .promo__text-block p:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.promo--landing .promo__content {
  gap: 20px;
}
@media (max-width: 60.75em) {
  .promo--landing .promo__content {
    margin-bottom: 40px;
  }
}
@media (max-width: 47.99875em) {
  .promo--landing .promo__content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 39.375em) {
  .promo--landing .promo__content {
    margin-bottom: 0;
  }
}
.promo--landing .promo__title {
  max-width: 100%;
}
@media (max-width: 29.99875em) {
  .promo--landing .promo__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 80em) {
  .promo--landing .promo__descr {
    font-size: 20px;
  }
}
@media (max-width: 47.99875em) {
  .promo--landing .promo__descr {
    font-size: 18px;
  }
}
@media (max-width: 39.375em) {
  .promo--landing .promo__descr {
    font-size: 16px;
  }
}
.promo--landing .promo__info {
  margin-bottom: 0;
  max-width: 720px;
}
@media (max-width: 47.99875em) {
  .promo--landing .promo__recommend {
    margin: 0 auto;
    max-width: max-content;
  }
}
@media (max-width: 80em) {
  .promo--landing .promo__img {
    width: 351px;
    height: 351px;
  }
}
@media (max-width: 48em) {
  .promo--landing .promo__img {
    width: 290px;
    height: 290px;
  }
}
@media (max-width: 29.99875em) {
  .promo--landing .promo__img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 80em) {
  .promo--landing {
    /* padding: 55px 0 95px; */
  }
}
@media (max-width: 47.99875em) {
  .promo--landing {
    /* padding: 50px 0 80px; */
  }
}
@media (max-width: 29.99875em) {
  .promo--landing {
    /* padding: 30px 0 60px; */
  }
}
.promo--corporate {
  /* padding: 20px 0 100px; */
}
.promo--corporate .breadcrumbs {
  margin-bottom: 40px;
}
@media (max-width: 80em) {
  .promo--corporate .breadcrumbs {
    margin: 0 auto 50px;
    max-width: 940px;
  }
}
@media (max-width: 60.75em) {
  .promo--corporate .breadcrumbs {
    margin: 0 auto 40px;
  }
}
@media (max-width: 39.375em) {
  .promo--corporate .breadcrumbs {
    margin: 0 auto 20px;
  }
}
@media (max-width: 47.99875em) {
  .promo--corporate .promo__title {
    margin-bottom: 30px;
  }
}
.promo--corporate .promo__content {
  justify-content: space-between;
  padding: 0 0 30px;
  gap: 50px;
}
@media (max-width: 80em) {
  .promo--corporate .promo__content {
    margin: 0 auto;
    max-width: 940px;
    gap: 60px;
  }
}
@media (max-width: 60.75em) {
  .promo--corporate .promo__content {
    gap: 40px;
  }
}
@media (max-width: 39.375em) {
  .promo--corporate .promo__content {
    flex-direction: column;
    gap: 20px;
  }
}
.promo--corporate .promo__info {
  margin-bottom: 0;
  max-width: 585px;
}
@media (max-width: 80em) {
  .promo--corporate .promo__info {
    max-width: 100%;
  }
}
@media (max-width: 39.375em) {
  .promo--corporate .promo__info {
    text-align: left;
  }
}
.promo--corporate .promo__cards {
  gap: 30px;
}
@media (max-width: 47.99875em) {
  .promo--corporate .promo__cards {
    gap: 20px;
  }
}
.promo--corporate .promo__card {
  padding: 40px 20px;
}
@media (max-width: 60.75em) {
  .promo--corporate .promo__card {
    padding: 30px 20px;
  }
}
@media (max-width: 47.99875em) {
  .promo--corporate .promo__card {
    padding: 20px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px 16px;
  }
}
.promo--corporate .card__title {
  font-size: 18px;
}
@media (max-width: 60.75em) {
  .promo--corporate .card__title {
    font-size: 12px;
  }
}
@media (max-width: 47.99875em) {
  .promo--corporate .card__title {
    margin-bottom: 0;
  }
}
.promo--corporate .card__descr {
  font-size: 20px;
}
@media (max-width: 47.99875em) {
  .promo--corporate .card__descr {
    grid-column: 2/3;
  }
}
.promo--corporate .promo__icon {
  margin-bottom: 24px;
  width: 56px;
  height: 56px;
}
@media (max-width: 47.99875em) {
  .promo--corporate .promo__icon {
    margin-bottom: 0;
    grid-row: 1/3;
  }
}
.promo--corporate .promo__img {
  max-width: 508px;
}
@media (max-width: 80em) {
  .promo--corporate .promo__img {
    max-width: 332px;
    height: 350px;
  }
}
@media (max-width: 60.75em) {
  .promo--corporate .promo__img {
    max-width: 302px;
    height: 312px;
  }
}
@media (max-width: 29.99875em) {
  .promo--corporate .promo__img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 60.75em) {
  .promo--corporate .promo__text {
    font-size: 14px;
  }
}
@media (max-width: 80em) {
  .promo--corporate {
    padding: 20px 0 95px;
  }
}
@media (max-width: 60.75em) {
  .promo--corporate {
    padding: 20px 0 80px;
  }
}
@media (max-width: 47.99875em) {
  .promo--corporate {
    padding: 15px 0 60px;
  }
}
.promo--birthday {
  /* margin-bottom: 120px; */
}
.promo--birthday .promo__content {
  margin-bottom: 100px;
  gap: 46px;
}
@media (max-width: 80em) {
  .promo--birthday .promo__content {
    margin-bottom: 70px;
  }
}
@media (max-width: 47.99875em) {
  .promo--birthday .promo__content {
    margin-bottom: 60px;
    gap: 30px;
  }
}
@media (max-width: 39.375em) {
  .promo--birthday .promo__content {
    flex-direction: column;
  }
}
.promo--birthday .promo__info {
  margin-bottom: 0;
  max-width: 585px;
}
@media (max-width: 39.375em) {
  .promo--birthday .promo__info {
    text-align: left;
  }
}
.promo--birthday .promo__title {
  margin-bottom: 40px;
  max-width: 100%;
}
@media (max-width: 47.99875em) {
  .promo--birthday .promo__title {
    margin-bottom: 30px;
  }
}
.promo--birthday .promo__text:not(:last-child) {
  margin-bottom: 25px;
}
.promo--birthday .promo__img {
  max-width: 570px;
}
@media (max-width: 80em) {
  .promo--birthday .promo__img {
    max-width: 335px;
    height: 375px;
  }
}
@media (max-width: 48em) {
  .promo--birthday .promo__img {
    max-width: 300px;
    height: 334px;
  }
}
@media (max-width: 80em) {
  .promo--birthday {
    margin-bottom: 95px;
  }
}
@media (max-width: 48em) {
  .promo--birthday {
    margin-bottom: 80px;
  }
}
@media (max-width: 39.375em) {
  .promo--birthday {
    margin-bottom: 60px;
  }
}
.promo--agency {
  margin-bottom: 120px;
}
.promo--agency .promo__content {
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 47.99875em) {
  .promo--agency .promo__content {
    gap: 35px;
  }
}
@media (max-width: 39.375em) {
  .promo--agency .promo__content {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.promo--agency .promo__info {
  margin-bottom: 0;
  max-width: 585px;
}
@media (max-width: 80em) {
  .promo--agency .promo__info {
    max-width: 542px;
  }
}
@media (max-width: 39.375em) {
  .promo--agency .promo__info {
    text-align: left;
  }
}
.promo--agency .promo__title {
  max-width: 100%;
}
@media (max-width: 47.99875em) {
  .promo--agency .promo__title {
    font-size: 30px;
  }
}
@media (max-width: 39.375em) {
  .promo--agency .promo__title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.promo--agency .promo__img {
  max-width: 500px;
}
@media (max-width: 80em) {
  .promo--agency .promo__img {
    max-width: 336px;
    height: 420px;
  }
}
@media (max-width: 48em) {
  .promo--agency .promo__img {
    max-width: 295px;
    height: 370px;
  }
}
@media (max-width: 47.99875em) {
  .promo--agency .promo__text {
    font-size: 14px;
  }
}
@media (max-width: 80em) {
  .promo--agency {
    margin-bottom: 95px;
  }
}
@media (max-width: 48em) {
  .promo--agency {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .promo--agency {
    margin-bottom: 60px;
  }
}
.promo--about {
  padding: 20px 0 120px;
}
.promo--about .breadcrumbs {
  margin-bottom: 40px;
}
@media (max-width: 39.375em) {
  .promo--about .breadcrumbs {
    margin-bottom: 20px;
  }
}
.promo--about .promo__title {
  margin-bottom: 40px;
}
@media (max-width: 60.75em) {
  .promo--about .promo__title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
.promo--about .promo__info {
  margin-bottom: 0;
  max-width: 590px;
}
@media (max-width: 60.75em) {
  .promo--about .promo__info {
    max-width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .promo--about .promo__info {
    text-align: left;
  }
}
.promo--about .promo__head {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.promo--about .promo__content {
  margin-bottom: 40px;
  gap: 60px;
}
@media (max-width: 60.75em) {
  .promo--about .promo__content {
    flex-direction: column;
    gap: 30px;
  }
}
.promo--about .promo__list {
  margin-bottom: 40px;
}
.promo--about .promo__list:last-child {
  margin-bottom: 0;
}
.promo--about .promo__list li {
  font-size: 18px;
}
.promo--about .promo__list li:not(:last-child) {
  margin-bottom: 15px;
}
.promo--about .promo__list li::before {
  top: 10px;
}
@media (max-width: 80em) {
  .promo--about .promo__list li {
    font-size: 16px;
  }
}
@media (max-width: 39.375em) {
  .promo--about .promo__list li {
    font-size: 14px;
  }
}
@media (max-width: 29.99875em) {
  .promo--about .promo__list {
    margin-bottom: 20px;
  }
}
.promo--about .promo__img {
  max-width: 550px;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 40px 0 rgba(187, 182, 182, 0.1490196078);
}
@media (max-width: 80em) {
  .promo--about .promo__img {
    max-width: 440px;
    height: 475px;
  }
}
@media (max-width: 60.75em) {
  .promo--about .promo__img {
    max-width: 100%;
    height: 400px;
  }
}
@media (max-width: 39.375em) {
  .promo--about .promo__img {
    height: 200px;
  }
}
.promo--about .promo__cards {
  max-width: 100%;
}
@media (max-width: 60.75em) {
  .promo--about .promo__cards {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 47.99875em) {
  .promo--about .promo__cards {
    gap: 20px;
    flex-direction: row;
  }
}
.promo--about .promo__card {
  padding: 40px 20px;
}
.promo--about .promo__card p {
  font-size: 20px;
}
@media (max-width: 80em) {
  .promo--about .promo__card p {
    font-size: 16px;
  }
}
@media (max-width: 47.99875em) {
  .promo--about .promo__card p {
    font-size: 14px;
  }
}
@media (max-width: 60.75em) {
  .promo--about .promo__card {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 47.99875em) {
  .promo--about .promo__card {
    max-width: calc(50% - 10px);
    padding: 20px;
  }
}
@media (max-width: 39.375em) {
  .promo--about .promo__card {
    max-width: 100%;
  }
}
.promo--about .promo__icon {
  margin-bottom: 24px;
  width: 56px;
  height: 56px;
}
@media (max-width: 47.99875em) {
  .promo--about .promo__icon {
    margin-bottom: 0;
  }
}
@media (max-width: 80em) {
  .promo--about {
    padding: 20px 0 95px;
  }
}
@media (max-width: 47.99875em) {
  .promo--about {
    padding: 20px 0 80px;
  }
}
@media (max-width: 29.99875em) {
  .promo--about {
    padding: 15px 0 60px;
  }
}
.promo--master {
  margin-bottom: 100px;
}
.promo--master .promo__title {
  max-width: 100%;
}
@media (max-width: 47.99875em) {
  .promo--master .promo__content {
    flex-direction: column;
  }
}
.promo--master .promo__info {
  margin-bottom: 0;
}
.promo--master .promo__img {
  max-width: 645px;
}
@media (max-width: 80em) {
  .promo--master .promo__img {
    max-width: 424px;
    height: 384px;
  }
}
@media (max-width: 60.75em) {
  .promo--master .promo__img {
    max-width: 332px;
    height: 301px;
  }
}
@media (max-width: 39.375em) {
  .promo--master .promo__img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 80em) {
  .promo--master {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .promo--master {
    margin-bottom: 20px;
  }
}

@media (max-width: 39.375em) {
  .promo__container {
    background-image: none !important;
  }
}
@media (max-width: 25.875em) {
  .promo__container {
    padding: 0 20px;
  }
}

.promo__suptitle {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}

@media (max-width: 1280px) {
  .promo__suptitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .promo__suptitle {
    text-align: left;
    margin-bottom: 15px;
    font-size: 18px;
  }
}

.promo__title {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 45px;
  font-weight: 500;
}

@media (max-width: 1280px) {
  .promo__title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .promo__title {
    margin-bottom: 15px;
    font-size: 35px;
    line-height: 1.12;
  }
}

@media (max-width: 525px) {
  .promo__title {
    font-size: 32px;
  }
}

.promo__content {
  display: flex;
  align-items: center;
}

.promo__text {
  font-size: 16px;
}
.promo__text:not(:last-child) {
  margin-bottom: 20px;
}

.promo__subtitle {
  margin-bottom: 15px;
  display: block;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 39.375em) {
  .promo__subtitle {
    margin-bottom: 16px;
    text-align: center;
    font-size: 20px;
  }
}

.promo__accent-title {
  margin-bottom: 20px;
  display: block;
  font-weight: 700;
  font-size: 20px;
}

.promo__accent-title::before,
.promo__accent-title::after {
  content: "/";
  color: #eb7605;
  font-size: 20px;
  font-weight: 700;
}

.promo__list {
  margin-bottom: 24px;
}
.promo__list li {
  position: relative;
  padding-left: 24px;
  font-size: 20px;
  line-height: 1.5;
}
.promo__list li:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 29.99875em) {
  .promo__list li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.promo__list li::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #eb7605;
  border-radius: 50%;
}
@media (max-width: 80em) {
  .promo__list li {
    font-size: 18px;
  }
}
@media (max-width: 39.375em) {
  .promo__list li {
    font-size: 14px;
    text-align: left;
  }
}
@media (max-width: 39.375em) {
  .promo__list {
    margin: 0 0 50px;
    max-width: max-content;
  }
}

.promo__img {
  max-width: 480px;
}

.promo__recommend {
  position: relative;
  margin-left: 54px;
  padding-left: 54px;
  min-height: 38px;
  display: flex;
  font-size: 14px;
  align-items: center;
  background-image: url("../img/decor/tripadvisor.png");
  background-repeat: no-repeat;
}
.promo__recommend::before {
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  left: -108px;
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("../img/decor/promo-arrow.svg");
  background-repeat: no-repeat;
  content: "";
}
@media (max-width: 25.875em) {
  .promo__recommend::before {
    display: none;
  }
}
@media (max-width: 85.375em) {
  .promo__recommend {
    margin-left: 69px;
  }
}
@media (max-width: 39.375em) {
  .promo__recommend {
    margin: 0 auto;
    max-width: max-content;
    padding-left: 42px;
    background-size: 32px;
    background-position: left center;
    font-size: 12px;
  }
}

.promo__descr {
  margin-bottom: 40px;
  display: block;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 80em) {
  .promo__descr {
    font-size: 18px;
  }
}
@media (max-width: 39.375em) {
  .promo__descr {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.promo__button-wrapper {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonials__button-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: max-content;
  display: flex;
  align-items: center;
}

.testimonials__button-wrapper .promo__button-img-wrapper {
  position: absolute;
  right: -130%;
}

.promo__button-wrapper--mobile {
  display: none;
}

@media (max-width: 767px) {
  .testimonials__button-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .testimonials__button-wrapper .promo__button-line {
    display: none;
  }

  .testimonials__button-wrapper .promo__button-line-mobile {
    display: block;
  }

  .testimonials__button-wrapper .promo__button-img-wrapper {
    position: static;
  }
}

@media (max-width: 525px) {
  .promo__button-wrapper {
    display: none;
  }

  .promo__button-wrapper--mobile {
    flex-direction: column;
    order: 2;
    gap: 0;
    align-items: center;
    margin: 0 auto 20px;
    display: flex;
  }
}

.promo__button {
  display: inline-block;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .promo__button {
    font-size: 16px;
  }
}

.promo__button-img {
  max-width: 100%;
}

.promo__button-img-wrapper {
  display: flex;
  font-size: 16px;
}

.promo__button-img-wrapper a {
  display: flex;
}

.promo__button-left-link {
  margin-right: 10px;
}

.promo__button-right-link {
  display: flex;
  gap: 10px;
}

.promo__button-img-wrapper .promo__button-icon {
  width: 24px;
  height: 24px;
}

.promo__button-line-mobile {
  display: none;
}

@media (max-width: 525px) {
  .promo__button-line {
    display: none;
  }

  .promo__button-line-mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .promo__button {
    flex: none;
    padding: 16px 48px;
  }
}

@media (max-width: 39.375em) {
  .promo__button {
    margin: 0 auto 20px;
  }
}

.promo__cards {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1000px;
  display: flex;
  gap: 30px;
}

@media (max-width: 80em) {
  .promo__cards {
    max-width: 780px;
    gap: 20px;
  }
}
@media (max-width: 47.99875em) {
  .promo__cards {
    flex-direction: column;
  }
}

.promo__card {
  max-width: 310px;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo__card p {
  font-size: 20px;
  line-height: 1.5;
}

.promo__card img {
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
}

@media (max-width: 80em) {
  .promo__card p {
    font-size: 14px;
  }
}
@media (max-width: 47.99875em) {
  .promo__card {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 20px;
    text-align: left;
  }

  .promo__card img {
    margin-bottom: 0;
  }
}

.promo__card-title {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (max-width: 47.99875em) {
  .promo__card-title {
    font-size: 12px;
  }
}

.promo__icon {
  margin-bottom: 16px;
}
.promo__icon--eye {
  /* width: 48px;height: 33px; */
  width: 100%;
  height: 48px;
}
.promo__icon--socials {
  width: 48px;
  height: 48px;
}
.promo__icon--mind {
  width: 30px;
  height: 40px;
}
@media (max-width: 47.99875em) {
  .promo__icon {
    margin-bottom: 0;
    flex: none;
    width: 48px;
  }
}

/*
  750
  610
*/

.promo__decor-wrapper {
  width: 100%;
  max-width: 610px;
  max-height: 610px;
}

@media (max-width: 1280px) {
  .promo__decor-wrapper {
    max-width: 410px;
  }
}

@media (max-width: 768px) {
  .promo__decor-wrapper {
    max-width: 260px;
  }
}

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

@media (max-width: 767px) {
  .promo__decor-wrapper {
    display: none;
  }
}

.promo__decor-img-mobile {
  display: none;
}

@media (max-width: 767px) {
  .promo__decor-img-mobile {
    margin: 0 auto 15px;
    display: block;
    width: 320px;
    object-fit: cover;
    height: 320px;
  }
}

@media (max-width: 525px) {
  .promo__decor-img-mobile {
    margin: 0 auto 20px;
    order: 1;
    width: 100%;
    height: auto;
  }
}

.promo__heading {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  font-family: "Mont", sans-serif;
}
@media (max-width: 47.99875em) {
  .promo__heading {
    font-size: 18px;
  }
}

.promo__banner {
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 48em) {
  .promo__banner {
    max-width: 100%;
  }
}
@media (max-width: 29.99875em) {
  .promo__banner {
    padding: 40px 24px;
  }
}

.promo__callback {
  position: relative;
  padding-left: 78px;
  font-weight: 400;
  font-size: 16px;
}
.promo__callback::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 48px;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/phone-black.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
@media (max-width: 29.99875em) {
  .promo__callback::before {
    left: 28px;
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 29.99875em) {
  .promo__callback {
    padding: 16px 32px 16px 58px;
  }
}

.form--landing .form__img {
  max-width: 543px;
  width: 100%;
}
.form--faq {
  margin-bottom: 120px;
}
.form--faq .form__info {
  padding: 60px 80px;
}
@media (max-width: 80em) {
  .form--faq .form__info {
    padding: 48px;
  }
}
@media (max-width: 48em) {
  .form--faq .form__info {
    padding: 30px;
  }
}
@media (max-width: 29.99875em) {
  .form--faq .form__info {
    padding: 30px 20px;
  }
}
@media (max-width: 80em) {
  .form--faq {
    margin-bottom: 96px;
  }
}
@media (max-width: 48em) {
  .form--faq {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .form--faq {
    margin-bottom: 60px;
  }
}
.form--corporate {
  margin-bottom: 100px;
}
@media (max-width: 80em) {
  .form--corporate {
    margin-bottom: 95px;
  }
}
@media (max-width: 60.75em) {
  .form--corporate {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .form--corporate {
    margin-bottom: 60px;
  }
  .form--corporate .form__info {
    padding: 30px 20px;
  }
  .form--corporate .form__img {
    height: 220px;
  }
}
.form--landing {
  margin-bottom: 120px;
}
@media (max-width: 80em) {
  .form--landing {
    margin-bottom: 95px;
  }
}
@media (max-width: 60.75em) {
  .form--landing {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .form--landing {
    margin-bottom: 60px;
  }
}
.form--contacts {
  margin-bottom: 120px;
}
@media (max-width: 80em) {
  .form--contacts {
    margin-bottom: 95px;
  }
}
@media (max-width: 60.75em) {
  .form--contacts {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .form--contacts {
    margin-bottom: 60px;
  }
  .form--contacts .form__info {
    padding: 30px 20px;
  }
  .form--contacts .form__img {
    height: 220px;
  }
}
@media (max-width: 80em) {
  .form--work .form__info {
    padding: 40px;
  }
  .form--work .form__img {
    max-width: 420px;
  }
  .form--work .form__descr {
    font-size: 16px;
  }
}
@media (max-width: 60.75em) {
  .form--work .form__img {
    max-width: 360px;
  }
}
@media (max-width: 48em) {
  .form--work .form__content {
    flex-direction: column-reverse;
  }
  .form--work .form__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .form--work .form__descr {
    margin-bottom: 40px;
  }
}
@media (max-width: 48em) and (max-width: 29.99875em) {
  .form--work .form__descr {
    margin-bottom: 30px;
  }
}
@media (max-width: 48em) {
  .form--work .form__img {
    max-width: 100%;
    height: 400px;
  }
}
@media (max-width: 29.99875em) {
  .form--work .form__title {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .form--work .form__info {
    padding: 40px 20px;
  }
  .form--work .form__img {
    height: 240px;
  }
}
@media (max-width: 48em) {
  .form--callback .form__content {
    flex-direction: column-reverse;
  }
}
.form .field {
  margin-bottom: 16px;
}
.form .field--agreement {
  /* margin-bottom: 40px; */
  margin-bottom:10px;
}
@media (max-width: 48em) {
  .form .field--agreement {
    margin-bottom: 32px;
  }
}
/* .form .field__checkbox { max-height: 20px; } */
@media (max-width: 47.99875em) {
  .form .field__checkbox {
    max-height: initial;
  }
}
.form--donate .field {
  margin-bottom: 30px;
}
.form--donate .form__subtitle {
  margin-bottom: 15px;
  display: block;
  font-size: 24px;
  font-weight: 700;
}
.form--donate .form__descr strong {
  display: block;
}
.form--donate .form__chars {
  margin-bottom: 25px;
}
.form--donate .form__char strong,
.form--donate .form__char span {
  display: block;
}
.form--donate .form__results {
  padding: 60px 70px;
  background-color: #fff3c1;
  color: #000000;
}
@media (max-width: 47.99875em) {
  .form--donate .form__results {
    padding: 30px;
  }
}
.form--donate .select__value {
  padding: 11px 16px;
  min-height: 48px;
  border: 1px solid #4f4f4f;
  background-color: #363535;
  border-radius: 2px;
  color: #ffffff;
  font-size: 16px;
}
.form--donate .select__options {
  top: 110%;
  padding: 11px 16px;
  font-size: 16px;
}
.form--donate .field--range .field__input {
  margin-bottom: 10px;
}
.form--donate .noUi-target {
  border: none;
}
.form--donate .noUi-connects {
  border: 1px solid #4f4f4f;
  background-color: #363535;
  border-radius: 2px;
}
.form--donate .noUi-connect {
  background-color: #ffd600;
}
.form--donate .noUi-handle {
  width: 30px;
  height: 23px;
  top: -3px;
  right: -17px;
}
.form--donate .noUi-handle::before,
.form--donate .noUi-handle::after {
  display: none;
}
.form--donate .field__range {
  margin-bottom: 5px;
}
.form--donate .field__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form--donate .field--agreement {
  margin-bottom: 0;
}

.form__img {
  object-fit: cover;
}
@media (max-width: 80em) {
  .form__img {
    max-width: 52%;
  }
}
@media (max-width: 60.75em) {
  .form__img {
    max-width: 40%;
  }
}
@media (max-width: 48em) {
  .form__img {
    max-width: 100%;
    height: 500px;
  }
}
@media (max-width: 29.99875em) {
  .form__img {
    height: 240px;
  }
}

.form__content {
  display: flex;
  border-radius: 16px;
  background-color: #1b1b1b;
  overflow: hidden;
}
@media (max-width: 48em) {
  .form__content {
    flex-direction: column;
  }
}

.form__info {
  padding: 60px 70px;
}
@media (max-width: 80em) {
  .form__info {
    padding: 48px;
  }
}
@media (max-width: 48em) {
  .form__info {
    padding: 30px;
  }
}

.form__title {
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 80em) {
  .form__title {
    font-size: 24px;
  }
}
@media (max-width: 48em) {
  .form__title {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

.form__descr {
  margin-bottom: 40px;
  display: block;
  line-height: 1.5;
}
@media (max-width: 80em) {
  .form__descr {
    margin-bottom: 30px;
  }
}
@media (max-width: 48em) {
  .form__descr {
    font-size: 14px;
  }
}
@media (max-width: 29.99875em) {
  .form__button {
    padding: 16px 32px;
    font-size: 12px;
  }
}
div.section,
section.section {
  margin-bottom:60px;
  /* margin-bottom: 156px; */
}
@media (max-width: 1280px) {
  div.section,
  section.section {
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  div.section,
  section.section {
    margin-bottom: 60px;
  }
}

@media (max-width: 380px) {
  div.section,
  section.section {
    margin-bottom: 50px;
  }
}

.section .breadcrumbs {
  margin-bottom: 40px;
}
@media (max-width: 64em) {
  .section .breadcrumbs {
    margin-bottom: 35px;
  }
}
@media (max-width: 39.375em) {
  .section .breadcrumbs {
    margin-bottom: 20px;
  }
}

.section__title {
  margin-bottom: 40px;
}
@media (max-width: 75em) {
  .section__title {
    font-size: 36px;
  }
}
@media (max-width: 64em) {
  .section__title {
    margin-bottom: 35px;
    font-size: 30px;
  }
}
@media (max-width: 39.375em) {
  .section__title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}

.section__list {
  margin-bottom: 40px;
}
@media (max-width: 47.99875em) {
  .section__list {
    margin-bottom: 30px;
  }
}

.section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__subtitle {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 29.99875em) {
  .section__subtitle {
    font-size: 20px;
  }
  .section__subtitle.title--h2 {
    font-size: 24px;
  }
}

.section__img {
  margin-bottom: 40px;
  object-fit: cover;
}
@media (max-width: 39.375em) {
  .section__img {
    max-width: 100%;
  }
}

.section__button {
  display: block;
  max-width: max-content;
}
@media (max-width: 29.99875em) {
  .section__button {
    padding: 16px 32px;
    font-size: 12px;
  }
}

.news--main {
  margin-bottom: 120px;
}
@media (max-width: 80em) {
  .news--main {
    margin-bottom: 95px;
  }
}
@media (max-width: 48em) {
  .news--main {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .news--main {
    margin-bottom: 60px;
  }
}
.news--similar {
  margin-bottom: 120px;
}
@media (max-width: 80em) {
  .news--similar {
    margin-bottom: 95px;
  }
}
@media (max-width: 48em) {
  .news--similar {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .news--similar {
    margin-bottom: 60px;
  }
}
.news--similar .news__slider {
  margin-bottom: 0;
}
.news--similar .news__swiper {
  margin-bottom: 40px;
}
@media (max-width: 47.99875em) {
  .news--similar .news__swiper {
    margin-bottom: 30px;
  }
}
.news--article .news__top {
  max-width: 1095px;
}
.news--landing {
  margin-bottom: 120px;
}
@media (max-width: 80em) {
  .news--landing {
    margin-bottom: 95px;
  }
}
@media (max-width: 48em) {
  .news--landing {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .news--landing {
    margin-bottom: 60px;
  }
}
@media (max-width: 71.25em) {
  .news--landing .news__swiper {
    margin-bottom: 40px;
  }
}
@media (max-width: 47.99875em) {
  .news--landing .news__swiper {
    margin-bottom: 30px;
  }
}
.news--landing .news__slide {
  transition: opacity 0.3s ease;
}
@media (max-width: 47.99875em) {
  .news--landing .news__slide {
    opacity: 0.5;
  }
  .news--landing .news__slide.swiper-slide-active,
  .news--landing .news__slide.swiper-slide-next {
    opacity: 1;
  }
}
@media (max-width: 39.375em) {
  .news--landing .news__slide.swiper-slide-next {
    opacity: 0.5;
  }
}
.news--landing .news__pagination {
  display: none;
}
@media (max-width: 71.25em) {
  .news--landing .news__pagination {
    display: flex;
  }
}
.news--landing .news__next,
.news--landing .news__prev {
  top: calc(50% - 40px);
}
.news__container {
  position: relative;
}
@media (max-width: 93.75em) {
  .news__container {
    max-width: 945px;
  }
}

.news__top {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.news__top .news__title {
  margin-bottom: 0;
}
@media (max-width: 48em) {
  .news__top {
    margin-bottom: 30px;
  }
}
@media (max-width: 29.99875em) {
  .news__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.news__main {
  display: flex;
  gap: 60px;
}
@media (max-width: 80em) {
  .news__main {
    gap: 42px;
    flex-direction: column-reverse;
  }
}

.news__socials {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 80em) {
  .news__socials {
    flex-direction: row;
  }
}

.news__date {
  font-size: 16px;
}

.news__socials-item a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #1b1b1b;
}
.news__socials-item a:hover .news__socials-icon {
  fill: #eb7605;
}

.news__content {
  max-width: 995px;
  line-height: 1.5;
}
.news__content .gallery {
  margin: 40px 0;
  display: grid;
  gap: 30px;
}
.news__content .gallery--2 {
  grid-template-columns: repeat(2, 1fr);
}
.news__content .gallery--2 img {
  height: 340px;
}
@media (max-width: 48em) {
  .news__content .gallery--2 img {
    height: 280px;
  }
}
.news__content .gallery--3 {
  grid-template-columns: repeat(3, 1fr);
}
.news__content .gallery--3 img {
  height: 240px;
}
@media (max-width: 48em) {
  .news__content .gallery--3 img {
    height: 200px;
  }
}
.news__content .gallery img {
  margin-top: 0;
  margin-bottom: 16px;
  width: 100%;
  border-radius: 4px;
}
.news__content .gallery figcaption {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 39.375em) {
  .news__content .gallery figcaption {
    font-size: 16px;
  }
}
@media (max-width: 39.375em) {
  .news__content .gallery {
    grid-template-columns: 100%;
  }
}
.news__content h1,
.news__content h2,
.news__content h3,
.news__content h4,
.news__content h5,
.news__content h6 {
  font-weight: 900;
  text-transform: uppercase;
}
.news__content h2 {
  margin: 80px 0 30px;
  font-size: 36px;
}
@media (max-width: 48em) {
  .news__content h2 {
    font-size: 30px;
  }
}
@media (max-width: 39.375em) {
  .news__content h2 {
    margin: 60px 0 30px;
    font-size: 24px;
  }
}
.news__content h3 {
  margin: 70px 0 30px;
  font-size: 30px;
}
@media (max-width: 48em) {
  .news__content h3 {
    font-size: 24px;
  }
}
@media (max-width: 39.375em) {
  .news__content h3 {
    margin: 50px 0 30px;
    font-size: 18px;
  }
}
.news__content h4 {
  margin: 60px 0 20px;
  font-size: 24px;
}
@media (max-width: 39.375em) {
  .news__content h4 {
    font-size: 18px;
  }
}
.news__content h5,
.news__content h6 {
  margin: 15px 0;
  font-size: 20px;
}
.news__content ul {
  margin: 20px 0 40px;
}
.news__content ul li {
  position: relative;
  margin: 16px 0;
  padding-left: 24px;
}
.news__content ul li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #eb7605;
  content: "";
}
.news__content ul li:last-child {
  margin-bottom: 0;
}
.news__content ul.adv li {
  padding-left: 48px;
}
.news__content ul.adv li::before {
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: transparent;
  background-image: url("../img/icons/done.svg");
}
@media (max-width: 48em) {
  .news__content ul.adv li {
    padding-left: 44px;
  }
}
.news__content p {
  margin-bottom: 30px;
}
.news__content p.strong {
  font-size: 20px;
}
@media (max-width: 48em) {
  .news__content p.strong {
    font-size: 18px;
  }
}
@media (max-width: 39.375em) {
  .news__content p.strong {
    font-size: 16px;
  }
}
.news__content img {
  margin: 40px 0;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
@media (max-width: 48em) {
  .news__content img {
    height: 340px;
  }
}
@media (max-width: 29.99875em) {
  .news__content img {
    margin: 30px 0;
    height: 240px;
  }
}
.news__content blockquote {
  position: relative;
  margin: 30px 0;
  padding: 32px 48px;
  font-style: italic;
  background-color: #1b1b1b;
}
.news__content blockquote::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 6px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #eb7605;
  content: "";
}
@media (max-width: 48em) {
  .news__content blockquote {
    padding: 24px;
  }
}
@media (max-width: 48em) {
  .news__content {
    font-size: 16px;
  }
}
@media (max-width: 29.99875em) {
  .news__content {
    font-size: 14px;
  }
}

.news__list {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 27px;
}
@media (max-width: 75em) {
  .news__list {
    margin-bottom: 20px;
    gap: 20px;
  }
}
@media (max-width: 64em) {
  .news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 39.375em) {
  .news__list {
    margin-bottom: 30px;
    grid-template-columns: 100%;
  }
}

.news__title {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .news__title {
    margin-bottom: 30px;
  }
}

.news__author {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.news__author .user__avatar {
  margin: 0;
  border-radius: 50%;
}
@media (max-width: 48em) {
  .news__author .user__avatar {
    height: 64px;
    width: 64px;
  }
}
@media (max-width: 29.99875em) {
  .news__author .user__avatar {
    width: 40px;
    height: 40px;
  }
}
.news__author .user__location {
  font-size: 14px;
}
@media (max-width: 48em) {
  .news__author {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 29.99875em) {
  .news__author {
    margin-bottom: 24px;
  }
}

ul.news__tags {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
ul.news__tags li {
  margin: 0;
  padding-left: 0;
}
ul.news__tags li::before {
  display: none;
}

.news__slider {
  margin-bottom: 40px;
}

@media (max-width: 93.75em) {
  .news__slide .product__img {
    height: 200px;
  }
}
@media (max-width: 55em) {
  .news__slide {
    max-width: 280px;
  }
}

.news__button {
  margin: 0 auto;
  display: block;
  max-width: max-content;
}
@media (max-width: 29.99875em) {
  .news__button {
    padding: 16px 32px;
    font-size: 12px;
  }
}

.news__socials-icon {
  fill: #a8a8a8;
  transition: fill 0.3s ease;
}
.news__socials-icon--vk {
  width: 24px;
  height: 14px;
}
.news__socials-icon--insta {
  width: 18px;
  height: 18px;
}
.news__socials-icon--twitter {
  width: 20px;
  height: 16px;
}
.news__socials-icon--facebook {
  width: 13px;
  height: 20px;
}
.news__socials-icon--ok {
  width: 13px;
  height: 23px;
}

.news__link {
  position: relative;
  display: block;
}

.news__btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.backlink {
  position: relative;
  margin-top: 20px;
  padding-left: 34px;
  display: block;
  font-size: 14px;
  color: #eb7605;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration 0.3s ease;
}
.backlink::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%) rotate(-90deg);
  background-image: url("../img/icons/arrow-detail-accent.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  content: "";
}
.backlink:hover {
  text-decoration-color: #eb7605;
}

.guides__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider--products .products__slider,
.slider--partners .products__slider,
.slider--gallery .products__slider,
.slider--guides .products__slider,
.slider--testimonials .products__slider,
.slider--master .products__slider {
  margin-bottom: 115px;
}
@media (max-width: 80em) {
  .slider--products .products__slider,
  .slider--partners .products__slider,
  .slider--gallery .products__slider,
  .slider--guides .products__slider,
  .slider--testimonials .products__slider,
  .slider--master .products__slider {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .slider--products .products__slider,
  .slider--partners .products__slider,
  .slider--gallery .products__slider,
  .slider--guides .products__slider,
  .slider--testimonials .products__slider,
  .slider--master .products__slider {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .slider--products .products__slider,
  .slider--partners .products__slider,
  .slider--gallery .products__slider,
  .slider--guides .products__slider,
  .slider--testimonials .products__slider,
  .slider--master .products__slider {
    margin-bottom: 60px;
  }
}
.slider--products .slider__title,
.slider--products .slider__descr,
.slider--partners .slider__title,
.slider--partners .slider__descr,
.slider--gallery .slider__title,
.slider--gallery .slider__descr,
.slider--guides .slider__title,
.slider--guides .slider__descr,
.slider--testimonials .slider__title,
.slider--testimonials .slider__descr,
.slider--master .slider__title,
.slider--master .slider__descr {
  max-width: 840px;
  text-align: center;
}
.slider--products .slider__title,
.slider--partners .slider__title,
.slider--gallery .slider__title,
.slider--guides .slider__title,
.slider--testimonials .slider__title,
.slider--master .slider__title {
  margin: 0 auto 20px;
}
@media (max-width: 29.99875em) {
  .slider--products .products__swiper,
  .slider--partners .products__swiper,
  .slider--gallery .products__swiper,
  .slider--guides .products__swiper,
  .slider--testimonials .products__swiper,
  .slider--master .products__swiper {
    margin-bottom: 30px;
  }
}
.slider--products .slider__descr,
.slider--partners .slider__descr,
.slider--gallery .slider__descr,
.slider--guides .slider__descr,
.slider--testimonials .slider__descr,
.slider--master .slider__descr {
  margin: 0 auto 40px;
  font-size: 20px;
}
@media (max-width: 29.99875em) {
  .slider--products .slider__descr,
  .slider--partners .slider__descr,
  .slider--gallery .slider__descr,
  .slider--guides .slider__descr,
  .slider--testimonials .slider__descr,
  .slider--master .slider__descr {
    margin: 0 auto 30px;
    font-size: 14px;
  }
}
.slider--products .product__img,
.slider--partners .product__img,
.slider--gallery .product__img,
.slider--guides .product__img,
.slider--testimonials .product__img,
.slider--master .product__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
@media (max-width: 80em) {
  .slider--products .product__img,
  .slider--partners .product__img,
  .slider--gallery .product__img,
  .slider--guides .product__img,
  .slider--testimonials .product__img,
  .slider--master .product__img {
    height: 240px;
  }
}
@media (max-width: 80em) {
  .slider--products,
  .slider--partners,
  .slider--gallery,
  .slider--guides,
  .slider--testimonials,
  .slider--master {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .slider--products,
  .slider--partners,
  .slider--gallery,
  .slider--guides,
  .slider--testimonials,
  .slider--master {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .slider--products,
  .slider--partners,
  .slider--gallery,
  .slider--guides,
  .slider--testimonials,
  .slider--master {
    margin-bottom: 60px;
  }
}
@media (max-width: 29.99875em) {
  .slider--testimonials .slider__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 47.99875em) {
  .slider--testimonials .testimonials__subtitle {
    font-size: 14px;
  }
}

.slider__container {
  position: relative;
}

@media (max-width: 93.75em) {
  .slider__container.container-small { max-width:1200px; }
  .slider__container { max-width: 945px; }
}

.slider__title {
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 48em) {
  .slider__title {
    margin-bottom: 30px;
  }
}

.slider__pagination {
  margin: 40px auto 0;
  transform: translateX(0) !important;
  gap: 12px;
  text-align: center;
}

.slider__prev,
.slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(10%);
  width: 56px;
  height: 56px;
  cursor: pointer;
}
.slider__prev.byrose:hover .slider__icon, .slider__next.byrose:hover .slider__icon {
	fill:#69c0b0;
}
.slider__prev:hover .slider__icon, .slider__next:hover .slider__icon {
  fill: #eb7605;
}
@media (max-width: 71.25em) {
  .slider__prev,
  .slider__next {
    display: none;
  }
}

.slider__prev {
  left: -90px;
  transform: rotate(180deg) translateY(-10%);
}
@media (max-width: 93.75em) {
  .slider__prev {
    left: -70px;
  }
}

.slider__next {
  right: -90px;
}
@media (max-width: 93.75em) {
  .slider__next {
    right: -70px;
  }
}

.slider__icon {
  width: 100%;
  height: 100%;
  fill: #363535;
  transition: fill 0.3s ease;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #363535;
  cursor: pointer;
}
.slider__pagination.byrose .swiper-pagination-bullet-active {
  background-color:#69c0b0 !important;
}
.swiper-pagination-bullet.byrose.swiper-pagination-bullet-active {
  background-color:#69c0b0 !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #eb7605;
}
.slider__pagination.byrose .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color:#69c0b0 !important;
}

.products__slide {
  /* max-width: 270px; */
  /* max-width:380px; */
  height: auto;
}
@media (max-width: 93.75em) {
  .products__slide {
    /* max-width: 295px; */
  }
}
@media (max-width: 768px) {
  .products__slide {
    /* max-width: 270px; */
  }
}
@media (max-width: 60.75em) {
  .products__slide {
    transition: opacity 0.3s ease;
    opacity: 0.5;
  }
  .products__slide.swiper-slide-next,
  .products__slide.swiper-slide-active {
    opacity: 1;
  }
}
@media (max-width: 39.375em) {
  .products__slide.swiper-slide-next {
    opacity: 0.5;
  }
  .products__slide.swiper-slide-active {
    opacity: 1;
  }
}
@media (max-width: 22.5em) {
  .products__slide {
    max-width: 280px;
  }
}

.partners__swiper {
  margin-bottom: 40px;
}
@media (max-width: 47.99875em) {
  .partners__swiper {
    margin-bottom: 30px;
  }
}

.partners__slide {
  padding: 10px;
  transform: translateX(-45px);
  width: 174px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1b1b1b;
  border-radius: 4px;
}
.partners__slide img {
  max-width: 100%;
}
@media (max-width: 80em) {
  .partners__slide {
    width: 140px;
    height: 80px;
  }
}
@media (max-width: 29.99875em) {
  .partners__slide {
    width: 80px;
    height: 45px;
  }
}

.gallery__slider {
  margin-bottom: 40px;
}
@media (max-width: 80em) {
  .gallery__slider {
    margin-bottom: 30px;
  }
}

.gallery__swiper {
  margin-bottom: 40px;
}

.gallery__slide {
  width: 380px;
  height: 280px;
  transform: translateX(-85px);
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 80em) {
  .gallery__slide {
    width: 300px;
    height: 220px;
  }
}
@media (max-width: 48em) {
  .gallery__slide {
    width: 213px;
    height: 157px;
  }
}

.gallery__video-slide {
  height: 100%;
}

.gallery__video {
  position: relative;
  display: block;
  box-shadow: 0 16px 40px 0 rgba(187, 182, 182, 0.1490196078);
  border-radius: 16px;
  height: 100%;
  overflow: hidden;
}

.gallery__btn {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 48em) {
  .gallery__btn {
    width: 48px;
    height: 48px;
  }
}

.gallery__button {
  margin: 0 auto;
  display: block;
  max-width: max-content;
  font-size: 14px;
}

.album__slider {
  margin-bottom: 23px;
}
@media (max-width: 80em) {
  .album__slider {
    margin-bottom: 16px;
  }
}
@media (max-width: 47.99875em) {
  .album__slider {
    margin-bottom: 12px;
  }
}
@media (max-width: 29.99875em) {
  .album__slider {
    margin-bottom: 7px;
  }
}

.album__slide {
  max-width: 970px;
  width: 100%;
  height: 615px;
}
.album__slide img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 80em) {
  .album__slide {
    width: 709px;
    height: 458px;
  }
}
@media (max-width: 47.99875em) {
  .album__slide {
    height: 340px;
  }
}
@media (max-width: 29.99875em) {
  .album__slide {
    height: 188px;
  }
}

.album__prev {
  top: calc(50% - 120px);
  left: -82px;
}
@media (max-width: 80em) {
  .album__prev {
    top: calc(50% - 80px);
  }
}
@media (max-width: 71.25em) {
  .album__prev {
    display: block;
  }
}
@media (max-width: 60.75em) {
  .album__prev {
    left: -70px;
  }
}
@media (max-width: 39.375em) {
  .album__prev {
    display: none;
  }
}

.album__next {
  top: calc(50% - 120px);
  right: -82px;
}
@media (max-width: 80em) {
  .album__next {
    top: calc(50% - 80px);
  }
}
@media (max-width: 71.25em) {
  .album__next {
    display: block;
  }
}
@media (max-width: 60.75em) {
  .album__next {
    right: -70px;
  }
}
@media (max-width: 39.375em) {
  .album__next {
    display: none;
  }
}

.thumbnails__slide {
  width: 226px;
  height: 148px;
  cursor: pointer;
}
.thumbnails__slide img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid transparent;
}
@media (max-width: 47.99875em) {
  .thumbnails__slide img {
    border-radius: 8px;
  }
}
@media (max-width: 29.99875em) {
  .thumbnails__slide img {
    border-radius: 4px;
  }
}
.thumbnails__slide.swiper-slide-thumb-active img {
  border-color: #eb7605;
}
@media (max-width: 80em) {
  .thumbnails__slide {
    width: 165px;
    height: 108px;
  }
}
@media (max-width: 47.99875em) {
  .thumbnails__slide {
    width: 123px;
    height: 80px;
  }
}
@media (max-width: 29.99875em) {
  .thumbnails__slide {
    width: 68px;
    height: 44px;
  }
}

.guides__slider {
  margin-bottom: 40px;
}
@media (max-width: 29.99875em) {
  .guides__slider {
    margin-bottom: 30px;
  }
}
@media (max-width: 39.375em) {
  .guides__slider .guide__button {
    padding: 16px 32px;
  }
}

.guides__swiper {
  margin-bottom: 40px;
}
@media (max-width: 29.99875em) {
  .guides__swiper {
    margin-bottom: 30px;
  }
}

@media (max-width: 47.99875em) {
  .guides__slide {
    max-width: 620px;
  }
}
@media (max-width: 39.375em) {
  .guides__slide {
    max-width: 280px;
  }
}
@media (max-width: 29.99875em) {
  .guides__slide {
    opacity: 0.5;
  }
  .guides__slide.swiper-slide-active {
    opacity: 1;
  }
}

.guides__button {
  margin: 0 auto;
  display: block;
  max-width: max-content;
  text-align: center;
}

.testimonials__slide {
  max-width: 585px;
  height: auto;
  transition: opacity 0.3s;
}

.testimonials__slide--video {
  max-width: 465px;
  width: 100%;
}

.testimonials__slide--shorts {
  max-width: 247px;
}

@media (max-width: 630px) {
  .testimonials__slide {
    max-width: 260px;
  }

  .testimonials__slide--video {
    max-width: 240px;
  }

  .testimonials__slide--shorts {
    max-width: 200px;
  }
}

.testimonials__slide--shorts .mini-rating {
  display: none;
}

.testimonials__slide--shorts .info__video img {
  width: 100%;
  height: 225px;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
}

.testimonials__slide--video iframe {
  height: 225px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .testimonials__slide--shorts .info__video img,
  .testimonials__slide--video iframe {
    height: 200px;
  }
}

@media (max-width: 47.99875em) {
  .testimonials__slide {
    opacity: 0.5;
  }
  .testimonials__slide.swiper-slide-active {
    opacity: 1;
  }
}

.video-preview {
  cursor: pointer;
}

.testimonials__slide .video-preview {
  margin-bottom: 15px;
}

.testimonials__slide .video-preview,
.testimonials__slide .video-preview img {
  width: 100%;
}

.testimonials__slide--shorts .video-preview {
  margin: 0 auto 15px;
  max-width: 70%;
  border-radius: 12px;
  overflow: hidden;
}

.master__card {
  margin: 0 auto;
  max-width: 990px;
  padding: 40px;
  text-align: center;
}
@media (max-width: 29.99875em) {
  .master__card {
    padding: 40px 15px;
  }
}

.master__title {
  margin-bottom: 30px;
}
@media (max-width: 47.99875em) {
  .master__title {
    font-size: 18px;
  }
}

.master__button {
  margin: 0 auto;
  display: block;
  max-width: max-content;
}
@media (max-width: 29.99875em) {
  .master__button {
    font-size: 14px;
  }
}

.faq--single {
  padding: 20px 0 120px;
}
@media (max-width: 80em) {
  .faq--single {
    padding: 20px 0 96px;
  }
}
@media (max-width: 48em) {
  .faq--single {
    padding: 20px 0 80px;
  }
}
@media (max-width: 29.99875em) {
  .faq--single {
    padding: 15px 0 60px;
  }
}
.faq--flow {
  margin-bottom: 115px;
}
@media (max-width: 80em) {
  .faq--flow {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .faq--flow {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .faq--flow {
    margin-bottom: 60px;
  }
}
.faq--flow .faq__title {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .faq--flow .faq__title {
    margin-bottom: 30px;
  }
}

.faq__list .faq__item._active,
.faq__list .faq__item._before {
  border-color: transparent;
}

.faq__item {
  padding: 24px 30px 8px;
  border-bottom: 1px solid #4f4f4f;
}
@media (max-width: 48em) {
  .faq__item {
    padding: 24px 20px 8px;
  }
}
.faq__item._active {
  padding: 24px 30px;
  background-color: #1b1b1b;
  border-color: transparent;
  border-radius: 16px;
}
@media (max-width: 48em) {
  .faq__item._active {
    padding: 24px 20px;
  }
}

.spollers__title {
  width: 100%;
  margin-bottom: 16px;
  padding-right: 40px;
  min-height: 32px;
  text-align: left;
  background-image: url("../img/icons/spoller-open.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 30px;
  line-height: 1.5;
}
.spollers__title._spoller-active {
  background-image: url("../img/icons/spoller-close.svg");
}
@media (max-width: 48em) {
  .spollers__title {
    font-size: 20px;
  }
}
@media (max-width: 29.99875em) {
  .spollers__title {
    font-size: 16px;
  }
}

@media (max-width: 29.99875em) {
  .spollers__body {
    font-size: 14px;
  }
}

.info--main {
  margin-bottom: 95px;
}
@media (max-width: 47.99875em) {
  .info--main {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .info--main {
    margin-bottom: 60px;
  }
}
.info--landing {
  margin-bottom: 120px;
}
@media (max-width: 80em) {
  .info--landing .info__content {
    align-items: center;
  }
}
@media (max-width: 80em) {
  .info--landing .info__main img {
    width: 450px;
    height: 280px;
  }
}
@media (max-width: 80em) and (max-width: 60.75em) {
  .info--landing .info__main img {
    width: 100%;
    height: 420px;
  }
}
@media (max-width: 80em) and (max-width: 29.99875em) {
  .info--landing .info__main img {
    height: 200px;
  }
}
@media (max-width: 60.75em) {
  .info--landing .info__main {
    width: 100%;
  }
}
@media (max-width: 29.99875em) {
  .info--landing .info__main .info__video {
    margin-bottom: 16px;
  }
  .info--landing .info__main .info__descr {
    font-size: 14px;
  }
}
@media (max-width: 80em) {
  .info--landing {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .info--landing {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .info--landing {
    margin-bottom: 60px;
  }
}

@media (max-width: 60.75em) {
  .info__container {
    padding: 0 40px;
  }
}
@media (max-width: 47.99875em) {
  .info__container {
    padding: 0 20px;
  }
}

.info__main,
.info__content-wrapper {
  width: 100%;
}

.info__main {
  max-width: 500px;
}

.info__title {
  margin-bottom: 30px;
  font-size: 35px;
}

@media (max-width: 80em) {
  .info__main {
    max-width: 400px;
  }

  .info__title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .info__main {
    max-width: 260px;
  }
}

@media (max-width: 630px) {
  .info__main {
    max-width: 100%;
  }
}

@media (max-width: 60.75em) {
  .info__title {
    margin-bottom: 15px;
  }
}

.info__content {
  display: flex;
  gap: 40px;
}

@media (max-width: 630px) {
  .info__content {
    flex-direction: column;
  }
}

.info__text {
  font-size: 20px;
  line-height: 1.5;
}
.info__text p:not(:last-child) {
  margin-bottom: 20px;
}
.info__text ul li {
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
  font-size: 18px;
}
.info__text ul li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #eb7605;
  border-radius: 50%;
}
.info__text ul li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 80em) {
  .info__text ul li {
    font-size: 16px;
  }
}

.info__text h3 {
  margin: 40px 0 20px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 80em) {
  .info__text h3 {
    font-size: 18px;
  }
}
@media (max-width: 29.99875em) {
  .info__text h3 {
    margin: 20px 0;
  }
}
@media (max-width: 80em) {
  .info__text {
    font-size: 16px;
  }
}
@media (max-width: 60.75em) {
  .info__title {
    font-size: 35px;
  }

  .info__text {
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .info__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .info__text {
    font-size: 14px;
  }
}

.info__video {
  position: relative;
  display: block;
  box-shadow: 0 16px 40px 0 rgba(187, 182, 182, 0.1490196078);
  border-radius: 16px;
  overflow: hidden;
}

.info__video-img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

.info__btn {
  left: 30px;
  bottom: 10px;
}

@media (max-width: 60.75em) {
  .info__btn {
    left: 40px;
    bottom: 32px;
  }
}
@media (max-width: 47.99875em) {
  .info__btn {
    left: 20px;
    bottom: 20px;
  }
}

.info__descr {
  top: -20px;
  position: relative;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Source Sans 3", sans-serif;
}

@media (max-width: 768px) {
  .info__descr {
    top: 0;
  }
}

@media (max-width: 630px) {
  .info__descr {
    display: none;
  }
}

.info__descr strong {
  color: #eb7605;
}

/*.info__descr::before {
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  left: -108px;
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("../img/decor/promo-arrow.svg");
  background-repeat: no-repeat;
  content: "";
 } */
/* @media (max-width: 47.99875em) {
  .info__descr::before {
    display: none;
  }
} */

@media (max-width: 80em) {
  .info__descr {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .info__descr {
    font-size: 18px;
  }
}

.info__descr-img-mobile {
  display: none;
}

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

  .info__descr-img-mobile {
    display: block;
  }
}

.gallery .gallery__btn {
  top: auto;
  left: 32px;
  bottom: 32px;
  transform: translate(0);
}
@media (max-width: 80em) {
  .gallery .gallery__btn {
    bottom: 24px;
  }
}
@media (max-width: 47.99875em) {
  .gallery .gallery__btn {
    width: 64px;
    height: 64px;
  }
}

.gallery__navigation {
  margin-bottom: 30px;
}

.gallery__list {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 60.75em) {
  .gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 47.99875em) {
  .gallery__list {
    gap: 20px;
  }
}
@media (max-width: 29.99875em) {
  .gallery__list {
    margin-bottom: 30px;
    grid-template-columns: 100%;
    gap: 30px;
  }
}

.gallery__item {
  width: 100%;
}
.gallery__item img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

.excursion {
  margin: 0 auto;
  max-width: 1920px;
  background-repeat: no-repeat;
}
.excursion--dark {
  margin-bottom: 60px;
  background-position: right;
  background-size: 25% 100%;
  background-image: url("../img/decor/excursion-dark.jpg");
}

@media (max-width: 768px) {
  .excursion--dark {
    margin-bottom: 30px;
  }
}

.excursion--dark .excursion__wrapper {
  justify-content: flex-end;
}

@media (max-width: 85.375em) {
  .excursion--dark .excursion__wrapper {
    justify-content: center;
  }
}
@media (max-width: 60.75em) {
  .excursion--dark .excursion__wrapper {
    padding: 224px 0 284px;
    /*     background-image: url("../img/decor/excursion-dark-mobile.jpg"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 29.99875em) {
  .excursion--dark .excursion__wrapper {
    padding: 160px 0 220px;
  }
}

.excursion--dark .excursion__info {
  margin-left: auto;
  padding: 100px 0 40px 40px;
  text-align: right;
}

@media (max-width: 972px) {
  .excursion--dark .excursion__info {
    padding: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 60.75em) {
  .excursion--dark {
    background-image: none !important;
  }
}
@media (max-width: 47.9375em) {
  .excursion--dark {
    margin-bottom: 30px;
  }
}

.excursion--light .excursion__info {
  padding: 54px 0;
  margin-right: auto;
  padding-right: 40px;
}

@media (max-width: 60.75em) {
  .excursion--light .excursion__info {
    padding: 0;
  }
}

.excursion--light .excursion__descr {
  margin-bottom: 40px;
}

@media (max-width: 525px) {
  .excursion--light .excursion__descr,
  .excursion--light .excursion__info {
    margin-bottom: 0;
  }
}

.excursion--light .excursion__wrapper {
  justify-content: flex-start;
}
@media (max-width: 85.375em) {
  .excursion--light .excursion__wrapper {
    justify-content: center;
  }
}
@media (max-width: 60.75em) {
  .excursion--light .excursion__wrapper {
    padding: 224px 0 304px;
    /*     background-image: url("../img/decor/excursion-light-mobile.jpg"); */
    background-size: cover;
    background-position: center;
  }
}
@media (max-width: 29.99875em) {
  .excursion--light .excursion__wrapper {
    padding: 160px 0 220px;
  }
}
@media (max-width: 60.75em) {
  .excursion--light .excursion__content {
    flex-direction: column-reverse;
  }
}

@media (max-width: 60.75em) {
  .excursion--light {
    background-image: none;
  }
}

.excursion__top {
  margin-bottom: 40px;
  background-image: url("../img/icons/clock.svg");
  background-repeat: no-repeat;
}

.excursion--dark .excursion__top {
  padding-right: 80px;
  background-position: right top;
}

.excursion--light .excursion__top {
  padding-left: 80px;
  background-position: left top;
}

.excursion__img-wrapper {
  max-width: 552px;
}

@media (max-width: 972px) {
  .excursion__img-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .excursion__img-wrapper {
    height: 370px;
  }
}

@media (max-width: 525px) {
  .excursion__img-wrapper {
    height: 378px;
  }
}

.excursion__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-repeat: no-repeat;
}

@media (max-width: 525px) {
  .excursion--light .excursion__img-wrapper {
    height: auto;
  }

  .excursion--light .excursion__img-wrapper > img {
    margin-bottom: 50px;
    height: 378px;
  }
}

@media (max-width: 768px) {
  .excursion__top {
    margin-bottom: 32px;
  }
}

@media (max-width: 29.99875em) {
  .excursion__top {
    margin-bottom: 20px;
    padding-left: 56px;
    background-size: 35px;
  }
}

.excursion__label {
  margin-bottom: 10px;
  display: block;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .excursion__label {
    font-size: 20px;
  }
}

@media (max-width: 525px) {
  .excursion__label {
    font-size: 18px;
  }
}

.excursion__title {
  margin-bottom: 40px;
}

@media (max-width: 60.75em) {
  .excursion__title {
    margin-bottom: 30px;
  }
}

.excursion__duration {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 60.75em) {
  .excursion__duration {
    font-size: 24px;
  }
}
@media (max-width: 29.99875em) {
  .excursion__duration {
    font-size: 20px;
  }
}

@media (max-width: 525px) {
  .excursion__duration {
    font-size: 18px;
  }
}

.excursion__descr {
  margin-bottom: 40px;
  line-height: 1.5;
  font-size: 20px;
  font-family: "Source Sans 3", sans-serif;
}

@media (max-width: 80em) {
  .excursion__descr {
    font-size: 16px;
  }
}

@media (max-width: 80em) {
  .excursion__descr {
    margin-bottom: 30px;
  }
}

@media (max-width: 29.99875em) {
  .excursion__descr {
    font-size: 14px;
  }
}

.excursion__content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

@media (max-width: 1280px) {
  .excursion__content {
    gap: 60px;
  }
}

@media (max-width: 972px) {
  .excursion--dark .excursion__content {
    flex-direction: column-reverse;
  }
}

@media (max-width: 60.75em) {
  .excursion__content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 525px) {
  .excursion--dark .excursion__content {
    flex-direction: column;
  }
}

.excursion__info {
  max-width: 1100px;
  width: 100%;
}

@media (max-width: 80em) {
  .excursion__info {
    max-width: 542px;
  }
}
@media (max-width: 60.75em) {
  .excursion__info {
    margin-bottom: 20px;
    max-width: 100%;
  }
}

.excursion__navigation {
  margin-bottom: 32px;
}

.excursion__wrapper {
  /* width: 100%; */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.subtabs__menu {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

@media (max-width: 525px) {
  .subtabs__menu {
    justify-content: flex-start;
  }
}

.subtabs__btn {
  padding: 8px 16px;
  background-color: #1b1b1b;
  font-size: 20px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
}

.subtabs__btn.active {
  background-color: #eb7605;
  color: #000000;
}

@media (max-width: 1280px) {
  .subtabs__btn {
    font-size: 16px;
  }
}

@media (max-width: 29.99875em) {
  .subtabs__btn {
    font-size: 12px;
  }
}

.subtabs__content {
  min-height: 140px;
  font-family: "Source Sans 3", sans-serif;
}
@media (max-width: 60.75em) {
  .subtabs__content {
    min-height: auto;
  }
}

.subtabs__one {
  display: none;
  line-height: 1.5;
  font-size: 20px;
}
.subtabs__one.active {
  display: block;
}
@media (max-width: 80em) {
  .subtabs__one {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .subtabs__one {
    font-size: 18px;
  }
}

@media (max-width: 47.99875em) {
  .subtabs__one {
    font-size: 14px;
  }
}

.testimonials {
  margin: 120px 0 110px;
}
@media (max-width: 80em) {
  .testimonials {
    margin: 95px 0;
  }
}
@media (max-width: 48em) {
  .testimonials {
    margin: 0 0 80px;
  }
}

.testimonials__container {
  position: relative;
}

.testimonials__title {
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .testimonials__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .testimonials__title {
    margin-bottom: 20px;
  }
}
.testimonials__subtitle {
  position:relative;
  margin:0 auto 40px;
  padding-left:53px;
  display:block;
  max-width:max-content;
  color:#eb7605;
  font-size:16px;
  line-height:1.5;
  text-decoration:none;
}
.testimonials__subtitle::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 43px;
  height: 38px;
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/decor/tripadvisor.png");
  content: "";
}
@media (max-width: 48em) {
  .testimonials__subtitle {
    margin-bottom: 30px;
  }
}

.testimonials__slider {
  margin-bottom: 40px;
}
@media (max-width: 48em) {
  .testimonials__slider {
    margin-bottom: 30px;
  }
}

.testimonials__swiper {
  margin-bottom: 40px;
}
@media (max-width: 48em) {
  .testimonials__swiper {
    margin-bottom: 30px;
  }
}

.testimonials__button {
  margin: 0 auto;
  display: block;
  max-width: max-content;
}

.placement {
  margin: 0 auto;
  max-width: 1920px;
  position: relative;
  padding: 70px 0 50px;
  background-image: url("../img/decor/map-1920.jpg");

  background-repeat: no-repeat;
}

@media (max-width: 1280px) {
  .placement {
    padding: 26px 0;
    background-image: url("../img/decor/map-1280.jpg");
  }
}

@media (max-width: 972px) {
  .placement {
    padding: 25px 0 157px;
    background-image: url("../img/decor/map-768.jpg");
  }
}

@media (max-width: 767px) {
  .placement {
    padding: 25px 0 200px;
  }
}

@media (max-width: 525px) {
  .placement {
    padding: 0 0 370px;
    background-size: 100% 580px;
    background-position: bottom;
    background-image: url("../img/decor/map-320.jpg");
  }
}

.placement--contacts {
  margin-bottom: 120px;
  padding: 20px 0 0;
  background-image: none;
}
.placement--contacts .breadcrumbs {
  margin-bottom: 40px;
}
@media (max-width: 47.99875em) {
  .placement--contacts .breadcrumbs {
    margin-bottom: 30px;
  }
}
.placement--contacts .placement__info {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 47.99875em) {
  .placement--contacts .placement__info {
    max-width: 100%;
    border-bottom-left-radius: 0;
    border-top-right-radius: 16px;
  }
}
@media (max-width: 29.99875em) {
  .placement--contacts .placement__info {
    padding: 30px 24px;
  }
}
@media (max-width: 80em) {
  .placement--contacts .placement__title {
    font-size: 24px;
  }
}
@media (max-width: 29.99875em) {
  .placement--contacts .placement__title {
    font-size: 18px;
  }
}
@media (max-width: 47.99875em) {
  .placement--contacts .placement__item:last-child {
    margin-bottom: 0;
  }
}
.placement--contacts .placement__marker--arbat {
  top: 46%;
  left: 55%;
}
@media (max-width: 47.99875em) {
  .placement--contacts .placement__marker--arbat {
    top: 69%;
    left: 23%;
  }
}
@media (max-width: 29.99875em) {
  .placement--contacts .placement__marker--arbat {
    top: 75%;
    left: 12%;
  }
}
.placement--contacts .placement__marker--reviera {
  top: 66%;
  left: 66%;
}
@media (max-width: 47.99875em) {
  .placement--contacts .placement__marker--reviera {
    top: 80%;
    left: 40%;
  }
}

@media (max-width: 29.99875em) {
  .placement--contacts .placement__marker--reviera {
    left: 26%;
  }
}

@media (max-width: 80em) {
  .placement--contacts {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .placement--contacts {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .placement--contacts {
    margin-bottom: 60px;
  }
}

.placement__content {
  margin-bottom: 40px;
  position: relative;
  display: flex;
}
@media (max-width: 47.99875em) {
  .placement__content {
    flex-direction: column;
  }
}
.placement__info {
  padding: 40px;
  max-width: 405px;
  background-color: #1b1b1b;
  border-radius: 16px;
}

@media (max-width: 972px) {
  .placement__info {
    max-width: 50%;
    padding: 25px 30px;
  }
}

@media (max-width: 767px) {
  .placement__info {
    max-width: 100%;
  }
}

.placement__link {
  display: block;
  text-align: center;
}

@media (max-width: 972px) {
  .placement__link {
    padding: 16px 32px;
  }
}

@media (max-width: 525px) {
  .placement__link {
    font-size: 16px;
    padding: 16px 48px;
  }
}

.placement__map {
  width: 100%;
  background-image: url("../img/decor/contacts-map.jpg");
  background-size: cover;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media (max-width: 80em) {
  .placement__map {
    background-position: bottom;
  }
}
@media (max-width: 47.99875em) {
  .placement__map {
    height: 400px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 16px;
  }
}
@media (max-width: 29.99875em) {
  .placement__map {
    height: 300px;
  }
}

.placement__title {
  margin-bottom: 30px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .placement__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 31.25em) {
  .placement__title {
    text-align: center;
    font-size: 18px;
  }
}

@media (max-width: 972px) {
  .placement__title {
    font-size: 26px;
  }

  .placement__item {
    padding-left: 16px;
  }
}

@media (max-width: 525px) {
  .placement__title {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .placement__item {
    padding-left: 32px;
  }
}

.placement__navigation {
  margin-bottom: 20px;
}

.placement__item {
  position: relative;
  padding-left: 40px;
  line-height: 1.5;
}
.placement__item a {
  transition: color 0.3s ease;
}
.placement__item a:hover {
  color: #eb7605;
}
.placement__item:not(:last-child) {
  margin-bottom: 20px;
}
.placement__item::before {
  position: absolute;
  left: 0;
  display: block;
  background-repeat: no-repeat;
  content: "";
}
.placement__item--location::before {
  top: 4px;
  width: 18px;
  height: 24px;
  background-image: url("../img/icons/location.svg");
}
.placement__item--phone::before {
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/phone.svg");
}
.placement__item--telegram::before {
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/telegram3-18.png");
}
.placement__item--whatsapp::before {
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/whatsapp18.png");
}
.placement__item--mail::before {
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 15px;
  background-image: url("../img/icons/mail.svg");
}
.placement__item--worktime::before {
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/icons/worktime.svg");
}
.placement__item--shop::before {
  top: 5px;
  width: 24px;
  height: 22.5px;
  background-image: url("../img/icons/shop.svg");
}
@media (max-width: 31.25em) {
  .placement__item {
    font-size: 16px;
  }
}

.placement__marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.placement__marker--arbat {
  top: 57%;
  left: 44%;
}
@media (max-width: 68.75em) {
  .placement__marker--arbat {
    top: 58%;
    left: 25%;
  }
}
@media (max-width: 31.25em) {
  .placement__marker--arbat {
    top: 66%;
    left: 13%;
  }
}
.placement__marker--reviera {
  top: 36%;
  left: 46.5%;
}
@media (max-width: 68.75em) {
  .placement__marker--reviera {
    left: 55%;
  }
}

@media (max-width: 47.99875em) {
  .placement__marker--reviera {
    top: 70%;
    left: 45%;
  }
}
@media (max-width: 31.25em) {
  .placement__marker--reviera {
    margin-right: 15px;
    top: 65%;
    left: 38%;
  }
}

.placement__caption {
  position: relative;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 8px 16px;
  background-color: #1b1b1b;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .placement__caption {
    font-size: 12px;
  }
}

.placement__caption.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.placement__open {
  max-width: max-content;
}

.placement__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.placement__close-icon {
  width: 12px;
  height: 12px;
}

.placement__location-icon {
  width: 33px;
  height: 44px;
}

.placement__list {
  display: flex;
  gap: 30px;
}
@media (max-width: 47.99875em) {
  .placement__list {
    flex-direction: column;
    gap: 20px;
  }
}

.placement__part {
  width: 100%;
  padding: 30px;
  background-color: #1b1b1b;
  border-radius: 16px;
}
@media (max-width: 47.99875em) {
  .placement__part {
    padding: 20px 30px;
  }
}
@media (max-width: 47.99875em) {
  .placement__part {
    padding: 20px 16px;
  }
}

.placement__item-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.placement__item-decor {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #eb7605;
  display: flex;
  justify-content: center;
  align-items: center;
}

.placement__item-icon--speaker {
  width: 24px;
  height: 24px;
}
.placement__item-icon--multimedia {
  width: 18px;
  height: 18px;
}

.placement__name {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
  font-family: "Mont", sans-serif;
}
@media (max-width: 29.99875em) {
  .placement__name {
    font-size: 14px;
  }
}

.stocks__list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 47.99875em) {
  .stocks__list {
    margin-bottom: 30px;
  }
}

.find {
  margin-bottom: 120px;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 80em) {
  .find {
    margin-bottom: 95px;
  }
}
@media (max-width: 48em) {
  .find {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .find {
    margin-bottom: 60px;
  }
}

.find__title {
  margin-bottom: 20px;
}

.find__descr {
  margin-bottom: 40px;
  font-size: 16px;
}
@media (max-width: 47.99875em) {
  .find__descr {
    margin-bottom: 30px;
  }
}
@media (max-width: 29.99875em) {
  .find__descr {
    font-size: 14px;
  }
}

.find__list {
  display: flex;
  gap: 30px;
}
@media (max-width: 47.99875em) {
  .find__list {
    flex-direction: column;
  }
}

.find__item {
  max-width: calc(33% - 20px);
  padding: 32px 24px;
  background-color: #1b1b1b;
  border-radius: 16px;
}
@media (max-width: 47.99875em) {
  .find__item {
    padding: 32px 20px;
    max-width: 100%;
  }
}

.find__item-icon {
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
}

.find__heading {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Mont", sans-serif;
}

.find__text {
  font-size: 16px;
}
.find__text:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 80em) {
  .find__text {
    font-size: 14px;
  }
}

.timeline {
  margin-bottom: 120px;
  counter-reset: timeline;
}
@media (max-width: 80em) {
  .timeline {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .timeline {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .timeline {
    margin-bottom: 60px;
  }
}

.timeline__content {
  max-width: 730px;
  margin: 0 auto;
}

.timeline__title {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .timeline__title {
    font-size: 36px;
  }
}
@media (max-width: 29.99875em) {
  .timeline__title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}

.timeline__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  list-style: none;
}
@media (max-width: 29.99875em) {
  .timeline__list {
    gap: 20px;
  }
}

.timeline__item {
  position: relative;
  padding-left: 78px;
  line-height: 1.5;
}
.timeline__item::before {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 0;
  width: 48px;
  height: 48px;
  background-color: #eb7605;
  border-radius: 50%;
  font-weight: 900;
  font-size: 24px;
  line-height: 48px;
  text-align: center;
  color: #000000;
  counter-increment: timeline;
  content: counter(timeline);
}
.timeline__item:not(:last-child)::after {
  position: absolute;
  top: 50px;
  left: 23px;
  width: 2px;
  height: 110%;
  background-color: #363535;
  content: "";
}
@media (max-width: 29.99875em) {
  .timeline__item {
    padding-left: 68px;
  }
}

.timeline__date {
  margin-bottom: 5px;
  display: block;
}

.timeline__name {
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: 47.99875em) {
  .timeline__name {
    font-size: 24px;
  }
}
@media (max-width: 29.99875em) {
  .timeline__name {
    font-size: 18px;
  }
}

@media (max-width: 47.99875em) {
  .timeline__text {
    font-size: 16px;
  }
}
@media (max-width: 29.99875em) {
  .timeline__text {
    font-size: 14px;
  }
}

.work__list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  line-height: 1.5;
}

.work__item {
  padding: 40px 48px;
}
@media (max-width: 39.375em) {
  .work__item {
    padding: 30px 20px;
  }
}

.work__name {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 39.375em) {
  .work__name {
    font-size: 18px;
  }
}

.work__salary {
  position: relative;
  margin-bottom: 30px;
  padding-left: 55px;
  font-size: 20px;
}
.work__salary::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  content: "";
  background-size: cover;
  background-image: url("../img/icons/wallet.svg");
}
@media (max-width: 39.375em) {
  .work__salary {
    margin-bottom: 24px;
    font-size: 14px;
  }
}

.work__tags {
  margin-bottom: 24px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 39.375em) {
  .work__tags {
    gap: 10px;
  }
}

.work__tag {
  padding: 10px 20px;
  background-color: #363535;
  border-radius: 4px;
  font-size: 14px;
}
@media (max-width: 39.375em) {
  .work__tag {
    padding: 4px 8px;
    font-size: 12px;
  }
}

.work__text {
  margin-bottom: 30px;
}
.work__text p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 47.99875em) {
  .work__text {
    font-size: 14px;
  }
}

.work__button {
  display: block;
  max-width: max-content;
}
@media (max-width: 29.99875em) {
  .work__button {
    font-size: 12px;
  }
}

.partners__list {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
  line-height: 1.5;
}
@media (max-width: 47.99875em) {
  .partners__list {
    margin-bottom: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 29.99875em) {
  .partners__list {
    margin-bottom: 30px;
    grid-template-columns: 100%;
    gap: 20px;
  }
}

.partners__item {
  padding: 24px 32px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .partners__item {
    padding: 24px 20px;
  }
}

.partners__logo {
  margin-bottom: 24px;
  max-width: 100%;
}

.partners__name {
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Mont", sans-serif;
}
@media (max-width: 48em) {
  .partners__name {
    margin-bottom: 12px;
    font-size: 16px;
  }
}

.partners__descr {
  font-size: 16px;
}
@media (max-width: 80em) {
  .partners__descr {
    font-size: 14px;
  }
}

.album__top {
  margin-bottom: 40px;
  display: flex;
  gap: 300px;
  align-items: flex-end;
}
@media (max-width: 80em) {
  .album__top {
    gap: 64px;
  }
}
@media (max-width: 60.75em) {
  .album__top {
    gap: 40px;
  }
}
@media (max-width: 47.99875em) {
  .album__top {
    margin-bottom: 30px;
  }
}
@media (max-width: 39.375em) {
  .album__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.section__text {
  min-height: 260px;
}
.section__text p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 80em) {
  .section__text {
    font-size: 16px;
  }
}
@media (max-width: 47.99875em) {
  .section__text {
    font-size: 14px;
  }
}
@media (max-width: 39.375em) {
  .section__text {
    min-height: initial;
  }
}

.album__content {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.album__content img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 80em) {
  .album__content {
    gap: 24px;
  }
}
@media (max-width: 47.99875em) {
  .album__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 39.375em) {
  .album__content {
    margin-bottom: 30px;
  }
}

.album__button {
  margin: 0 auto;
  display: block;
  max-width: max-content;
}

.sources {
  margin-bottom: 120px;
}
@media (max-width: 80em) {
  .sources {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .sources {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .sources {
    margin-bottom: 60px;
  }
  .sources--download .sources__item {
    flex-direction: row;
  }
  .sources--download .sources__title {
    margin-bottom: 30px;
  }
}

.sources__container {
  max-width: 995px;
}

.sources__title {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 80em) {
  .sources__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 47.99875em) {
  .sources__title {
    font-size: 30px;
  }
}
@media (max-width: 29.99875em) {
  .sources__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.sources__list {
  display: flex;
  gap: 20px;
}
.sources__list li {
  width: 100%;
}
@media (max-width: 47.99875em) {
  .sources__list {
    flex-direction: column;
  }
}

.sources__item {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 4px;
}
@media (max-width: 29.99875em) {
  .sources__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.sources__img {
  max-width: 100%;
}

.sources__descr {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 29.99875em) {
  .sources__descr {
    font-size: 14px;
  }
}

.relative__title {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 60%;
}
@media (max-width: 80em) {
  .relative__title {
    max-width: 90%;
  }
}
@media (max-width: 48em) {
  .relative__title {
    margin: 0 auto 30px;
    max-width: 100%;
    font-size: 30px;
  }
}
@media (max-width: 29.99875em) {
  .relative__title {
    font-size: 24px;
  }
}

.relative__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 979px) {
  .relative__list {
    grid-template-columns: 100%;
    gap: 20px;
  }
}

@media (max-width: 29.99875em) {
  .relative__list {
    gap: 16px;
  }
}

.relative__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background-repeat: no-repeat;
  background-position: 24px 40px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .relative__item {
    padding: 20px;
  }
}

@media (max-width: 525px) {
  .relative__item {
    gap: 10px;
  }
}

.relative__name {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 80em) {
  .relative__name {
    font-size: 18px;
  }
}

.relative__image {
  width: 100px;
  height: 100px;
}

@media (max-width: 525px) {
  .relative__image {
    width: 75px;
    height: 75px;
  }
}

.relative__descr {
  font-size: 20px;
}

@media (max-width: 80em) {
  .relative__descr {
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .relative__descr {
    font-size: 14px;
  }
}

.desire {
  counter-reset: desires;
}

.desire__title {
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 1280px) {
  .desire__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .desire__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.desire__list {
  max-width: 80%;
  margin: 0 auto 35px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 145);
}

@media (max-width: 80em) {
  .desire__list {
    max-width: 90%;
    margin-bottom: 30px;
    gap: 20px;
  }
}

@media (max-width: 60.75em) {
  .desire__list {
    margin-bottom: 50px;
    gap: 40px;
  }
}

@media (max-width: 39.375em) {
  .desire__list {
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 25px;
  }
}

@media (max-width: 525px) {
  .desire__list {
    grid-template-columns: 100%;
    gap: 15px;
  }
}

.desire__item {
  margin: 0 -15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  line-height: 1.5;
}

.desire__item::before {
  counter-increment: desires;
  content: counter(desires);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: #eb7605;
  font-family: "Oswald", sans-serif;
}

@media (max-width: 768px) {
  .desire__item::before {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .desire__item::before {
    font-size: 42px;
  }
}

.desire__item::after {
  position: absolute;
  top: 7px;
  border-radius: 50%;
  opacity: 0.8;
  content: "";
  line-height: 1;
}
@media (max-width: 60.75em) {
  .desire__item:nth-child(1) {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}
@media (max-width: 39.375em) {
  .desire__item:nth-child(1) {
    grid-column: 1/2;
  }
}

.desire__item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 2/3;
  transform: translateY(-25px);
}
@media (max-width: 80em) {
  .desire__item:nth-child(2) {
    transform: translateY(-10px);
  }
}
@media (max-width: 60.75em) {
  .desire__item:nth-child(2) {
    margin: 0 auto;
    transform: translateY(0);
    grid-column: 1/4;
  }
}
@media (max-width: 39.375em) {
  .desire__item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.desire__item:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media (max-width: 60.75em) {
  .desire__item:nth-child(3) {
    margin: 0 auto;
    grid-column: 2/5;
  }
}
@media (max-width: 39.375em) {
  .desire__item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

@media (max-width: 525px) {
  .desire__item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
}

.desire__item:nth-child(4) {
  grid-column: 4/5;
  grid-row: 2/3;
  transform: translateY(-25px);
}

@media (max-width: 80em) {
  .desire__item:nth-child(4) {
    transform: translateY(-10px);
  }
}

@media (max-width: 60.75em) {
  .desire__item:nth-child(4) {
    margin: 0 auto;
    transform: translateY(0);
    grid-column: 3/6;
  }
}

@media (max-width: 39.375em) {
  .desire__item:nth-child(4) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

@media (max-width: 525px) {
  .desire__item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
}

.desire__item:nth-child(5) {
  grid-column: 5/6;
  grid-row: 1/2;
}

@media (max-width: 60.75em) {
  .desire__item:nth-child(5) {
    margin-left: auto;
    grid-column: 4/6;
  }
}

@media (max-width: 39.375em) {
  .desire__item:nth-child(5) {
    margin: 0 auto;
    max-width: 150px;
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

@media (max-width: 525px) {
  .desire__item:nth-child(5) {
    max-width: 100%;
    grid-column: 1 / 2;
    grid-row: 5 / 6;
  }
}

@media (max-width: 80em) {
  .desire__item {
    font-size: 14px;
  }
}
@media (max-width: 60.75em) {
  .desire__item {
    max-width: 172px;
  }
}
@media (max-width: 39.375em) {
  .desire__item {
    gap: 10px;
    max-width: 100%;
    font-size: 12px;
  }
}

@media (max-width: 525px) {
  .desire__item {
    max-width: 100%;
    width: 100%;
    margin: 0;
    flex-direction: row;
    text-align: left;
  }
}

.desire__card {
  padding: 40px 30px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .desire__card {
    padding: 30px;
  }
}
@media (max-width: 39.375em) {
  .desire__card {
    padding: 30px 15px;
  }
}

.desire__card-title {
  margin-bottom: 30px;
  line-height: 1.5;
}
@media (max-width: 47.99875em) {
  .desire__card-title {
    font-size: 18px;
  }
}
@media (max-width: 29.99875em) {
  .desire__card-title {
    margin-bottom: 20px;
  }
}

.desire__button {
  margin: 0 auto;
  display: block;
  max-width: max-content;
}
@media (max-width: 29.99875em) {
  .desire__button {
    font-size: 12px;
  }
}

.process__container {
  position: relative;
}

.process__title {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .process__title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
.process__title--dark {
  margin-bottom: 20px;
}
@media (max-width: 80em) {
  .process__title--light {
    font-size: 30px;
  }
}
@media (max-width: 47.99875em) {
  .process__title--light {
    font-size: 24px;
  }
}
@media (max-width: 29.99875em) {
  .process__title--light {
    font-size: 18px;
  }
}
@media (max-width: 39.375em) {
  .process__title {
    font-size: 24px;
  }
}

.process__parts {
  margin-bottom: 120px;
  display: flex;
  gap: 30px;
}
@media (max-width: 80em) {
  .process__parts {
    margin-bottom: 96px;
  }
}
@media (max-width: 47.99875em) {
  .process__parts {
    gap: 20px;
    margin-bottom: 80px;
  }
}
@media (max-width: 39.375em) {
  .process__parts {
    flex-direction: column;
  }
}
@media (max-width: 29.99875em) {
  .process__parts {
    margin-bottom: 60px;
  }
}

.process__part {
  max-width: calc(50% - 15px);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.process__part img {
  width: 100%;
  height: 454px;
  object-fit: cover;
}

@media (max-width: 80em) {
  .process__part img {
    height: 380px;
  }
}

@media (max-width: 47.99875em) {
  .process__part img {
    height: 240px;
  }
}

@media (max-width: 29.99875em) {
  .process__part img {
    height: 220px;
  }
}

@media (max-width: 47.99875em) {
  .process__part {
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 39.375em) {
  .process__part {
    max-width: 100%;
  }
}

.process__box {
  padding: 24px 30px 48px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}
@media (max-width: 80em) {
  .process__box {
    padding: 24px 30px 40px;
  }
}

.process__name {
  margin-bottom: 32px;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

@media (max-width: 1280px) {
  .process__name {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .process__name {
    font-size: 18px;
  }
}

@media (max-width: 630px) {
  .process__name {
    margin-bottom: 20px;
  }
}

.process__descr {
  margin-bottom: 32px;
  font-size: 20px;
}

@media (max-width: 80em) {
  .process__descr {
    font-size: 16px;
  }
}
@media (max-width: 47.99875em) {
  .process__descr {
    margin-bottom: 16px;
    font-size: 14px;
  }
}

.process__btn {
  margin-top: auto;
  display: inline-flex;
}

@media (max-width: 768px) {
  .process__btn {
    font-size: 16px;
    padding: 16px 32px;
  }
}

.process__subtitle {
  margin-bottom: 40px;
  display: block;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .process__subtitle {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.process__slider {
  margin-bottom: 120px;
}

@media (max-width: 80em) {
  .process__slider {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .process__slider {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .process__slider {
    margin-bottom: 60px;
  }
}

.process__swiper {
  margin-bottom: 40px;
}

.process__slide {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  line-height: 1.5;
}

.process__slide img {
  max-width: 380px;
  height: 275px;
  object-fit: cover;
}
@media (max-width: 60.75em) {
  .process__slide img {
    max-width: 245px;
    height: 240px;
  }
}
@media (max-width: 39.375em) {
  .process__slide img {
    max-width: 100%;
    width: 100%;
    height: 195x;
  }
}
@media (max-width: 48em) {
  .process__slide {
    max-width: 620px;
  }
}
@media (max-width: 39.375em) {
  .process__slide {
    max-width: 280px;
    flex-direction: column;
    opacity: 0.5;
    transition: opacity 0.5s;
  }
  .process__slide.swiper-slide-active {
    opacity: 1;
  }
}

.process__info {
  padding: 32px 40px;
  background-color: #363535;
}

@media (max-width: 60.75em) {
  .process__info {
    padding: 20px 40px;
  }
}
@media (max-width: 39.375em) {
  .process__info {
    padding: 24px 20px;
  }
}

.process__slide-name {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 60.75em) {
  .process__slide-name {
    margin-bottom: 20px;
  }
}
@media (max-width: 39.375em) {
  .process__slide-name {
    margin-bottom: 16px;
    font-size: 20px;
  }
}

.process__slide-descr {
  font-size: 20px;
}

@media (max-width: 60.75em) {
  .process__slide-descr {
    font-size: 14px;
  }
}

.process__next,
.process__prev {
  top: calc(50% - 48px);
}

.process__list {
  max-width: 88.7%;
  margin: 0 auto 40px;
  display: flex;
  gap: 27px;
}

@media (max-width: 1280px) {
  .process__list {
    max-width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 47.99875em) {
  .process__list {
    margin-bottom: 30px;
    gap: 20px;
  }
}

@media (max-width: 39.375em) {
  .process__list {
    flex-direction: column;
  }
}

.process__item {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1280px) {
  .process__item {
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 630px) {
  .process__item {
    max-width: 100%;
  }
}

.process__item img {
  max-width: 100%;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 80em) {
  .process__item img {
    height: 200px;
  }
}
@media (max-width: 47.99875em) {
  .process__item img {
    height: 160px;
  }
}
@media (max-width: 39.375em) {
  .process__item img {
    height: 186px;
  }
}

.process__text {
  padding: 24px 30px 32px;
  text-align: center;
  line-height: 1.5;
  flex-grow: 1;
  font-size: 20px;
}

@media (max-width: 80em) {
  .process__text {
    padding: 24px 30px;
    font-size: 16px;
  }
}
@media (max-width: 60.75em) {
  .process__text {
    padding: 24px 16px 32px;
    font-size: 14px;
  }
}
@media (max-width: 39.375em) {
  .process__text {
    padding: 24px 16px;
  }
}

.process__button {
  margin: 0 auto 120px;
  display: block;
  max-width: max-content;
}
@media (max-width: 80em) {
  .process__button {
    margin: 0 auto 95px;
  }
}
@media (max-width: 47.99875em) {
  .process__button {
    margin: 0 auto 80px;
  }
}
@media (max-width: 29.99875em) {
  .process__button {
    margin: 0 auto 60px;
    padding: 16px 32px;
    font-size: 12px;
  }
}

.process__results {
  display: flex;
  gap: 30px;
  line-height: 1.5;
}
@media (max-width: 60.75em) {
  .process__results {
    gap: 20px;
    justify-content: space-between;
  }
}
@media (max-width: 39.375em) {
  .process__results {
    flex-direction: column;
  }
}

.process__result {
  max-width: calc(33% - 20px);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 60.75em) {
  .process__result {
    max-width: calc(33% - 12px);
    font-size: 14px;
  }
}

@media (max-width: 39.375em) {
  .process__result {
    padding: 20px 24px;
    max-width: 100%;
  }
}

@media (max-width: 525px) {
  .process__result {
    flex-direction: row;
    gap: 16px;
    padding: 20px;
    align-items: flex-start;
  }
}

.process__icon {
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
}

@media (max-width: 525px) {
  .process__icon {
    margin-bottom: 0;
    flex: none;
  }
}

.price {
  line-height: 1.5;
}

.price--single .price__info {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 80em) {
  .price__container {
    max-width: 1210px;
  }
}

.price__title {
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 29.99875em) {
  .price__title {
    margin-bottom: 15px;
  }
}

.price__subtitle {
  margin-bottom: 40px;
  display: block;
  text-align: center;
  font-size: 20px;
  font-family: "Source Sans 3", sans-serif;
}
@media (max-width: 29.99875em) {
  .price__subtitle {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.price__content {
  margin-bottom: 120px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 80em) {
  .price__content {
    margin-bottom: 95px;
    gap: 40px;
  }
}
@media (max-width: 47.99875em) {
  .price__content {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .price__content {
    margin-bottom: 60px;
  }
}

.price__img {
  max-width: 318px;
}
@media (max-width: 80em) {
  .price__img {
    max-width: 255px;
    height: 470px;
  }
}
@media (max-width: 60.75em) {
  .price__img {
    display: none;
  }
}

.price__duration {
  position: relative;
  margin-bottom: 43px;
  padding-left: 80px;
  font-size: 20px;
  font-weight: 500;
}
.price__duration::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 56px;
  height: 56px;
  background-image: url("../img/icons/clock.svg");
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
@media (max-width: 80em) {
  .price__duration::before {
    width: 48px;
    height: 48px;
    background-size: contain;
  }
}
@media (max-width: 29.99875em) {
  .price__duration::before {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 80em) {
  .price__duration {
    margin-bottom: 30px;
    padding-left: 72px;
    font-size: 20px;
  }
}

.price__pricelist {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .price__pricelist {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .price__pricelist {
    margin-bottom: 20px;
  }
}

.price__button-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 768px) {
  .price__button-wrapper {
    gap: 35px;
  }
}

.price__decor-line-mobile {
  display: none;
}

@media (max-width: 630px) {
  .price__button-wrapper {
    flex-direction: column-reverse;
  }

  .price__decor-line {
    display: none;
  }

  .price__decor-line-mobile {
    display: block;
    position: absolute;
    bottom: 0;
    left: 28%;
  }
}

.price__button-images {
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 630px) {
  .price__button-images {
    flex-direction: row-reverse;
    gap: 25px;
  }
}

.price__button-images span {
  font-size: 20px;
}

@media (max-width: 630px) {
  .price__button-images span {
    font-size: 14px;
  }
}

.price__button {
  margin-bottom: 30px;
  display: block;
  max-width: max-content;
}

.price__button--detail {
  margin: 0 auto 24px;
}
@media (max-width: 29.99875em) {
  .price__button {
    font-size: 12px;
  }
}

.price__descr {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .price__descr {
    font-size: 16px;
  }
}

@media (max-width: 29.99875em) {
  .price__descr {
    font-size: 14px;
  }
}

.price__discount {
  padding: 40px 120px;
  text-align: center;
}
@media (max-width: 80em) {
  .price__discount {
    padding: 40px 92px;
  }
}
@media (max-width: 768px) {
  .price__discount {
    padding: 40px 60px;
  }
}
@media (max-width: 29.99875em) {
  .price__discount {
    padding: 30px 20px;
  }
}

.prire__discount-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 80em) {
  .prire__discount-title {
    font-size: 20px;
  }
}

@media (max-width: 525px) {
  .prire__discount-title {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.price__amount {
  display: block;
  font-family: Oswald, sans-serif;
}
.price__amount--old {
  max-width: max-content;
  font-weight: 900;
  font-size: 42px;
  background-position: top;
  background-image: url("../img/icons/line-cross.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 47.99875em) {
  .price__amount--old {
    font-size: 32px;
  }
}
.price__amount--new {
  font-size: 52px;
  font-weight: 900;
  color: #eb7605;
}
@media (max-width: 47.99875em) {
  .price__amount--new {
    font-size: 42px;
  }
}

.price__highlight {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}
@media (max-width: 768px) {
  .price__highlight {
    font-size: 18px;
  }
}

.price__recommend {
  position: relative;
  margin: 0 auto;
  max-width: max-content;
  padding-left: 54px;
  min-height: 38px;
  display: flex;
  font-size: 14px;
  align-items: center;
  background-image: url("../img/decor/tripadvisor.png");
  background-repeat: no-repeat;
}
.price__recommend::before {
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  left: -108px;
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("../img/decor/promo-arrow.svg");
  background-repeat: no-repeat;
  content: "";
}
@media (max-width: 25.875em) {
  .price__recommend::before {
    display: none;
  }
}
@media (max-width: 39.375em) {
  .price__recommend {
    margin: 0 auto;
    max-width: max-content;
    padding-left: 42px;
    background-size: 32px;
    background-position: left center;
  }
  .price__recommend::before {
    width: 70px;
    height: 70px;
    transform: translateY(-90%);
    left: -80px;
  }
}

.offer {
  margin-bottom: 120px;
  line-height: 1.5;
}
@media (max-width: 80em) {
  .offer {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .offer {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .offer {
    margin-bottom: 60px;
  }
}

.offer__title {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .offer__title {
    margin-bottom: 30px;
  }
}

.offer__list {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 80em) {
  .offer__list {
    gap: 32px 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 47.99875em) {
  .offer__list {
    margin-bottom: 30px;
  }
}
@media (max-width: 39.375em) {
  .offer__list {
    margin-bottom: 30px;
    gap: 20px 30px;
  }
}

.offer__item {
  max-width: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  font-size: 16px;
}
@media (max-width: 80em) {
  .offer__item {
    max-width: calc(33% - 20px);
    width: 100%;
  }
}
@media (max-width: 39.375em) {
  .offer__item {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 29.99875em) {
  .offer__item {
    font-size: 12px;
  }
}

.offer__icon {
  width: 48px;
  height: 48px;
}

.offer__price {
  margin: 0 auto;
  display: block;
  max-width: max-content;
  font-weight: 900;
}
.offer__price--old {
  margin-bottom: 5px;
  font-size: 40px;
  background-position: top;
  background-image: url("../img/icons/line.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 47.99875em) {
  .offer__price--old {
    font-size: 36px;
  }
}
.offer__price--new {
  margin-bottom: 40px;
  font-size: 55px;
  color: #eb7605;
}
@media (max-width: 47.99875em) {
  .offer__price--new {
    margin-bottom: 30px;
    font-size: 40px;
  }
}

.offer__button {
  margin: 0 auto 24px;
  display: block;
  max-width: max-content;
}
@media (max-width: 29.99875em) {
  .offer__button {
    padding: 16px 32px;
    font-size: 12px;
  }
}

.offer__recommend {
  position: relative;
  margin: 0 auto;
  padding-left: 58px;
  max-width: 225px;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-size: 14px;
  background-image: url("../img/decor/food.png");
  background-repeat: no-repeat;
  background-size: 48px;
}
.offer__recommend::before {
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  left: -108px;
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("../img/decor/promo-arrow.svg");
  background-repeat: no-repeat;
  content: "";
}
@media (max-width: 25.875em) {
  .offer__recommend::before {
    display: none;
  }
}
@media (max-width: 39.375em) {
  .offer__recommend::before {
    width: 70px;
    height: 70px;
    transform: translateY(-90%);
    left: -90px;
  }
}

.booking {
  margin-bottom: 120px;
}
@media (max-width: 80em) {
  .booking {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .booking {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .booking {
    margin-bottom: 60px;
  }
}

.booking__title {
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .booking__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .booking__title {
    margin-bottom: 20px;
  }
}

.booking__info {
  margin-bottom: 40px;
  line-height: 1.5;
}
@media (max-width: 29.99875em) {
  .booking__info {
    margin-bottom: 30px;
  }
}

.booking__descr,
.booking__accent {
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 60.75em) {
  .booking__descr {
    font-size: 16px;
  }
}
@media (max-width: 39.375em) {
  .booking__descr {
    font-size: 14px;
  }
}

.booking__accent {
  display: block;
  font-size: 20px;
  color: #eb7605;
  font-weight: 700;
  text-transform: uppercase;
}

.booking__content .select__value {
  padding: 11px 16px;
  min-height: 48px;
  border: 1px solid #4f4f4f;
  background-color: #363535;
  border-radius: 2px;
  color: #ffffff;
  font-size: 16px;
}
.booking__content .select__options {
  top: 110%;
  padding: 11px 16px;
  font-size: 16px;
}

.booking__start {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.25fr;
  gap: 40px 20px;
}

.booking__start.hide {
  display: none;
}
@media (max-width: 80em) {
  .booking__start {
    gap: 40px 20px;
    grid-template-columns: 1.43fr 0.97fr 1fr;
  }
}
@media (max-width: 60.75em) {
  .booking__start {
    gap: 20px 40px;
    grid-template-columns: 1fr 1.09fr;
  }
}
@media (max-width: 39.375em) {
  .booking__start {
    grid-template-columns: 100%;
  }
}

@media (max-width: 60.75em) {
  .booking__calendar {
    grid-row: 1 / 3;
  }
}

@media (max-width: 630px) {
  .booking__calendar {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    margin-bottom: 10px;
  }
}

.booking__timing {
  grid-column: 2 / 4;
  align-self: flex-start;
}

@media (max-width: 60.75em) {
  .booking__timing {
    grid-column: 1/3;
    grid-row: 5 / 6;
  }
}
@media (max-width: 39.375em) {
  .booking__timing {
    grid-column: 1/2;
  }
}

.booking__clues {
  grid-column: 1/4;
  display: flex;
  justify-content: space-between;
  gap: 27px;
  line-height: 1.5;
}
@media (max-width: 80em) {
  .booking__clues {
    gap: 20px;
  }
}

@media (max-width: 60.75em) {
  .booking__clues {
    grid-column: 2/3;
    grid-row: 2 / 4;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px 40px;
  }

  .booking__clues .booking__clue {
    max-width: calc(50% - 20px);
    width: 100%;
  }
}

@media (max-width: 767px) {
  .booking__clues {
    display: none;
  }
}

@media (max-width: 630px) {
  .booking__clues {
    display: flex;
    grid-column: 1/2;
    grid-row: 3/4;
    gap: 10px;
  }
}

.booking__clue {
  display: flex;
  align-items: center;
  gap: 15px;
}

.booking__clue .box {
  width: 80px;
  flex: none;
}

@media (max-width: 525px) {
  .booking__clue .box {
    width: 60px;
  }
}

.booking__clue--default .box {
  background-color: #747d7e;
}

@media (max-width: 972px) {
  .booking__information-banner .booking__clue--default .booking__clue-descr {
    display: none;
  }
}

.booking__clue--nightwalking .box {
  background-color: #4232ff;
}
.booking__clue--nightwalking .booking__clue-descr {
  max-width: 162px;
  text-align: center;
}
@media (max-width: 60.75em) {
  .booking__clue--nightwalking .booking__clue-descr {
    max-width: 100%;
  }
}
.booking__clue--master-classes .box {
  background-color: #1f499f;
}
.booking__clue--sold .box {
  border: 1px solid #4c5159;
  background-color: #000000;
}
@media (max-width: 80em) {
  .booking__clue {
    gap: 15px;
  }
}

.box {
  position: relative;
  width: 97px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.box::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
}
.box span {
  line-height: 1.5;
}
.box span:first-child {
  padding: 6px 0 6px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 60.75em) {
  .box span:first-child {
    padding: 8px 0 10px;
  }
}
@media (max-width: 47.99875em) {
  .box span:first-child {
    padding: 6px 0 8px;
  }
}
.box span:last-child {
  padding: 6px 0 10px;
}
@media (max-width: 60.75em) {
  .box span:last-child {
    padding: 10px 0 8px;
  }
}
@media (max-width: 47.99875em) {
  .box span:last-child {
    padding: 8px 0 6px;
  }
}
@media (max-width: 80em) {
  .box {
    width: 72px;
  }
}
@media (max-width: 39.375em) {
  .box {
    width: 60px;
    font-size: 16px;
  }
}

.booking__clue-descr {
  max-width: 185px;
  font-size: 16px;
}
.booking__clue-descr span {
  display: block;
}
.booking__clue-descr span:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 39.375em) {
  .booking__clue-descr span:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 80em) {
  .booking__clue-descr {
    font-size: 12px;
  }
}

@media (max-width: 972px) {
  .booking__clue-descr {
    font-size: 16px;
  }
}

@media (max-width: 525px) {
  .booking__clue-descr {
    font-size: 12px;
  }
}

.booking__finish {
  display: none;
  line-height: 1.5;
}
.booking__finish.show {
  display: block;
}

.booking__backlink {
  position: relative;
  margin-bottom: 25px;
  padding-left: 40px;
  text-transform: uppercase;
  font-size: 12px;
  color: #eb7605;
}
.booking__backlink::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 30px;
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/icons/clock.svg");
}
@media (max-width: 47.99875em) {
  .booking__backlink {
    margin: 0 auto 25px;
    display: block;
    max-width: max-content;
  }
}

.booking__content {
  display: grid;
  gap: 40px;
  grid-template-columns: 2.06fr 1fr;
}

@media (max-width: 80em) {
  .booking__content {
    gap: 20px;
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 60.75em) {
  .booking__content {
    display: flex;
    flex-direction: column;
  }
}

.booking__data {
  padding: 40px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
  background-color: #1b1b1b;
  border-radius: 16px;
}
@media (max-width: 80em) {
  .booking__data {
    padding: 30px 30px 40px;
    gap: 30px 20px;
  }
}
@media (max-width: 39.375em) {
  .booking__data {
    padding: 30px 20px;
    gap: 20px;
  }
}

.booking__part {
  max-width: calc(50% - 20px);
  width: 100%;
  /* костылюга */
  height: 52%;
}

@media (max-width: 1280px) {
  .booking__part {
    height: 43%;
  }
}

@media (max-width: 768px) {
  .booking__part {
    height: auto;
  }
}

.booking__part .booking__field:not(:last-child) {
  margin-bottom: 16px;
}
.booking__part--payment {
  align-self: flex-end;
}
@media (max-width: 80em) {
  .booking__part--payment {
    margin-bottom: 74px;
  }
}
@media (max-width: 39.375em) {
  .booking__part--payment {
    margin-bottom: 0;
  }
}
.booking__part--gift {
  align-self: flex-end;
}
.booking__part--gift .booking__button {
  padding: 10px 48px;
}
.booking__part--gift .booking__field {
  max-width: 190px;
}
.booking__part--gift .booking__field:not(:last-child) {
  margin-bottom: 0;
}

@media (max-width: 39.375em) {
  .booking__part--gift .booking__field {
    max-width: 100%;
    width: 100%;
  }
}

.booking__part--gift .booking__field-box {
  align-items: center;
}

@media (max-width: 525px) {
  .booking__part--gift .booking__field-box {
    flex-direction: column;
  }
}

.booking__part--tickets .booking__heading,
.booking__part--contacts .booking__heading {
  margin-bottom: 10px;
}

.booking__part--agreement {
  margin-top: 25px;
  max-width: 100%;
}

.booking__part--agreement .checkbox__text {
  font-size: 16px;
}

@media (max-width: 39.375em) {
  .booking__part {
    max-width: 100%;
  }
}

.booking__heading {
  margin-bottom: 15px;
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.booking__available {
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
  color: #eb7605;
}

@media (max-width: 29.99875em) {
  .booking__field .field__input {
    font-size: 14px;
  }
  .booking__field .field__input::placeholder {
    font-size: 14px;
  }
}

.booking__detail {
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
}

.booking__field-box {
  display: flex;
  gap: 20px;
}

.booking__button {
  display: block;
}
@media (max-width: 29.99875em) {
  .booking__button {
    font-size: 12px;
  }
}

.booking__result {
  padding: 30px 24px;
  border: 1.5px solid #eb7605;
  background-color: #1b1b1b;
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
@media (max-width: 80em) {
  .booking__result .booking__heading {
    font-size: 20px;
  }
}

@media (max-width: 60.75em) {
  .booking__result {
    padding: 30px;
  }
  .booking__result .field--agreement .checkbox__text {
    font-size: 12px;
  }
}
@media (max-width: 39.375em) {
  .booking__result {
    padding: 20px;
  }
}

.booking__result .field--agreement {
  margin-bottom: 15px;
}

.booking__result .checkbox__text {
  font-size: 16px;
}

.booking__result .booking__submit {
  margin: 0 auto;
  max-width: max-content;
  color: #ffffff;
  font-size: 20px;
}

@media (max-width: 1280px) {
  .booking__result .booking__submit {
    font-size: 16px;
  }
}

@media (max-width: 525px) {
  .booking__result .booking__submit {
    padding: 12px 32px;
  }
}

.booking__resume {
  margin-bottom: 30px;
}
@media (max-width: 60.75em) {
  .booking__resume {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (max-width: 39.375em) {
  .booking__resume {
    grid-template-columns: 100%;
    gap: 15px;
  }
}

.booking__resume-item:not(:last-child) {
  margin-bottom: 15px;
}

@media (max-width: 60.75em) {
  .booking__resume-item:not(:last-child) {
    margin-bottom: 0;
  }
}

.booking__resume-item span {
  font-size: 16px;
}

.booking__resume-item strong {
  display: block;
  font-size: 24px;
}

.booking__resume-item strong span {
  font-size: 24px;
}

@media (max-width: 60.75em) {
  .booking__resume-item strong,
  .booking__resume-item strong span {
    font-size: 18px;
  }
}

@media (max-width: 29.99875em) {
  .booking__resume-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
}

.booking__submit {
  margin-bottom: 15px;
}
@media (max-width: 29.99875em) {
  .booking__submit {
    font-size: 12px;
  }
}

.gift__title {
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .gift__title {
    font-size: 30px;
  }
}

.gift__descr {
  margin: 0 auto 40px;
  max-width: 945px;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 80em) {
  .gift__descr {
    margin-bottom: 30px;
    font-size: 16px;
  }
}

.gift__content {
  display: flex;
  align-items:start;
  gap: 30px;
}
@media (max-width: 60.75em) {
  .gift__content {
    flex-direction: column;
    gap: 20px;
  }
}

@media (min-width:1400px) {
	.gift__img { padding-top:99px}
	.testimonials__slide .review__top { min-height:115px;align-items:start}
	.testimonials__slide .user { align-items:start}
}
.gift__img {
  object-fit: cover;
}
@media (max-width: 80em) {
  .gift__img {
    max-width: 310px;
    height: 175px;
  }
}
@media (max-width: 60.75em) {
  .gift__img {
    max-width: 430px;
    height: 245px;
  }
}
@media (max-width: 39.375em) {
  .gift__img {
    max-width: 100%;
    height: auto;
  }
}

.gift__duration {
  position: relative;
  margin-bottom: 30px;
  padding-left: 80px;
}
.gift__duration::before {
  position: absolute;
  left: 0;
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../img/icons/duration.svg");
  content: "";
}
@media (max-width: 29.99875em) {
  .gift__duration::before {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 29.99875em) {
  .gift__duration {
    margin-bottom: 16px;
    padding-left: 48px;
  }
}

.gift__info {
  max-width: 100%;
  width: 100%;
}

.gift__label {
  margin-bottom: 10px;
  display: block;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 29.99875em) {
  .gift__label {
    margin-bottom: 3px;
    font-size: 12px;
  }
}

.gift__duration-fact {
  display: block;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 29.99875em) {
  .gift__duration-fact {
    font-size: 16px;
  }
}

.gift__pricelist {
  margin-bottom: 40px;
  grid-template-columns: repeat(3, 1fr);
}
.gift__pricelist .pricelist__name strong {
  font-size: 24px;
}

@media (max-width: 1280px) {
  .gift__pricelist .pricelist__name strong {
    font-size: 20px;
  }
}

@media (max-width: 39.375em) {
  .gift__pricelist .pricelist__name--quantity-general {
    grid-row: 2/3;
  }
}
.gift__pricelist .pricelist__name--quantity-private {
  display: none;
}
@media (max-width: 39.375em) {
  .gift__pricelist .pricelist__name--quantity-private {
    display: flex;
  }
}
.gift__pricelist .pricelist__name--price-general {
  grid-column: 1/2;
  grid-row: 3/4;
}
.gift__pricelist .pricelist__name--price-private {
  display: none;
}
@media (max-width: 39.375em) {
  .gift__pricelist .pricelist__name--price-private {
    grid-column: 1/2;
    display: flex;
  }
}
.gift__pricelist .pricelist__time strong {
  font-size: 24px;
}

@media (max-width: 1280px) {
  .gift__pricelist .pricelist__time strong {
    font-size: 20px;
  }
}

@media (max-width: 39.375em) {
  .gift__pricelist .pricelist__time--quantity {
    grid-column: 1/3;
    justify-content: center;
  }
}
@media (max-width: 39.375em) {
  .gift__pricelist .pricelist__time--private {
    grid-column: 1/3;
    grid-row: 4/5;
    justify-content: center;
  }
}
.gift__pricelist .pricelist__price strong {
  text-transform: uppercase;
}
.gift__pricelist .pricelist__price strong + span {
  margin-top: 3px;
}
.gift__pricelist .pricelist__price span {
  margin-bottom: 0;
  font-size: 18px;
}
@media (max-width: 39.375em) {
  .gift__pricelist .pricelist__price--quantity-general {
    grid-row: 2/3;
  }
}
@media (max-width: 39.375em) {
  .gift__pricelist .pricelist__price--quantity-private {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}
.gift__pricelist .pricelist__price--price-general {
  grid-column: 2/3;
  grid-row: 3/4;
}
@media (max-width: 39.375em) {
  .gift__pricelist {
    margin-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.gift__button {
  display: block;
  max-width: max-content;
}

@media (max-width: 39.375em) {
  .gift__button {
    padding: 16px 32px;
  }
}
@media (max-width: 29.99875em) {
  .gift__button {
    padding: 16px 24px;
    font-size: 12px;
    width: 100%;
  }
}

.gift-spollers__item .spollers__title {
  position: relative;
  padding-right: 24px;
  max-width: max-content;
  background-image: none;
  font-size: 16px;
}
.gift-spollers__item .spollers__title::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 10px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icons/angle-bottom-white.svg");
  transition: transform 0.3s ease;
  content: "";
}
.gift-spollers__item .spollers__title._spoller-active::after {
  transform: rotate(180deg) translateY(100%);
}
.schedule {
  margin-bottom: 120px;
  line-height: 1.5;
}
@media (max-width: 80em) {
  .schedule {
    margin-bottom: 95px;
  }
}
@media (max-width: 47.99875em) {
  .schedule {
    margin-bottom: 80px;
  }
}
@media (max-width: 29.99875em) {
  .schedule {
    margin-bottom: 60px;
  }
}

.schedule__title {
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 29.99875em) {
  .schedule__title {
    margin-bottom: 30px;
  }
}

.schedule__descr {
  margin: 0 auto 40px;
  max-width: 840px;
  font-size: 20px;
  text-align: center;
}
.schedule__descr strong {
  color: #eb7605;
}
@media (max-width: 60.75em) {
  .schedule__descr {
    margin-bottom: 0;
    max-width: 100%;
    text-align: left;
    font-size: 16px;
    align-self: center;
  }
}
@media (max-width: 39.375em) {
  .schedule__descr {
    grid-row: 1/2;
    text-align: center;
    align-self: stretch;
  }
}

.schedule__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 80em) {
  .schedule__content {
    gap: 20px;
  }
}
@media (max-width: 60.75em) {
  .schedule__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (max-width: 47.99875em) {
  .schedule__content {
    gap: 20px;
  }
}
@media (max-width: 39.375em) {
  .schedule__content {
    grid-template-columns: 100%;
  }
}

.schedule__calendar {
  max-width: 328px;
}
@media (max-width: 80em) {
  .schedule__calendar {
    max-width: 100%;
  }
}

.schedule__info {
  max-width: 832px;
  padding: 40px 30px;
  background-color: #1b1b1b;
  border-radius: 16px;
}
.schedule__info .tabs__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 80em) {
  .schedule__info {
    max-width: 596px;
  }
}
@media (max-width: 60.75em) {
  .schedule__info {
    padding: 30px;
    max-width: 100%;
    grid-column: 1/3;
  }
}
@media (max-width: 39.375em) {
  .schedule__info {
    padding: 30px 20px;
    grid-column: 1/2;
  }
}

.schedule__text {
  margin-bottom: 40px;
}

@media (max-width: 1280px) {
  .schedule__text {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .schedule__text {
    margin-bottom: 20px;
  }
}

.schedule__text p {
  font-size: 20px;
}

@media (max-width: 47.99875em) {
  .schedule__text p {
    font-size: 14px;
  }
}

.schedule__navigation {
  margin-bottom: 40px;
}
@media (max-width: 80em) {
  .schedule__navigation {
    margin-bottom: 30px;
  }
}

.schedule__top {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 80em) {
  .schedule__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.schedule__name {
  margin-bottom: 40px;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  font-family: "Mont", sans-serif;
}

@media (max-width: 80em) {
  .schedule__name {
    margin-bottom: 30px;
    font-size: 24px;
  }
}

@media (max-width: 525px) {
  .schedule__name {
    margin-bottom: 20px;
  }
}

.schedule__chars {
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
}

@media (max-width: 80em) {
  .schedule__chars {
    margin-bottom: 30px;
  }
}

@media (max-width: 39.375em) {
  .schedule__chars {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 525px) {
  .schedule__chars {
    margin-bottom: 20px;
  }
}

.schedule__char {
  position: relative;
  padding-left: 34px;
  font-size: 20px;
}
.schedule__char::before {
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.schedule__char--date::before {
  background-image: url("../img/icons/calendar-mini.svg");
}
.schedule__char--time::before {
  background-image: url("../img/icons/clock.svg");
}

.schedule__advantages {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 80em) {
  .schedule__advantages {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 39.375em) {
  .schedule__advantages {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
  }
}

@media (max-width: 525px) {
  .schedule__advantages {
    margin-bottom: 20px;
  }
}

.schedule__advantage {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
.schedule__advantage:not(:last-child) {
  border-right: 1px solid #363535;
}
@media (max-width: 39.375em) {
  .schedule__advantage:not(:last-child) {
    padding-bottom: 10px;
    max-width: max-content;
    border-right: none;
    border-bottom: 1px solid #363535;
  }
}
@media (max-width: 80em) {
  .schedule__advantage {
    max-width: calc(50% - 10px);
    padding-right: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 3px 16px;
  }
  .schedule__advantage:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 39.375em) {
  .schedule__advantage {
    max-width: 100%;
    padding-right: 0;
  }
  .schedule__advantage img { width:24px}
}
.schedule__advantage strong {
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Mont", sans-serif;
}
@media (max-width: 80em) {
  .schedule__advantage strong {
    margin-bottom: 0;
  }
}
.schedule__advantage span {
  font-size: 16px;
}
@media (max-width: 80em) {
  .schedule__advantage span {
    grid-column: 2/3;
  }
}

.schedule__icon {
  margin-bottom: 16px;
  width: 40px;
  height: 40px;
}
@media (max-width: 80em) {
  .news__slide .product__title2 { min-height:54px}
  .schedule__advantage .schedule__icon { width:24px}
  .schedule__icon {
    margin-bottom: 0;
    grid-row: 1/3;
  }
}

.schedule__button {
  display: block;
  max-width: max-content;
}
@media (max-width: 29.99875em) {
  .schedule__button {
    max-width: 100%;
    text-align: center;
    padding: 16px 12px;
    font-size: 12px;
  }
}

.burger-menu {
  display: none;
}
@media (max-width: 76.875em) {
  .burger-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 5;
  }
  .burger-menu span,
  .burger-menu::before,
  .burger-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
  }
  .burger-menu::before {
    top: 0px;
  }
  .burger-menu::after {
    bottom: 0px;
  }
  .burger-menu span {
    top: calc(50% - 1px);
  }
  .menu-open .burger-menu span {
    transform: scale(0);
  }
  .menu-open .burger-menu::before {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .menu-open .burger-menu::after {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}
@media (max-width: 47.9375em) {
  .burger-menu {
    width: 25px;
    height: 18px;
  }
}

.header {margin-bottom: 66px; }
.header.fixed { position:fixed;height:130px;background-color:black;width:100%;z-index:999}
main.page { padding-top:190px}

@media (max-width: 1280px) {
  .header {
    margin-bottom: 56px;
  }
}

@media (max-width: 768px) {
  .header {
    margin-bottom: 46px;
  }
	.header.fixed { height:60px;background-color:black;width:100%;z-index:999}
	main.page { padding-top:104px}
}

@media (max-width: 380px) {
  .header {
    margin-bottom: 15px;
  }
}

.header .header__link {
  display: block;
  font-size: 14px;
}
.header .header__link--location {
  margin-right: auto;
}
@media (max-width: 76.875em) {
  .header .header__link--location {
    margin-right: 10px;
    margin-left: auto;
  }
}
@media (max-width: 47.9375em) {
  .header .header__link--location {
    margin-bottom: 20px;
    max-width: max-content;
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;
  }
}
.header .header__link--address {
  margin-right: 10px;
}
@media (max-width: 76.875em) {
  .header .header__link--address {
    display: none;
  }
}
@media (max-width: 47.9375em) {
  .header .header__link--address {
    margin-bottom: 20px;
  }
}
.header .header__link--phone {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 76.875em) {
  .header .header__link--address,
  .header .header__link--phone {
    margin-right: 0;
  }
}
@media (max-width: 47.9375em) {
  .header .header__link--address,
  .header .header__link--phone {
    font-size: 18px;
  }
}
@media (max-width: 47.9375em) {
  .header .header__link--address {
    margin-bottom: 20px;
  }
}
.header .header__link--callback {
  margin-right: 10px;
  line-height: 1.15;
  text-decoration: underline;
}
@media (max-width: 76.875em) {
  .header .header__link--callback {
    margin-right: 0;
    font-size: 14px;
    padding-bottom: 15px;
  }
}
@media (max-width: 47.9375em) {
  .header .header__link--callback {
    font-size: 16px;
  }
}

.header__content {
  padding: 10px 0 13px;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 76.875em) {
  .header__content {
    position: relative;
    z-index: 11;
    gap: 20px;
  }
}
@media (max-width: 32.8125em) {
  .header__content {
    gap: 15px;
  }
}

@media (max-width: 47.9375em) {
  .select_header__lang {
    display: none;
  }
}

.select_header__lang-mobile {
  display: none;
}
@media (max-width: 47.9375em) {
  .select_header__lang-mobile {
    display: block;
    max-width: max-content;
    font-size: 18px;
  }
}
@media (max-width: 26.875em) {
  .select_header__lang-mobile {
    margin-bottom: 20px;
  }
}

.header__bottom {
  padding: 8px 0;
  border-top: 1px solid #363535;
  border-bottom: 1px solid #363535;
}
@media (max-width: 76.875em) {
  .header__bottom {
    padding: 0;
    border-top: none;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 76.875em) {
  .header__nav {
    position: fixed;
    z-index: 10;
    top: 66px;
    left: 0;
    transform: translateX(-100%);
    width: 100%;
    height: calc(100% - 66px);
    background-color: #000000;
    overflow-y: auto;
    transition: transform 0.3s ease;
  }
}
@media (max-width: 47.9375em) {
  .header__nav {
    padding: 30px 20px 30px;
    gap: 30px;
  }
}
@media (max-width: 26.875em) {
  .header__nav {
    top: 59px;
    height: calc(100% - 59px);
  }
}

@media (max-width: 76.875em) {
  .header__logo {
    margin-right: 20px;
  }
}
@media (max-width: 32.8125em) {
  .header__logo {
    margin-right: 0;
  }
  .header__logo img {
    width: 100px;
    height: 35px;
  }
}

.header__menu {
  align-items: center;
  width: 100%;
}
@media (max-width: 76.875em) {
  .header__menu {
    flex-direction: column;
    width: 100%;
    font-size: 18px;
  }
  .header__menu li {
    padding-bottom: 23px;
    border-bottom: 1px solid #363535;
  }
}
@media (max-width: 47.9375em) {
  .header__menu {
    gap: 12px;
    font-size: 16px;
  }
  .header__menu li {
    padding-bottom: 12px;
    border-bottom: 1px solid #363535;
  }
}

.header__support {
  margin-left: auto;
  padding: 12px 32px;
  display: block;
}
.header__support.active { background-color:#ff8c1d;color:#000}

#btnGift { display:block}
#mobGift { display:none}
@media (max-width: 76.875em) {
  .header__support {
    box-shadow: none;
  }
	#btnGift { display:none}
	#mobGift { display:block;padding:10px 20px;font-size:14px;margin:20px auto;}
}
@media (max-width: 47.9375em) {
  .header__support {
    margin-left: auto;
  }
}
.footer__logo .header__support {max-width:190px;display:flex;flex-direction:row;margin-top:5px;}
@media (max-width: 26.875em) {
  .header__support {
    max-width: max-content !important;
    padding: 8px 20px;
    font-size: 10px;
  }
}
@media (max-width: 22.4375em) {
  .header__support {
    font-size: 8px;
    padding: 8px 12px;
  }
}

.footer__top {
  padding: 40px 0;
}
.footer__logo { margin-bottom:30px;width:100%}
@media (max-width: 60.75em) {
  .footer__logo {
    margin-bottom: 0;
  }
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 32px 75px;
}
@media (max-width: 60.75em) {
  .footer__content {
    grid-template-columns: 100%;
    gap: 40px;
  }
}
@media (max-width: 39.375em) {
  .footer__content {
    gap: 30px;
  }
}

@media (max-width: 60.75em) {
  .footer__address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 39.375em) {
  .footer__address {
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}
@media (max-width: 60.75em) {
  .footer__contacts {
    flex-direction: row;
    gap: 30px;
  }
}
@media (max-width: 39.375em) {
  .footer__contacts {
    gap: 20px;
    flex-direction: column;
  }
}

.footer__socials {
  margin-bottom: 32px;
}
@media (max-width: 39.375em) {
  .footer__socials {
    margin-bottom: 0;
  }
}

.footer__about {
  grid-column: 1/2;
}
@media (max-width: 60.75em) {
  .footer__about {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 39.375em) {
  .footer__about {
    flex-direction: column;
  }
}

.footer__menu {
  grid-column: 2/3;
  grid-row: 1/3;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 16px;
}
@media (max-width: 60.75em) {
  .footer__menu {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (max-width: 39.375em) {
  .footer__menu {
    display: none;
  }
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer__list a {
  transition: color 0.3s ease;
  line-height: 1.4;
}
.footer__list a:hover {
  color: #eb7605;
}
@media (max-width: 39.375em) {
  .footer__list {
    gap: 20px;
  }
}

.footer__bottom {
  border-top: 1px solid #363535;
  padding: 16px 0;
}
@media (max-width: 39.375em) {
  .footer__bottom {
    padding: 10px 0;
  }
}

.footer__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 14px;
}
@media (max-width: 64em) {
  .footer__info {
    font-size: 13px;
  }
}
@media (max-width: 61.99875em) {
  .footer__info {
    font-size: 12px;
  }
}
@media (max-width: 47.99875em) {
  .footer__info {
    font-size: 10px;
  }
}
@media (max-width: 39.375em) {
  .footer__info {
    gap: 12px;
  }
}

.footer__mobile-menu {
  display: none;
}
@media (max-width: 39.375em) {
  .footer__mobile-menu {
    display: block;
  }
}

.footer__spoller {
  position: relative;
  margin-bottom: 0;
  padding-right: 0;
  background-image: none;
  text-transform: uppercase;
  font-size: 18px;
}
.footer__spoller::after {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 5px;
  background-image: url("../img/icons/angle-bottom.svg");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  transition: transform 0.3s ease;
}
.footer__spoller._spoller-active {
  background-image: none;
}
.footer__spoller._spoller-active::after {
  transform: rotate(180deg) translateY(10%);
}
@media (max-width: 29.99875em) {
  .footer__spoller {
    font-size: 14px;
  }
}

.footer__mobile-item {
  padding: 13px 0;
  border-top: 1px solid #363535;
}
.footer__mobile-item:last-child {
  border-bottom: 1px solid #363535;
}
.footer__mobile-item .footer__list {
  margin-top: 20px;
}

.footer__submenu {
  display: flex;
}
.footer__submenu li:not(:last-child) {
  position: relative;
  margin-right: 12px;
  padding-right: 13px;
}
.footer__submenu li:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #363535;
  width: 1px;
  height: 17px;
  content: "";
}
.footer__submenu a {
  transition: color 0.3s ease;
}
.footer__submenu a:hover {
  color: #eb7605;
}
.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;
}
@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;
}
.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  float: left;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
  text-align: center;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-left {
  text-align: left;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-right {
  text-align: right;
}
.lg-outer.lg-single-item .lg-thumb-outer {
  display: none;
}
.lg-outer .lg-thumb {
  padding: 5px 0;
  height: 100%;
  margin-bottom: -5px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .lg-outer .lg-thumb {
    padding: 10px 0;
  }
}
.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border-radius: 2px;
  margin-bottom: 5px;
  will-change: border-color;
}
@media (min-width: 768px) {
  .lg-outer .lg-thumb-item {
    border-radius: 4px;
    border: 2px solid #fff;
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: rgb(169, 7, 7);
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}
.lg-outer.lg-animate-thumb .lg-thumb {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lg-outer .lg-video-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.lg-outer .lg-video-cont .lg-object {
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-has-iframe .lg-video-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.lg-outer .lg-video-object {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
}
.lg-outer .lg-video-poster {
  z-index: 1;
}
.lg-outer .lg-has-video .lg-video-object {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.lg-outer .lg-has-video.lg-video-loaded .lg-video-poster,
.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button {
  opacity: 0 !important;
}
.lg-outer .lg-has-video.lg-video-loaded .lg-video-object {
  opacity: 1;
}

@keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes lg-play-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.lg-video-play-button {
  width: 18%;
  max-width: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  will-change: opacity, transform;
  -webkit-transition: -webkit-transform 0.25s
      cubic-bezier(0.17, 0.88, 0.32, 1.28),
    opacity 0.1s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28),
    opacity 0.1s;
  -o-transition: -o-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28),
    opacity 0.1s;
  transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
}
.lg-video-play-button:hover .lg-video-play-icon-bg,
.lg-video-play-button:hover .lg-video-play-icon {
  opacity: 1;
}

.lg-video-play-icon-bg {
  fill: none;
  stroke-width: 3%;
  stroke: #fcfcfc;
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  -o-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in;
}

.lg-video-play-icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  fill: none;
  stroke-width: 3%;
  stroke: rgba(30, 30, 30, 0.9);
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.lg-video-play-icon {
  position: absolute;
  width: 25%;
  max-width: 120px;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  -o-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in;
}
.lg-video-play-icon .lg-video-play-icon-inner {
  fill: #fcfcfc;
}

.lg-video-loading .lg-video-play-icon-circle {
  animation: lg-play-rotate 2s linear 0.25s infinite,
    lg-play-stroke 1.5s ease-in-out 0.25s infinite;
}

.lg-video-loaded .lg-video-play-button {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}

/* update: 07.09.23 */

li.header__menu-link-sub {
  position: relative;
  max-width: 180px;
  min-height: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

li.header__menu-link-sub.active .parent {
  color: #eb7605;
}

.header__menu-link > span,
.header__menu-link a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__menu-link > span:hover .header__arrow {
  fill: #eb7605;
}

.menu__arrow-mobile {
  display: none;
}

.header__arrow {
  flex: none;
  transform: translateY(-2px);
  width: 12px;
  height: 6px;
  fill: #ffffff;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.header__arrow.active {
  transform: rotate(180deg) translateY(10%);
  fill: #eb7605;
}

.arrow.chosen-menu {
  transform: rotate(-180deg);
}

.sub-menu__list {
  display: none;
  min-width: 320px;
  position: absolute;
  left: 0;
  top: 25px;
  z-index:3;
  padding: 23px 0px 0px 0px;
  text-transform: uppercase;
}

.sub-menu__list > li {
  background-color: #363535;
  padding: 10px 15px;
}

.sub-menu__list > li:first-child {
  padding-top: 15px;
}

.sub-menu__list > li:last-child {
  padding-bottom: 15px;
}

body.mouse .header__menu > li:hover .sub-menu__list,
body.touch .sub-menu__list.open {
  display: block;
}

.sub-sub-menu__list {
  padding: 20px 0 0 29px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* .sub-sub-menu__list li { list-style: square} */
.header__nav-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1280px) {
  .header__nav-wrapper {
    gap: 30px;
  }
}

@media (max-width: 1230px) {
  .header__menu {
    align-items: flex-start;
    gap: 0;
  }

  li.header__menu-link {
    max-width: 100%;
    width: 100%;
    padding: 10px;
    border-bottom: none;
    border-top: 1px solid#363535;
    display: flex;
  }

  .header__arrow.chosen-menu {
    fill: #eb7605;
    transform: rotate(-90deg) translateX(2px);
  }

  li.header__menu-link:first-child {
    border-top: none;
  }

  .header__menu-link > span:first-child {
    width: auto !important;
  }

  .header__menu-link.chosen-menu > span {
    color: #eb7605;
  }

  .header__nav-wrapper {
    padding: 20px;
    height: 100%;
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    border-right: 1px solid#363535;
  }

  .header__nav-submenu-wrapper {
    width: 100%;
    padding: 20px;
    height: 100%;
  }

  .sub-menu__list {
    position: static;
    padding: 0;
    flex-direction: column;
    color: #ffffff;
  }

  .header__nav-submenu-wrapper .sub-menu__list.open {
    display: flex;
  }

  .sub-menu__list.open li {
    background-color: transparent;
  }
}

@media (max-width: 1230px) {
  .header__nav-submenu-wrapper .sub-menu__list.open {
    display: none;
  }

  .header__nav {
    padding: 15px;
  }

  .header__nav-wrapper {
    width: 100%;
    padding: 0;
    border-right: none;
  }

  .header__arrow.chosen-menu {
    transform: rotate(180deg) translateY(2px);
  }

  .header__nav-submenu-wrapper {
    display: none;
  }

  .header__menu-link-sub {
    flex-direction: column;
  }

  .sub-menu__list {
    font-size: 15px;
  }

  .sub-menu__list li {
    border-bottom: none;
  }

  li.header__menu-link {
    align-items: flex-start;
  }

  .header__menu-link:last-child {
    border-bottom: 1px solid #363535;
  }

  .sub-menu__list > li {
    padding: 10px 5px;
  }

  .sub-menu__list > li:last-child {
    padding-bottom: 5px;
  }

  .sub-sub-menu__list {
    padding: 15px 0 0 29px;
  }

  .sub-sub-menu__list li {
    padding-bottom: 0;
  }

  .header__menu-link-sub.chosen-menu .sub-menu__list.open {
    display: flex;
  }
}
/* SLIDER FIX START */
.products__swiper,
.gallery__swiper,
.testimonials__swiper,
.news__swiper,
.process__swiper,
.guides__swiper,
.album__swiper,
.thumbnails__swiper,
.partners__swiper {
  display: flex;
  overflow: hidden;
}

.process__swiper,
.guides__swiper {
  gap: 16px;
}

.products__swiper {
  gap: 27px;
}

.testimonials__swiper,
.news__swiper {
  gap: 20px;
}

.gallery__swiper {
  gap: 24px;
}

.products__slide {
  min-width: 270px;
}

.product--master {
  display: flex;
  flex-direction: column;
}

.product--master .button {
  margin-top: auto;
  display: block;
}

@media (max-width: 1500px) {
  .products__slide {
    min-width: 295px;
  }
}

@media (max-width: 360px) {
  .products__slide {
    min-width: 280px;
  }
}

.gallery__slide,
.news__slide {
  min-width: 380px;
}

@media (max-width: 1280px) {
  .gallery__slide,
  .news__slide {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .gallery__slide {
    min-width: 213px;
  }
}

.testimonials__slide {
  min-width: 590px;
}

@media (max-width: 880px) {
  .testimonials__slide {
    min-width: 620px;
  }
}

@media (max-width: 767.98px) {
  .testimonials__slide {
    min-width: 400px;
  }
}

@media (max-width: 479.98px) {
  .testimonials__slide,
  .news__slide {
    min-width: 280px;
  }
}

.process__slide,
.guides__slide {
  min-width: 1200px;
}

@media (max-width: 1500px) {
  .process__slide,
  .guides__slide {
    min-width: 945px;
  }
}

@media (max-width: 768px) {
  .process__slide,
  .guides__slide {
    min-width: 620px;
  }
}

@media (max-width: 630px) {
  .process__slide,
  .guides__slide {
    min-width: 280px;
  }
}

.swiper-wrapper .products__slide,
.swiper-wrapper .gallery__slide,
.swiper-wrapper .testimonials__slide,
.swiper-wrapper .news__slide,
.swiper-wrapper .process__slide,
.swiper-wrapper .guides__slide {
  min-width: 0;
}

.products__swiper.swiper-wrapper,
.gallery__swiper.swiper-wrapper,
.testimonials__swiper.swiper-wrapper,
.news__swiper.swiper-wrapper,
.process__swiper.swiper-wrapper,
.guides__swiper.swiper-wrapper,
.album__swiper.swiper-wrapper,
.thumbnails__swiper.swiper-wrapper,
.partners__swiper.swiper-wrapper {
  overflow: visible;
  gap: 0;
}
/* SLIDER FIX END */
.hidden {
  display: none;
}
.pad80 {
  padding-top: 80px !important;
}
.pad60 {
  padding-top: 60px !important;
}

.products__slide .product__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slider--products .slider__title,
.slider--guides .slider__title {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .slider--products .slider__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .slider--products .slider__title {
    margin-bottom: 20px;
  }
}

.booking__information-text {
  align-self: flex-end;
  grid-column: 1 / 3;
  max-width: 100%;
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 60.75em) {
  .booking__information-text {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media (max-width: 1280px) {
  .booking__information-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .booking__information-text {
    font-size: 18px;
  }
}

@media (max-width: 630px) {
  .booking__information-text {
    font-size: 16px;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

@media (max-width: 525px) {
  .booking__information-text {
    font-size: 14px;
  }
}

.booking__information-banner {
  grid-column: 3 / 4;
  width: 100%;
}

@media (max-width: 60.75em) {
  .booking__information-banner {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    padding: 0 20px;
    background-color: #1b1b1b;
    border-radius: 16px;
  }
}

@media (max-width: 630px) {
  .booking__information-banner {
    grid-row: 2 / 3;
  }
}

.booking__information-banner-content {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 16px;
  background-color: #1b1b1b;
}

.booking__information-decor {
  position: relative;
  bottom: -20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  font-size: 12px;
}

.booking__information-decor-mobile {
  display: none;
}

@media (max-width: 972px) {
  .booking__information-decor {
    display: none;
  }

  .booking__information-decor-mobile {
    position: relative;
    left: 70px;
    bottom: -30px;
    max-width: max-content;
    display: flex;
    flex-direction: column;
    font-size: 12px;
  }

  .booking__information-decor-mobile--bottom {
    position: relative;
    top: -20px;
    left: 12px;

    flex-direction: row-reverse;
    align-items: flex-end;
  }

  .booking__information-decor-mobile img {
    width: 45px;
    height: 45px;
  }

  .booking__information-decor-mobile--bottom img {
    position: relative;
    left: -15px;
    top: -8px;
    width: 45px;
    height: 45px;
  }
}

.booking__information-banner-content .booking__clue-descr {
  font-size: 14px;
}

.booking__information-banner-content
  .booking__clue-descr
  span:not(:last-child) {
  margin-bottom: 8px;
}

@media (max-width: 972px) {
  .booking__information-banner-content {
    justify-content: space-between;
    background-color: transparent;
    padding: 0;
    gap: 50px;
  }

  .booking__information-banner-content .booking__clue-descr {
    font-size: 12px;
  }

  .booking__information-banner-content .booking__clue .box {
    width: 70px;
  }
}

@media (max-width: 630px) {
  .booking__information-banner-content {
    justify-content: flex-start;
  }
}

.booking__clues .booking__clue--master-classes .box,
.master-classes-date_item {
  background-color: #1f499f;
}
.booking__clues .booking__clue--games .box,
.games-date_item {
  background-color: #89042d;
}
.booking__clues .booking__clue--datings .box,
.dating-date_item {
  background-color: #801d82;
}
.booking__clues .booking__clue--children .box,
.children-date_item {
  background-color: #c76200;
}
.booking__clues .booking__clue--sold .box,
.sold-date_item {
  background-color: #000000;
}

.placement__container {
  max-width: 1680px;
}

@media (max-width: 768px) {
  .placement__container {
    padding: 0 25px;
  }
}

@media (max-width: 525px) {
  .placement__container {
    padding: 0 20px;
  }
}

.price__value-wrapper {
  display: flex;
  justify-content: center;
  max-width: max-content;
  margin: 0 auto 40px;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .price__value-wrapper {
    margin: 0 auto 30px;
  }
}

.discount__container {
  max-width: 945px;
}

.discount__container .promo__button-wrapper {
  flex-direction: column;
}

/*.discount__container .promo__button-line-mobile {
  display: block;
}

@media (max-width: 525px) {
  .promo__button-wrapper {
    display: flex;
    gap: 0;
  }
 } */
.swiper-pagination-clickable
  .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  transform: scale(1);
  background-color: #ccc;
  opacity: 1;
}
.oswaldMedium {
  font-family: OswaldMedium;
}
.product__info .product__title {
  font-family: "Oswald", sans-serif;
}
.booking__submit:hover {
  color: #000;
}
.booking__submit:active {
  color: #ffffff;
}

.museum-history__title,
.museum-conception__title {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .museum-history__title,
  .museum-conception__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .museum-history__title,
  .museum-conception__title {
    margin-bottom: 20px;
  }
}

.museum-history__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 768px) {
  .museum-history__content {
    gap: 30px;
  }
}

@media (max-width: 525px) {
  .museum-history__content {
    gap: 20px;
  }
}

.museum-history__item {
  display: flex;
  gap: 50px;
}

@media (max-width: 768px) {
  .museum-history__item {
    gap: 40px;
  }
}

@media (max-width: 525px) {
  .museum-history__item {
    flex-direction: column;
    gap: 15px;
  }
}

.museum-history__authors {
  display: flex;
  justify-content: space-evenly;
}

@media (max-width: 767px) {
  .museum-history__authors {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}

.museum-history__author {
  display: flex;
  flex-direction: column;
}

.museum-history__author span {
  font-size: 18px;
}

@media (max-width: 1280px) {
  .museum-history__author span {
    font-size: 16px;
  }
}

@media (max-width: 525px) {
  .museum-history__author span {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .museum-history__author {
    max-width: calc(50% - 15px);
    width: 100%;
    align-items: center;
  }
}

.museum-history__author img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}

.museum-history__text {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .museum-history__text {
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .museum-history__text {
    font-size: 14px;
  }
}

.museum-history__date {
  color: #eb7605;
  max-width: 100px;
  width: 100%;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.museum-history__date sub,
.museum-history__date sup {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.museum-history__date sup {
  align-self: flex-start;
}

.museum-history__date sub {
  transform: translateX(2px);
}

.museum-history__date strong {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 525px) {
  .museum-history__date strong {
    font-size: 35px;
  }
}

.museum-history__way {
  padding-left: 150px;
}

@media (max-width: 768px) {
  .museum-history__way {
    padding-left: 0;
  }
}

.museum-history__subtitle {
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .museum-history__subtitle {
    font-size: 32px;
  }
}

.museum-history__way img {
  width: 100%;
}

.museum-conception__text,
.museum-conception__items {
  margin-bottom: 40px;
}

.museum-conception__items {
  display: flex;
  gap: 30px;
}

.museum-conception__text {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .museum-conception__items {
    gap: 20px;
  }

  .museum-conception__text {
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .museum-conception__items {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .museum-conception__text,
  .museum-conception__items {
    margin-bottom: 30px;
  }

  .museum-conception__items {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 525px) {
  .museum-conception__text,
  .museum-conception__items {
    margin-bottom: 20px;
  }

  .museum-conception__text {
    font-size: 14px;
  }
}

.museum-conception__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 10px;
  background-color: #1b1b1b;
  border-radius: 16px;
  text-align: center;
}

@media (max-width: 1280px) {
  .museum-conception__item span {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .museum-conception__item {
    max-width: 190px;
  }
}

@media (max-width: 525px) {
  .museum-conception__item {
    max-width: 100%;
    flex-direction: row;
    padding: 20px;
    text-align: left;
  }
}

.museum-conception__item img {
  width: 48px;
  height: 48px;
}

.museum-mission__content {
  display: flex;
  gap: 40px;
}

@media (max-width: 630px) {
  .museum-mission__content {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.museum-mission__title {
  margin-bottom: 40px;
}

.museum-mission__title-mobile {
  display: none;
}

@media (max-width: 1280px) {
  .museum-mission__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 630px) {
  .museum-mission__title {
    display: none;
  }
  .museum-mission__title-mobile {
    margin-bottom: 20px;
    display: block;
    text-align: left;
  }
}

.museum-mission__text p {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .museum-mission__text p {
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .museum-mission__text p {
    font-size: 14px;
  }
}

.museum-mission__text p:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 1280px) {
  .museum-mission__text p:not(:last-child) {
    margin-bottom: 20px;
  }
}

.museum-mission__info {
  max-width: 50.5%;
  width: 100%;
  margin-left: auto;
  padding-left: 40px;
}

@media (max-width: 979px) {
  .museum-mission__info {
    padding-left: 0;
  }
}

@media (max-width: 630px) {
  .museum-mission__info {
    max-width: 100%;
  }
}

.museum-mission__img-wrapper {
  max-width: 690px;
  width: 100%;
  height: 505px;
}

@media (max-width: 1280px) {
  .museum-mission__img-wrapper {
    max-width: 460px;
    height: 460px;
  }
}

@media (max-width: 979px) {
  .museum-mission__img-wrapper {
    max-width: 298px;
    height: 498px;
  }
}

@media (max-width: 630px) {
  .museum-mission__img-wrapper {
    max-width: 100%;
    height: 320px;
  }
}

.museum-mission__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.museum-team__title {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .museum-team__title {
    margin-bottom: 30px;
  }
}

.museum-team__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 1280px) {
  .museum-team__list {
    gap: 30px;
  }
}

@media (max-width: 525px) {
  .museum-team__list {
    gap: 20px;
  }
}

.museum-team__item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.museum-team__item img {
  max-width: 766px;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.museum-team__item:nth-child(2n) .museum-team__text {
  margin-right: auto;
  padding-right: 40px;
}

.museum-team__item:nth-child(2n + 1) .museum-team__text {
  text-align: right;
  margin-left: auto;
  padding-left: 40px;
}

@media (max-width: 1280px) {
  .museum-team__item img {
    max-width: 460px;
    height: 300px;
  }
}

.museum-team__text {
  max-width: 50.5%;
  width: 100%;
}

@media (max-width: 979px) {
  .museum-team__text {
    max-width: 100%;
  }
}

.museum-team__text p {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .museum-team__text p {
    font-size: 18px;
  }
}

.museum-team__text p:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 979px) {
  .museum-team__item {
    gap: 30px;
  }

  .museum-team__item img {
    max-width: 460px;
    width: 100%;
    height: 300px;
  }

  .museum-team__item:nth-child(2n) {
    flex-direction: column;
  }

  .museum-team__item:nth-child(2n + 1) {
    flex-direction: column-reverse;
  }

  .museum-team__item:nth-child(2n + 1) img {
    margin-left: auto;
  }

  .museum-team__item:nth-child(2n + 1) .museum-team__text {
    padding-left: 0;
  }

  .museum-team__item:nth-child(2n) .museum-team__text {
    padding-right: 0;
  }

  .museum-team__item:nth-child(2n) img {
    margin-right: auto;
  }
}

@media (max-width: 525px) {
  .museum-team__item {
    gap: 20px;
  }

  .museum-team__item img {
    max-width: 100%;
    height: 208px;
  }

  .museum-team__text p {
    font-size: 14px;
  }
}

@media (max-width: 1280px) {
  .thanks {
    padding: 0 20px;
  }
}

.thanks__container {
  padding: 32px;
  border-radius: 16px;
  background: #1b1b1b;
}

@media (max-width: 630px) {
  .thanks__container {
    padding: 20px;
  }
}

.thanks__content {
  margin: 0 auto;
  max-width: 700px;
}

.thanks__title,
.future__title,
.breafly__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 35px;
}

@media (max-width: 1280px) {
  .thanks__title,
  .future__title,
  .breafly__title {
    margin-bottom: 30px;
    font-size: 32px;
  }
}

@media (max-width: 525px) {
  .thanks__title,
  .future__title,
  .breafly__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.thanks__image {
  margin-bottom: 40px;
  max-width: 100%;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .thanks__image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .thanks__image {
    height: 143px;
  }
}

@media (max-width: 630px) {
  .thanks__image {
    margin: 0 0 20px;
  }
}

@media (max-width: 525px) {
  .thanks__image {
    height: 91px;
  }
}

.thanks__chars {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1280px) {
  .thanks__chars {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .thanks__chars {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 630px) {
  .thanks__chars {
    margin-bottom: 20px;
  }
}

@media (max-width: 525px) {
  .thanks__chars {
    align-items: flex-start;
  }
}

.thanks__char {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 768px) {
  .thanks__char {
    max-width: 320px;
    width: 100%;
    gap: 20px;
  }
}

.thanks__char-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  padding-left: 18px;
}

.thanks__char-item::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  width: 8px;
  height: 8px;
  background-color: #eb7605;
  content: "";
}

.thanks__char-item span {
  width: 190px;
}

@media (max-width: 1280px) {
  .thanks__char-item span {
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .thanks__char-item span {
    font-size: 14px;
    width: auto;
  }
}

.thanks__button {
  margin: 0 auto;
  max-width: max-content;
  margin-bottom: 40px;
  display: block;
}

@media (max-width: 1280px) {
  .thanks__button {
    margin-bottom: 30px;
    font-size: 16px;
  }
}

@media (max-width: 630px) {
  .thanks__button {
    margin-bottom: 20px;
  }
}

.thanks__descr {
  margin-bottom: 40px;
  text-align: center;
  font-size: 20px;
}

@media (max-width: 1280px) {
  .thanks__descr {
    margin-bottom: 30px;
    font-size: 18px;
  }
}

@media (max-width: 630px) {
  .thanks__descr {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

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

@media (max-width: 768px) {
  .thanks__bottom {
    flex-direction: column;
    gap: 15px;
  }
}

.thanks__send-text {
  font-size: 20px;
}

@media (max-width: 768px) {
  .thanks__send-text {
    font-size: 18px;
  }
}

@media (max-width: 630px) {
  .thanks__send-text {
    font-size: 16px;
  }
}

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

@media (max-width: 630px) {
  .thanks__btns {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
}

.thanks__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
}

@media (max-width: 630px) {
  .thanks__btn {
    width: 100%;
    justify-content: center;
  }
}

.thanks__btn > span {
  font-size: 16px;
}

.breafly__list {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

@media (max-width: 979px) {
  .breafly__list {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .breafly__list {
    flex-direction: column;
  }
}

.breafly__item {
  width: 100%;
  padding: 32px 24px;
  border-radius: 16px;
  background-color: #1b1b1b;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 525px) {
  .breafly__item {
    padding: 20px;
  }
}

.breafly__item img {
  width: 48px;
  height: 48px;
}

.breafly__item p {
  font-size: 20px;
}

.future__text {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .breafly__item p,
  .future__text {
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .breafly__item p,
  .future__text {
    font-size: 14px;
  }
}

.infoblock--right {
  text-align: right;
}

.infoblock__title {
  margin-bottom: 40px;
}

@media (max-width: 1280px) {
  .infoblock__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .infoblock__title {
    margin-bottom: 20px;
  }
}

.infoblock__content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.infoblock__info {
  margin-right: auto;
  padding-right: 40px;
  max-width: 45.5%;
}

@media (max-width: 979px) {
  .infoblock__info {
    max-width: 100%;
    width: 100%;
  }
}

.infoblock__image-mobile {
  display: none;
}

.infoblock--right .infoblock__info {
  margin-right: 0;
  padding-right: 0;
  padding-left: 40px;
  margin-left: auto;
}

@media (max-width: 979px) {
  .infoblock__info,
  .infoblock--right .infoblock__info {
    padding-left: 0;
    margin-left: 0;
    padding-right: 0;
  }
}

.infoblock__text {
  margin-right: auto;
  max-width: 80%;
  font-size: 20px;
}

@media (max-width: 1280px) {
  .infoblock__text {
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .infoblock__text {
    font-size: 14px;
  }
}

@media (max-width: 979px) {
  .infoblock__text {
    max-width: 100%;
  }
}

.infoblock--right .infoblock__text {
  margin-right: 0;
  margin-left: auto;
}

.infoblock__image {
  max-width: 690px;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .infoblock__image {
    max-width: 460px;
    height: 300px;
  }
}

@media (max-width: 979px) {
  .infoblock__image {
    display: none;
  }

  .infoblock__image-mobile {
    margin-bottom: 30px;
    margin-right: auto;
    display: block;
    max-width: 460px;
    height: 300px;
    width: 100%;
    object-fit: cover;
  }

  .infoblock--right .infoblock__image-mobile {
    margin-right: 0;
    margin-left: auto;
  }
}

.single-text {
  font-size: 20px;
}

@media (max-width: 525px) {
  .infoblock__image-mobile {
    margin-bottom: 20px;
    max-width: 100%;
    height: 208px;
  }

  .single-text {
    font-size: 14px;
  }
}

.accent {
  color: #eb7605;
}

.soft-games__title,
.darkness__title,
.games-formats__title {
  margin-bottom: 40px;
}

.soft-games__title,
.games-formats__title {
  text-align: center;
}

@media (max-width: 979px) {
  .soft-games__title,
  .darkness__title,
  .games-formats__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .soft-games__title,
  .darkness__title,
  .games-formats__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 1400px) {
  .darkness__container {
    max-width: 1080px;
  }
}

@media (max-width: 80em) {
  .darkness__container {
    max-width: 1080px;
  }
}

.soft-games__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.soft-games__item {
  max-width: calc(50% - 15px);
  width: 100%;
  background-color: #1b1b1b;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 10px;
}

@media (max-width: 979px) {
  .soft-games__item {
    max-width: 100%;
  }
}

@media (max-width: 525px) {
  .soft-games__item {
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }
}

.soft-games__promo {
  max-width: 200px;
  width: 100%;
}

@media (max-width: 525px) {
  .soft-games__promo {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
  }
}

.soft-games__image {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

@media (max-width: 525px) {
  .soft-games__image {
    width: 110px;
    height: 110px;
  }
}

.soft-games__content {
  text-align: right;
  display: flex;
  flex-direction: column;
}

@media (max-width: 525px) {
  .soft-games__content {
    text-align: center;
  }
}

.soft-games__heading,
.soft-games__heading-mobile {
  margin-bottom: 5px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}

.soft-games__heading-mobile {
  font-size: 14px;
  margin-bottom: 0;
  display: none;
}

@media (max-width: 525px) {
  .soft-games__heading {
    display: none;
  }

  .soft-games__heading-mobile {
    display: block;
  }
}

@media (max-width: 1280px) {
  .soft-games__box strong {
    font-size: 16px;
  }
}

@media (max-width: 525px) {
  .soft-games__box {
    text-align: right;
  }
}

.soft-games__box strong {
  text-transform: uppercase;
  font-size: 18px;
  color: #eb7605;
  font-family: "Oswald", sans-serif;
}

@media (max-width: 1280px) {
  .soft-games__box strong {
    font-size: 14px;
  }
}

.soft-games__text {
  margin-bottom: 15px;
}

@media (max-width: 1280px) {
  .soft-games__text {
    font-size: 14px;
  }
}

.soft-games__btn {
  margin-top: auto;
  margin-left: auto;
  display: block;
  max-width: max-content;
}

@media (max-width: 1280px) {
  .soft-games__btn {
    padding: 12px 32px;
    font-size: 16px;
  }
}

@media (max-width: 525px) {
  .soft-games__btn {
    margin: 0 auto;
  }
}

@media (max-width: 979px) {
  .innovation__container {
    padding: 0 40px;
  }
}

@media (max-width: 525px) {
  .innovation__container {
    padding: 0 20px;
  }
}

.innovation__content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.innovation__image {
  max-width: 640px;
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.innovation__image-mobile {
  display: none;
}

@media (max-width: 1280px) {
  .innovation__image {
    max-width: 533px;
    height: 533px;
  }
}

@media (max-width: 979px) {
  .innovation__image {
    display: none;
  }

  .innovation__image-mobile {
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 525px) {
  .innovation__image-mobile {
    height: 320px;
  }
}

.innovation__info {
  max-width: 53%;
  padding-right: 40px;
  margin-right: auto;
}

@media (max-width: 979px) {
  .innovation__info {
    max-width: 100%;
    padding-right: 0;
  }
}

.innovation__suptitle {
  margin-bottom: 20px;
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .innovation__suptitle {
    font-size: 18px;
  }
}

.innovation__title {
  margin-bottom: 20px;
}

.innovation__text {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .innovation__text {
    font-size: 16px;
  }
}

@media (max-width: 630px) {
  .innovation__text {
    font-size: 14px;
  }
}

.innovation__text:not(:last-of-type) {
  margin-bottom: 20px;
}

.innovation__list {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  font-size: 20px;
}

@media (max-width: 1280px) {
  .innovation__list {
    font-size: 16px;
  }
}

@media (max-width: 630px) {
  .innovation__list {
    grid-template-columns: 100%;
    font-size: 14px;
  }
}

.innovation__item {
  position: relative;
  padding-left: 18px;
}

.innovation__item::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  left: 0;
  content: "";
  background-color: #eb7605;
  width: 8px;
  height: 8px;
}

.darkness__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 525px) {
  .darkness__items {
    gap: 20px;
  }
}

.darkness__item {
  display: flex;
  gap: 30px;
}

@media (max-width: 1280px) {
  .darkness__item {
    gap: 10px;
  }
}

@media (max-width: 525px) {
  .darkness__item {
    flex-direction: column;
  }
}

.darkness__image {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.darkness__content {
}

.darkness__heading {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
}

@media (max-width: 1280px) {
  .darkness__heading {
    font-size: 20px;
  }
}

@media (max-width: 525px) {
  .darkness__heading {
    margin-bottom: 10px;
  }
}

.darkness__text {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .darkness__text {
    font-size: 16px;
  }
}

@media (max-width: 525px) {
  .darkness__text {
    font-size: 14px;
  }
}

.darkness__text:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 525px) {
  .darkness__text:not(:last-child) {
    margin-bottom: 10px;
  }
}

.darkness__accent {
  font-size: 32px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

@media (max-width: 1280px) {
  .darkness__accent {
    font-size: 18px;
  }
}

@media (max-width: 1400px) {
  .games-formats__container {
    max-width: 1080px;
  }
}


.games-formats__list {
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
}

@media (max-width: 979px) {
  .games-formats__list {
    margin-bottom: 30px;
    flex-direction: column;
  }
}

@media (max-width: 525px) {
  .games-formats__list {
    margin-bottom: 15px;
    gap: 15px;
  }
}

.games-formats__item {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--ORANGE, #eb7605);
}

@media (max-width: 525px) {
  .games-formats__item {
    padding: 20px;
  }
}

.games-formats__item:first-child {
  max-width: 320px;
  width: 100%;
}

@media (max-width: 979px) {
  .games-formats__item:first-child {
    max-width: 100%;
  }
}

.games-formats__heading {
  margin-bottom: 10px;
  color: #eb7605;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 525px) {
  .games-formats__heading {
    font-size: 18px;
  }
}

.games-formats__subtext {
  margin-bottom: 5px;
  max-width: 60%;
  display: block;
  font-size: 24px;
}

@media (max-width: 979px) {
  .games-formats__subtext {
    max-width: 100%;
    font-size: 20px;
  }
}

.games-formats__text {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .games-formats__text {
    font-size: 16px;
  }
}

@media (max-width: 525px) {
  .games-formats__text {
    font-size: 14px;
  }
}

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

.games-formats__day {
  margin-bottom: 10px;
  display: block;
  position: relative;
  padding-left: 18px;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1280px) {
  .games-formats__day {
    font-size: 20px;
  }
}

.games-formats__day::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #eb7605;
  transform: translateY(-50%) rotate(15deg);
}

.games-formats__details {
  font-size: 20px;
}

@media (max-width: 979px) {
  .games-formats__details {
    font-size: 14px;
  }
}

.dealgame-choose__title,
.dealgame-reason__title {
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 979px) {
  .dealgame-choose__title,
  .dealgame-reason__title {
    margin-bottom: 30px;
  }
}

.dealgame-choose__list {
  display: flex;
  gap: 40px;
}

@media (max-width: 1280px) {
  .dealgame-choose__list {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .dealgame-choose__list {
    flex-direction: column;
  }
}

@media (max-width: 630px) {
  .dealgame-choose__list {
    gap: 20px;
  }
}

.dealgame-choose__item {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}

.dealgame-choose__image {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 450px;
}

@media (max-width: 1280px) {
  .dealgame-choose__image {
    height: 320px;
  }
}

@media (max-width: 525px) {
  .dealgame-choose__image {
    height: 178px;
  }
}

.dealgame-choose__content {
  flex-grow: 1;
  padding: 24px 30px 48px;
  background-color: #1b1b1b;
}

@media (max-width: 630px) {
  .dealgame-choose__content {
    padding: 20px;
  }
}

.dealgame-choose__top {
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 525px) {
  .dealgame-choose__top {
    margin-bottom: 20px;
  }
}

.dealgame-choose__name {
  font-size: 35px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .dealgame-choose__name {
    font-size: 32px;
  }
}

@media (max-width: 630px) {
  .dealgame-choose__name {
    font-size: 18px;
  }
}

.dealgame-choose__duration {
  flex: none;
}

.dealgame-choose__duration strong {
  display: block;
  text-transform: uppercase;
  color: #eb7605;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 525px) {
  .dealgame-choose__duration strong {
    font-size: 14px;
  }
}

.dealgame-choose__actions {
  margin-bottom: 32px;
  display: flex;
  gap: 24px;
}

@media (max-width: 1280px) {
  .dealgame-choose__actions {
    gap: 18px;
  }
}

@media (max-width: 630px) {
  .dealgame-choose__actions {
    margin-bottom: 20px;
  }
}

.dealgame-choose__action {
  position: relative;
  display: flex;
  align-items: center;
}

.dealgame-choose__action:not(:first-child) {
  padding-left: 21px;
  background-image: url("./icon-slash.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

.dealgame-choose__action a {
  text-decoration: underline;
  color: #eb7605;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 979px) {
  .dealgame-choose__action:last-child {
    display: none;
  }
}

@media (max-width: 1280px) {
  .dealgame-choose__action a {
    font-size: 18px;
  }
}

.dealgame-choose__text {
  margin-bottom: 32px;
  font-size: 20px;
}

@media (max-width: 979px) {
  .dealgame-choose__text {
    margin-bottom: 20px;
  }
}

.dealgame-choose__action--mobile {
  display: none;
}

@media (max-width: 979px) {
  .dealgame-choose__action--mobile {
    margin-bottom: 20px;
    color: #eb7605;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 700;
    display: block;
  }
}

.dealgame-choose__button {
  margin: 0 auto;
  max-width: max-content;
  display: block;
}

@media (max-width: 979px) {
  .dealgame-choose__button {
    padding: 12px 32px;
  }
}

.dealgame-reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 979px) {
  .dealgame-reason__list {
    grid-template-columns: 100%;
  }
}

.dealgame-reason__item {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #1b1b1b;
  border-radius: 16px;
}

@media (max-width: 525px) {
  .dealgame-reason__item {
    padding: 20px;
    gap: 15px;
  }
}

.dealgame-reason__icon {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

@media (max-width: 525px) {
  .dealgame-reason__icon {
    width: 100px;
    height: 100px;
  }
}

.dealgame-reason__name {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1280px) {
  .dealgame-reason__name {
    font-size: 20px;
  }
}

@media (max-width: 525px) {
  .dealgame-reason__name {
    font-size: 16px;
  }
}
.container--tiny { max-width:1000px; }
@media (max-width: 1280px) {
  .container--tiny {
    max-width: 800px;
  }
}

.desire__card--row {
  display: flex;
  align-items: center;
  padding: 30px;
}

.desire__card--row .desire__card-title {
  margin-bottom: 0;
  width: 100%;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 1280px) {
  .desire__card--row .desire__card-title {
    font-size: 32px;
  }
}

@media (max-width: 525px) {
  .desire__card--row {
    padding: 20px;
  }

  .desire__card--row .desire__card-title {
    font-size: 18px;
  }
}
.dealgame-process__title {
  margin-bottom: 40px;
  text-align: center;
}

.dealgame-process__list {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

@media (max-width: 768px) {
  .dealgame-process__list {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.dealgame-process__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .dealgame-process__item {
    max-width: 180px;
  }
}

@media (max-width: 525px) {
  .dealgame-process__item {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    gap: 15px;
  }
}

.dealgame-process__image {
  max-width: 60px;
  max-height: 67px;
}

@media (max-width: 525px) {
  .dealgame-process__image {
    max-width: 70px;
    width: 100%!important;
    margin-bottom: 0!important;
  }
}

.dealgame-process__name {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 32px;
}

@media (max-width: 1280px) {
  .dealgame-process__name {
    margin-bottom: 5px;
    font-size: 18px;
  }
}

@media (max-width: 525px) {
  .dealgame-process__name {
    margin-bottom: 10px;
  }
}

.dealgame-process__content {
  text-align: center;
}

@media (max-width: 525px) {
  .dealgame-process__content {
    text-align: left;
  }
}

.dealgame-process__text {
  font-size: 20px;
  text-align: center;
  display: block;
}

@media (max-width: 1280px) {
  .dealgame-process__text {
    font-size: 14px;
  }
}

@media (max-width: 525px) {
  .dealgame-process__text {
    text-align: left;
  }
}
.placement { padding-top:35px}
.disabled { opacity:0.6}
/*  SERTIFICATE START */
.sert-modals {
    overflow: hidden;
    height: 0;
}
.fancybox-close-small {
    padding: 0px;
    background: #4F4F4F;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.fancybox-close-small svg {
    width: 22px;
    height: 22px;
}
.sert .fancybox-close-small, .serthow .fancybox-close-small, .sertthanks .fancybox-close-small {
    top: 20px;
    right: 20px;
}
@media (max-width: 768px) {
    .sert .fancybox-close-small, .serthow .fancybox-close-small, .sertthanks .fancybox-close-small {
        top: 10px;
        right: 10px;
    }
}
.sertcard .fancybox-close-small {
    top: -10px;
    right: -10px;
}

.sert__btn {
    padding: 16px 48px;
    background: #EB7605;
    border-radius: 100px;
    color: black;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: max-content;
}
.sert__btn--outline {
    column-gap: 1px;
    color: #EB7605;
    border: 1px solid #EB7605;
    padding: 16px 28px;
    background: transparent;
}

.sert {
    background: #363535;
    padding: 0;
    max-width: 900px;
    border-radius: 16px;
    /* overflow: hidden; */
    vertical-align: top;
    top: 100px;
}
@media (max-width: 992px) {
    .sert {
        max-width: 688px;
    }
}
@media (max-width: 768px) {
    .sert {
        max-width: 330px;
        height: 670px;
        overflow-y: scroll;
        top: 0;
        vertical-align: center;
    }
}
.sert__body {
}
.sert__top {
    background-image: url('../images/sert-top.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px -5px 8px 0px rgba(0, 0, 0, 0.25) inset;
    padding: 32px 55px 0;
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
}
@media (max-width: 992px) {
    .sert__top {
        column-gap: 20px;
        padding: 31px 44px 0 54px;
    }
}
@media (max-width: 768px) {
    .sert__top {
        flex-direction: column-reverse;
        padding: 15px 15px 0;
        column-gap: 0;
        row-gap: 20px;
    }
}
.sert__card {
    border-radius: 10px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.23);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 300px;
    max-width: 300px;
    height: 160px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
@media (max-width: 992px) {
    .sert__card {
        min-width: 280px;
        max-width: 280px;
        height: 149px;
        padding: 9.33px;
        border-radius: 9.33px;
    }
}
@media (max-width: 768px) {
    .sert__card {
        min-width: 250px;
        max-width: 250px;
        height: 133.3px;
        padding: 8.33px;
        border-radius: 8.33px;
        align-self: flex-end;
    }
}
.sert__card::after {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    z-index: 0;
}
.sert__card-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.sert__card a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.sert__card-logo {
    max-width: 59px;
    display: flex;
    align-items: center;
}
@media (max-width: 992px) {
    .sert__card-logo {
        max-width: 55.07px;
    }
}
@media (max-width: 768px) {
    .sert__card-logo {
        max-width: 49.17px;
    }
}
.sert__card-logo img {
    max-width: 100%;
}
.sert__card-info {
    text-align: right;
}
.sert__card-title {
    font-family: 'Oswald';
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 5px;
    text-transform: uppercase;
}
@media (max-width: 992px) {
    .sert__card-title {
        font-size: 11.2px;
    }
}
@media (max-width: 768px) {
    .sert__card-title {
        font-size: 10px;
    }
}
.sert__card-service {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 100%;
}
@media (max-width: 992px) {
    .sert__card-service {
        font-size: 11.2px;
    }
}
@media (max-width: 768px) {
    .sert__card-service {
        font-size: 10px;
    }
}
.sert__card-service span {
    color: white;
}
.sert__card-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sert__card-price {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 1px 8px;
    border-radius: 5px;
    font-size: 16px;
}
@media (max-width: 992px) {
    .sert__card-price {
        padding: 0.93px 7.47px;
        border-radius: 4.67px;
        font-size: 14.93px;
        line-height: 22.4px;
    }
}
@media (max-width: 768px) {
    .sert__card-price {
        padding: 0.83px 6.67px;
        border-radius: 4.17px;
        font-size: 13.33px;
        line-height: 20px;
    }
}
.sert__card-desc {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    color: #EB7605;
    text-transform: uppercase;
    max-width: 175px;
    text-align: right;
}
@media (max-width: 992px) {
    .sert__card-desc {
        font-size: 11.2px;
        max-width: 163.3px;
    }
}
@media (max-width: 768px) {
    .sert__card-desc {
        font-size: 10px;
        max-width: 145.83px;
    }
}
.sert__top-right {
    text-transform: uppercase;
    font-family: 'Oswald';
}
.sert__offer {
    margin-bottom: 7px;
    font-size: 30px;
    font-weight: 500;
    color: #EB7605;
    line-height: 36px;
}
@media (max-width: 992px) {
    .sert__offer {
        font-size: 25px;
        margin-bottom: 0;
    }
}
@media (max-width: 768px) {
    .sert__offer {
        font-size: 22px;
        line-height: 30px;
    }
}
.sert__desc {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}
@media (max-width: 992px) {
    .sert__desc {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .sert__desc {
        font-size: 12px;
    }   
}
.sert__wrapper {
    background: #363535;
    padding: 10px 30px 15px;
    margin-top: -30px;
}
@media (max-width: 992px) {
    .sert__wrapper {
        margin-top: -14px;
    }
}
@media (max-width: 768px) {
    .sert__wrapper {
        padding: 30px 10px 15px;
        margin-top: -12px;
    }
}
.sert__wrapper-top {
    margin-bottom: 42px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: flex-end;
    color: #A8A8A8;
    font-size: 12px;
    line-height: 18px;
}
@media (max-width: 992px) {
    .sert__wrapper-top {
        margin-bottom: 32px;
    }
}
@media (max-width: 768px) {
    .sert__wrapper-top {
        justify-content: center;
        margin-bottom: 30px;
    }
}
.sert .swiper-pagination {
    position: relative;
    display: flex;
    column-gap: 12px;
}
.sert .swiper-pagination-bullet {
    opacity: 1;
    background: #4F4F4F !important;
}
.sert .swiper-pagination-bullet-active {
    background: #EB7605 !important;
}

.sert__slider {
    overflow: hidden;
    position: relative;
    height: auto;
}
.sert__slider .swiper-wrapper {
    align-items: flex-start;
    transition: 0.3s ease;
}
.sert__slider .swiper-slide {
    height: auto;
}
.sert__slide {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
@media (max-width: 768px) {
    .sert__slide {
        row-gap: 30px;
    }
}

.sert__slide-item {
}
@media (max-width: 768px) {
    .sert__slide-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 5px;
    }
    .sert__slide-item--visiters {
        display: none;
    }
    .sert__slide-item--summ label {
        width: 31% !important;
    }
    .sert__slide-item--btn {
        justify-content: center;
    }
    .sert__slide-item--btn span {
        margin-left: 0;
    }
}
.sert__design {
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
}
@media (max-width: 992px) {
    .sert__design .sert__title {
        max-width: 140px;
    }
}
@media (max-width: 768px) {
    .sert__design {
        column-gap: 0;
        row-gap: 10px;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    .sert__design .sert__title {
        max-width: 100%;
    }
}
.sert__title {
    font-size: 16px;
    line-height: 17px;
}
@media (max-width: 768px) {
    .sert__title {
        line-height: 24px;
    }
}
.sert__design-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.sert__design-slider-wrapper .swiper-button-prev, .sert__design-slider-wrapper .swiper-button-next {
    position: static;
    display: flex;
    align-items: center;
    width: max-content;
    margin-top: 0;
    height: auto;
}
.sert__design-slider-wrapper .swiper-button-prev::after, .sert__design-slider-wrapper .swiper-button-next::after {
    display: none;
}
.sert__design-slider {
    overflow: hidden;
    max-width: 590px;
    padding: 5px;
    margin: 0 -5x;
}
@media (max-width: 992px) {
    .sert__design-slider {
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .sert__design-slider {
        max-width: 195px;
        margin: 0 2.5px;
    }
}
.sert__design-slider .swiper-wrapper {
}
.sert__design-slider .swiper-slide {
    width: auto;
}
.sert__design-slider .sert__card {
    height: 48px;
    min-width: 90px;
    max-width: 90px;
    border-radius: 3px;
    padding: 3px;
    box-shadow: 0px 0.6px 2.4px 0px rgba(0, 0, 0, 0.23);
    cursor: pointer;
}
.sert__design-slider .sert__card input {
    display: none;
}
.sert__design-slider .sert__card:has(> input:checked) {
    border: 1px solid #EB7605;
}
.sert__design-slider .sert__card-logo {
    max-width: 17.7px;
}
.sert__design-slider .sert__card-title {
    font-size: 3.6px;
    margin-bottom: 1px;
}
.sert__design-slider .sert__card-service {
    font-size: 3.6px;
}
.sert__design-slider .sert__card-price {
    font-size: 4.8px;
    line-height: 7.2px;
    padding: 0.3px 2.4px;
    border-radius: 1.5px;
}
.sert__design-slider .sert__card-desc {
    font-size: 3.6px;
    max-width: 52.5px;
}
.sert__counts {
    display: flex;
    align-items: center;
    column-gap: 40px;
}
@media (max-width: 768px) {
    .sert__counts {
        column-gap: 0;
        flex-direction: column;
        row-gap: 30px;
    }
}
.sert__count {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
@media (max-width: 768px) {
    .sert__count {
        column-gap: 0;
        row-gap: 5px;
        flex-direction: column;
    }
}
.sert__count .sert__title {
    max-width: 120px;
}
@media (max-width: 768px) {
    .sert__count .sert__title {
        max-width: 100%;
    }
}
.sert__count-wrap {
    display: flex;
    align-items: center;
    background: #4F4F4F;
    border-radius: 100px;
    column-gap: 5px;
    overflow: hidden;
    height: 34px;
}
@media (max-width: 768px) {
    .sert__count-wrap {
        height: 45px;
    }
}
.sert__count-wrap input {
    width: 30px;
    padding: 0;
    line-height: 24px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    text-align: center;
    margin: 0;
}
.sert__count-wrap input[type="number"]::-webkit-outer-spin-button,
.sert__count-wrap input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.sert__count-btn {
    cursor: pointer;
}
@media(max-width: 768px) {
    .sert__count-btn {
        width: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.sert__els {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 16px;
}
@media (max-width: 768px) {
    .sert__els {
        margin-top: 0;
    }
}
.sert__els label {
    cursor: pointer;
}
@media (max-width: 768px) {
    .sert__els label {
        width: 48%;
    }
}
.sert__els label input {
    display: none;
}
.sert__els label span {
    padding: 5px 15px;
    border-radius: 100px;
    border: 1px solid #A8A8A8;
    color: white;
    transition: 0.1s ease;
    display: inline-block;
}
@media (max-width: 768px) {
    .sert__els label span {
        padding: 5px 0;
        width: 100%;
        text-align: center;
    }
}
.sert__els label input:checked + span {
    background: #EB7605;
    border-color: #EB7605;
    color: black;
}
.sert__els label input:disabled + span {
    background: #535151;
    color: #A8A8A8;
    border-color: #535151;
}
.sert__els input[type=text], .sert__els input[type=number] {
    max-width: 150px;
    border: 1px solid #4F4F4F;
    background: transparent;
    padding: 5px 16px;
    border-radius: 2px;
    font-size: 16px;
    line-height: 24px;
    outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
@media (max-width: 768px) {
    .sert__els input[type=text], .sert__els input[type=number] {
        max-width: 130px;
    }
}
.sert__els input[type=text]::placeholder, .sert__els input[type=number]::placeholder {
    color: #A8A8A8;
}
.sert__alert {
    margin-top: 10px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 12px;
    color: #A8A8A8;
    line-height: 18px;
    align-items: flex-start;
}
.sert__alert img {
    margin-top: 2px;
}
.sert__alert a {
    text-decoration: underline;
    color: white;
}
.sert__btn {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}
.sert__slide-bottom {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}
.sert__slide-bottom a {
    text-decoration: underline;
    font-size: 12px;
    color: #A8A8A8;
    line-height: 18px;
}

.sert__desalert {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 40px;
    row-gap: 20px;
}
@media (max-width: 992px) {
    .sert__desalert {
        flex-wrap: wrap;
    }
}
.sert__desalert .sert__alert {
    max-width: 278px;
    min-width: 278px;
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
}
.sert__alert-inputs--mob {
    display: none;
}
@media (max-width: 992px) {
    .sert__desalert .sert__alert {
        max-width: 100%;
        min-width: 0;
    }
}
@media (max-width: 768px) {
    .sert__alert-inputs {
        display: none;
    }
    .sert__alert-inputs--mob {
        display: flex;
        grid-column: 12 span;
        margin: 0 !important;
    }
}
.sert__desalert .sert__alert img {
    margin-top: 5px;
}
.sert__desalert .sert__design-slider {
    max-width: 290px;
}
@media (max-width: 768px) {
    .sert__desalert .sert__design-slider {
        max-width: 195px;
        margin: 0 2.5px;
    }
}

.sert__spacebetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}
@media (max-width: 768px) {
    .sert__spacebetween {
        flex-direction: column;
        text-align: center;
        row-gap: 0;
        width: 100%;
    }
    .sert__spacebetween .sert__btn {
        padding: 16px 26px;
    }
    .sert__spacebetween .sert__btn--next {
        margin-left: 0;
        max-width: 100%;
        padding: 16px 0;
        text-align: center;
        width: 100%;
        margin-top: 10px;
        justify-content: center;
    }
}
.sert__outline-btns {
    display: flex;
    column-gap: 20px;
    align-items: center;
}
@media (max-width: 768px) {
    .sert__outline-btns {
        column-gap: 10px;
    }
}

.sert__params {
    display: flex;
    align-items: center;
    column-gap: 40px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .sert__params {
        column-gap: 0;
        flex-direction: column;
    }
}
.sert__param {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #A8A8A8;
    font-size: 16px;
    line-height: 24px;
}
.sert__param span {
    color: #EB7605;
}
.sert__total {
    display: flex;
    align-items: flex-end;
    font-size: 18px;
    line-height: 27px;
    column-gap: 18px;
    color: #A8A8A8;
}
.sert__total div {
    color: #EB7605;
    font-size: 32px;
    line-height: 36px;
    font-family: 'Oswald';
    font-weight: 500;
    text-transform: uppercase;
}

.sert__slide-tabs {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    row-gap: 8px;
}
@media (max-width: 768px) {
    .sert__slide-tabs {
        justify-content: space-around;
        column-gap: 0;
    }
}
.sert__slide-contents {}
.sert__slide-content {
    display: none;
}
.sert__slide-content.active {
    display: block;
}
.sert__slide-content .sert__alert {
    margin-top: 5px;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .sert__slide-content .sert__alert {
        margin-bottom: 10px;
        margin-top: 10px;
    }
}
.sert__slide-inputs {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .sert__slide-inputs {
        column-gap: 0;
        row-gap: 10px;
    }
}
.sert__slide-inputs input, .sert__slide-inputs textarea {
    grid-column: 6 span;
    border: 1px solid #4F4F4F;
    background: transparent;
    padding: 11.5px 16px;
    border-radius: 2px;
    font-size: 16px;
    line-height: 24px;
    outline: none;
    resize: none;
    color: white;
}
@media (max-width: 768px) {
    .sert__slide-inputs input, .sert__slide-inputs textarea {
        grid-column: 12 span;
    }
    .sert__slide-inputs textarea {
        margin-top: 10px;
    }
}
.sert__slide-inputs input::placeholder, .sert__slide-inputs textarea::placeholder {
    color: #A8A8A8;
}
.sert__slide-inputs textarea {
    height: 50px;
}
@media (max-width: 768px) {
    .sert__slide-inputs textarea {
        height: 98px;
    }
}
.sert__slide-inputs select {
    grid-column: 6 span;
}
@media (max-width: 768px) {
    .sert__slide-inputs select {
        grid-column: 12 span;
    }
}
.sert__slide-inputs--full {
    grid-column: 12 span !important;
}

.sert__slide-inputs .select__body {
    display: none;
}
.sert__slide-inputs .select {
    grid-column: 6 span;
}
@media (max-width: 768px) {
    .sert__slide-inputs .select {
        grid-column: 12 span;
        margin-top: 10px;
    }
}
.sert__slide-inputs .select2 {
    width: 100% !important;
}
@media (max-width: 768px) {
    .sert .select2-container.select2-container--default.select2-container--open {
        top: 663.797px !important;
    }
    .sert .select_sert__select .select2-container.select2-container--default.select2-container--open {
        top: 0 !important;
    }
}
.sert__slide-inputs .select2-container--default .select2-selection--single {
    background: transparent;
    border: 1px solid #4F4F4F;
    padding: 13px 16px;
    height: auto;
}
.sert__slide-inputs .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 24px;
    font-size: 16px;
    color: white;
}
.sert__slide-inputs .select2-selection__arrow {
    width: 24px !important;
    height: 24px !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%);
    background-image: url('../images/dropdown.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #363535;
}
.sert__slide-inputs .select2-selection--single[aria-expanded=true] .select2-selection__arrow {
    transform: translateY(-50%) rotate(180deg);
}
.sert__slide-inputs .select2-selection__arrow b {
    display: none;
}
.sert__slide-inputs .select2-selection__placeholder {
    font-size: 16px;
    line-height: 24px;
    color: #A8A8A8;
}
.sert .select2-dropdown {
    background: #363535;
    border: 1px solid #4F4F4F;
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.5);
    color: #A8A8A8;
    font-size: 16px;
    line-height: 24px;
    border-radius: 2px;
}
.sert .select2-results__option {
    padding: 5px 16px;
}
.sert .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: transparent;
    color: #EB7605;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background: transparent;
}

.sert__slide-item hr {
    height: 1px;
    background: #4F4F4F;
    width: 100%;
}
.sert__topayment {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.sert__topayment h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
}

.sert__slide-radio {
    cursor: pointer;
    align-self: flex-start;
}
.sert__slide-radio input {
    display: none;
}
.sert__slide-radio span {
    color: #A8A8A8;
    font-size: 16px;
    line-height: 24px;
    padding-left: 26px;
    position: relative;
}
.sert__slide-radio span::before {
    content: '';
    position: absolute;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 3px solid transparent;
    box-shadow: 0px 0px 0px 1px #A8A8A8;
}
.sert__slide-radio input:checked + span {
    color: white;
}
.sert__slide-radio input:checked + span::before {
    border-color: #363535;
    background: #EB7605;
    box-shadow: 0px 0px 0px 1px #EB7605;
}
.sert__pays {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-top: 15px;
}
@media (max-width: 768px) {
    .sert__pays {
        flex-direction: column;
        column-gap: 0;
        row-gap: 15px;
        margin-top: 5px;
        width: 100%;
    }
}
.sert__pays a {
    background: white;
    display: flex;
    align-items: center;
    column-gap: 10px;
    border-radius: 100px;
    font-weight: 700;
    color: black;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 16px 48px;
}
@media (max-width: 992px) {
    .sert__pays a {
        padding: 16px 0;
        width: 100%;
        justify-content: center;
    }
}
.sert__pays a img {
    width: 43px;
}
.sert__paycard {
    margin-top: 15px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}
@media (max-width: 768px) {
    .sert__paycard {
        margin-top: 5px;
        margin-bottom: 10px;
        flex-direction: column;
        column-gap: 0;
        row-gap: 10px;
    }
}
.sert__paycard input {
    width: 100%;
    border: 1px solid #4F4F4F;
    background: transparent;
    padding: 11.5px 16px;
    border-radius: 2px;
    font-size: 16px;
    line-height: 24px;
    outline: none;
}
.sert__paycard input::placeholder {
    color: #A8A8A8;
}
.sert__paycard button {
    background: white;
    color: black;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    padding: 16px 48px;
    cursor: pointer;
    border-radius: 100px;
}
@media (max-width: 768px) {
    .sert__paycard button {
        padding: 16px 0;
        text-align: center;
        width: 100%;
    }
}
.sert__paycard button:disabled {
    background: #A8A8A8;
    pointer-events: none;
}
.sert__slide-checkbox {
    cursor: pointer;
    align-self: flex-start;
}
.sert__slide-checkbox input {
    display: none;
}
.sert__slide-checkbox span {
    padding-left: 30px;
    color: white;
    font-size: 16px;
    line-height: 24px;
    position: relative;
}
.sert__slide-checkbox span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #A8A8A8;
    border-radius: 2px;
}
.sert__slide-checkbox input:checked + span::before {
    background-color: #EB7605;
    border-color: #EB7605;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 9.49px;
    background-image: url('../images/checked.svg');
}
.sert__slide-text {
    font-size: 16px;
    line-height: 24px;
    color: #A8A8A8;
    margin-top: 5px;
}
@media (max-width: 768px) {
    .sert__slide-text {
        margin-top: 0;
    }
}

.sert__policy {
    font-size: 16px;
    line-height: 24px;
    color: #A8A8A8;
    text-align: center;
    margin-bottom: 35px;
}
@media (max-width: 768px) {
    .sert__policy {
        margin-bottom: 15px;
    }
}
.sert__policy a {
    color: white;
    text-decoration: underline;
}

/* sertcard modal */
.sertcard {
    padding: 0;
    border-radius: 22px;
    display: none;
    overflow: visible;
}
.sertcard .sert__card {
    min-width: 660px;
    max-width: 660px;
    height: 351px;
    border-radius: 22px;
    padding: 22px;
}
.sertcard .sert__card-logo {
    max-width: 129.8px;
}
.sertcard .sert__card-title {
    margin-bottom: 10px;
}
.sertcard .sert__card-title, .sertcard .sert__card-service {
    font-size: 26.4px;
}
.sertcard .sert__card-price {
    font-size: 35.2px;
    line-height: 52.8px;
    border-radius: 11px;
    padding: 2.2px 17.6px;
}
.sertcard .sert__card-desc {
    font-size: 26.4px;
    max-width: 385px;
}
@media (max-width: 992px) {
    .sertcard {
        border-radius: 16.67px;
    }
    .sertcard .sert__card {
        min-width: 500px;
        max-width: 500px;
        height: 266px;
        border-radius: 16.67px;
        padding: 16.67px;
    }
    .sertcard .sert__card-logo {
        max-width: 98.33px;
    }
    .sertcard .sert__card-title {
        margin-bottom: 5px;
        font-size: 20px;
    }
    .sertcard .sert__card-title, .sertcard .sert__card-service {
        font-size: 20px;
    }
    .sertcard .sert__card-price {
        font-size: 26.67px;
        line-height: 40px;
        border-radius: 8.33px;
        padding: 1.67px 13.33px;
    }
    .sertcard .sert__card-desc {
        font-size: 20px;
        max-width: 291px;
    }
}
@media (max-width: 768px) {
    .sertcard {
        border-radius: 11px;
    }
    .sertcard .sert__card {
        min-width: 330px;
        max-width: 330px;
        height: 176px;
        border-radius: 11px;
        padding: 11px;
    }
    .sertcard .sert__card-logo {
        max-width: 64.9px;
    }
    .sertcard .sert__card-title {
        margin-bottom: 5px;
        font-size: 13.2px;
    }
    .sertcard .sert__card-title, .sertcard .sert__card-service {
        font-size: 13.2px;
    }
    .sertcard .sert__card-price {
        font-size: 17.6px;
        line-height: 26.4px;
        border-radius: 8.33px;
        padding: 1.1px 8.8px;
    }
    .sertcard .sert__card-desc {
        font-size: 13.2px;
        max-width: 192.5px;
    }
}

/* serthow */
.serthow {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    display: none;
    max-width: 900px;
}
.serthow .sert__top {
    padding: 25px 50px;
}
.serthow .sert__wrapper {
    padding: 30px;
    margin-top: 0;
}
.serthow__items {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}
.serthow__item {
    grid-column: 4 span;
    border-radius: 15px;
    overflow: hidden;
    background: #4F4F4F;
}
.serthow__item-img {
    height: 180px;
}
.serthow__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.serthow__item-wrap {
    padding: 20px;
}
.serthow__item-wrap h3 {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.serthow__item-wrap p {
    font-size: 16px;
    line-height: 24px;
}
.serthow__btn {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 992px) {
    .serthow {
        max-width: 688px;
    }
}
@media (max-width: 768px) {
    .serthow {
        max-width: 330px;
        max-height: 670px;
        overflow-y: scroll;
    }
    .serthow .sert__top {
        padding: 15px 20px;
    }
    .serthow .sert__wrapper {
        padding: 15px;
    }
    .serthow__items {
        column-gap: 0;
    }
    .serthow__item {
        grid-column: 12 span;
    }
    .serthow__item-img {
        height: 140px;
    }
    .serthow__item-wrap {
        padding: 15px;
    }
    .serthow__item-wrap h3 {
        font-size: 20px;
    }
    .serthow .sert__offer {
        font-size: 27px;
        line-height: 36px;
        margin-bottom: 7px;
        max-width: 240px;
    }
    .serthow .sert__desc {
        font-size: 16px;
        line-height: 27px;
        max-width: 240px;
    }
}

/* sertthanks */
.sertthanks {
    background: black;
    width: 1000px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #4F4F4F;
    border-radius: 16px;
}
.sertthanks__body {
}
.sertthanks__offer {
    color: #EB7605;
    text-transform: uppercase;
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 32px;
    line-height: 36px;
    max-width: 700px;
    margin: 0 auto;
}
.sertthanks__content {
    position: relative;
    width: 500px;
    height: 300px;
    margin: 0 auto;
}
.sertthanks__text {
    font-family: 'Oswald';
    font-size: 20px;
    line-height: 150%;
    color: #363535;
    text-transform: uppercase;
    left: 0;
    top: 75px;
    max-width: 284px;
    position: absolute;
    z-index: 1;
}
.sertthanks__img {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 300px;
}
.sertthanks__img img {
    max-width: 100%;
}
@media (max-width: 992px) {
    .sertthanks {
        width: 688px;
        padding: 40px 60px;
    }
    .sertthanks__offer {
        font-size: 32px;
        line-height: 36px;
        max-width: 568px;
    }
    .sertthanks__content {
        position: relative;
        width: 500px;
        height: 300px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .sertthanks {
        width: 330px;
        padding: 40px 32px;
        overflow: hidden;
    }
    .sertthanks__offer {
        font-size: 22px;
        line-height: 120%;
        max-width: 210px;
        margin-bottom: 20px;
    }
    .sertthanks__content {
        position: relative;
        width: 100%;
        height: 257px;
    }
    .sertthanks__text {
        font-size: 17px;
        line-height: 120%;
        top: 20px;
        max-width: 147px;
    }
    .sertthanks__img {
        right: -60px;
        width: 257px;
    }
    .sertthanks__img img {
        max-width: 100%;
    }
}
