/*-----------------------------
Reset
-----------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, strike, strong, sub, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.005);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  outline: none;
}

html, body, #__nuxt, #__layout, #app {
  height: 100%;
  width: 100%;
  position: relative;
}

[v-cloak] {
  display: none;
}

svg, a {
  fill: inherit;
  color: inherit;
}

svg {
  display: block;
  fill: currentColor;
}
svg path {
  fill: inherit;
}

input, textarea, button {
  font: inherit;
}

.svgsprite {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

[hidden] {
  display: none;
}

/*-----------------------------
Fonts
-----------------------------*/
@font-face {
  font-family: "font";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/regular.woff") format("woff"), url("../fonts/regular.woff2") format("woff2");
}
@font-face {
  font-family: "font";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/medium.woff") format("woff"), url("../fonts/medium.woff2") format("woff2");
}
@font-face {
  font-family: "font";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/semibold.woff") format("woff"), url("../fonts/semibold.woff2") format("woff2");
}
@font-face {
  font-family: "lora";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/lora_regular.woff") format("woff"), url("../fonts/lora_regular.woff2") format("woff2");
}
@font-face {
  font-family: "lora";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/lora_bold.woff") format("woff"), url("../fonts/lora_bold.woff2") format("woff2");
}
/*-----------------------------
Variables
-----------------------------*/
:root {
  /* layout */
  --container-width: 1200px;
  --container-gap: 48px;
  /* Fonts */
  --basefont: "font", sans-serif;
  --titlefont: "lora", serif;
  --font-size:15px;
  --small-font-size:calc(var(--font-size) * 0.9);
  --heading-h1: calc(var(--font-size) * 2.1);
  --heading-h2: calc(var(--font-size) * 1.8);
  --heading-h3: calc(var(--font-size) * 1.6);
  --heading-h4: calc(var(--font-size) * 1.4);
  --heading-h5: calc(var(--font-size) * 1.2);
  --heading-h6: calc(var(--font-size) * 1.1);
  /* Colors */
  --color-primary: #AF9E8C;
  --color-primary-light: #E9DDD0;
  --color-primary-dark: #927D67;
  --color-black: #343A40;
  --color-gray-0: #F8F9FA;
  --color-gray-1: #F1F3F5;
  --color-gray-2: #DEE2E6;
  --color-gray-3: #ADB5BD;
  --color-gray-4: #868E96;
  --shadow: 0 0 30px 0 rgba(52,58,64,0.10);
  /* Media */
}
@media (max-width: 480px) {
  :root {
    --font-size:13px;
    --container-gap: 24px;
  }
}

/*-----------------------------
Global
-----------------------------*/
html {
  font-family: var(--basefont);
  color: var(--color-black);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.5;
}

body {
  background: var(--color-gray-0);
}
body.noscroll {
  overflow: hidden;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: auto;
}

.main {
  flex: 1;
}

.container {
  padding-left: calc((100% - var(--container-width)) / 2);
  padding-right: calc((100% - var(--container-width)) / 2);
}
@media (max-width: 1248px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.wrapper {
  display: flex;
  align-items: flex-start;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 300px;
  position: relative;
}
@media (max-width: 768px) {
  .wrapper {
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
  }
  .wrapper .sidebar {
    grid-row: 1;
    position: relative;
    top: 0;
  }
}
.wrapper__body {
  min-width: 0px;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.bg {
  padding: 32px 40px;
}
@media (max-width: 768px) {
  .bg {
    padding: 20px;
  }
}
.bg_white {
  background: white;
}

.grid-4 {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
}
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (max-width: 480px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

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

/*-----------------------------
Go to top button
-----------------------------*/
.gotop {
  width: 32px;
  height: 32px;
  padding: 9px;
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(-90deg);
  z-index: 255;
  border-radius: 20px;
  cursor: pointer;
  color: white;
}
.gotop:hover {
  background: var(--color-primary);
  color: white;
}

/*-----------------------------
Section
-----------------------------*/
.section {
  margin: var(--container-gap) 0;
}
.section:first-child {
  margin: 24px 0 var(--container-gap) 0;
}
.section__body {
  min-width: 0px;
}

/*-----------------------------
Heading
-----------------------------*/
.heading {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.heading__title, .heading__actions {
  margin-bottom: 12px;
}
.heading .breadcrumbs {
  flex: 1 0 100%;
}
@media (max-width: 768px) {
  .heading {
    flex-wrap: wrap;
  }
}
.heading_centered {
  text-align: center;
  flex-direction: column;
}

.date {
  color: var(--color-gray-4);
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.date > svg {
  color: var(--color-gray-2);
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

/*-----------------------------
Tippy popups
https://atomiks.github.io/tippyjs/
-----------------------------*/
[data-tippy-root] .tippy-content {
  padding: 10px 18px;
}
[data-tippy-root] .tippy-arrow {
  color: white;
}
[data-tippy-root] .tippy-box {
  will-change: transform;
  border-radius: 3px;
  box-shadow: var(--shadow);
  background: white;
  color: var(--color-black);
}

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

.tippy-box[data-animation=perspective][data-placement^=top] {
  transform-origin: bottom;
}

.tippy-box[data-animation=perspective][data-placement^=top][data-state=visible] {
  transform: perspective(700px);
}

.tippy-box[data-animation=perspective][data-placement^=top][data-state=hidden] {
  transform: perspective(700px) translateY(8px) rotateX(60deg);
}

.tippy-box[data-animation=perspective][data-placement^=bottom] {
  transform-origin: top;
}

.tippy-box[data-animation=perspective][data-placement^=bottom][data-state=visible] {
  transform: perspective(700px);
}

.tippy-box[data-animation=perspective][data-placement^=bottom][data-state=hidden] {
  transform: perspective(700px) translateY(-8px) rotateX(-60deg);
}

.tippy-box[data-animation=perspective][data-placement^=left] {
  transform-origin: right;
}

.tippy-box[data-animation=perspective][data-placement^=left][data-state=visible] {
  transform: perspective(700px);
}

.tippy-box[data-animation=perspective][data-placement^=left][data-state=hidden] {
  transform: perspective(700px) translateX(8px) rotateY(-60deg);
}

.tippy-box[data-animation=perspective][data-placement^=right] {
  transform-origin: left;
}

.tippy-box[data-animation=perspective][data-placement^=right][data-state=visible] {
  transform: perspective(700px);
}

.tippy-box[data-animation=perspective][data-placement^=right][data-state=hidden] {
  transform: perspective(700px) translateX(-8px) rotateY(60deg);
}

.tippy-box[data-animation=perspective][data-state=hidden] {
  opacity: 0;
}

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

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

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

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

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

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

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

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

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

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

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

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

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

.swiper-container {
  min-width: 0px;
  width: 100%;
}

/*-----------------------------
gLightbox
https://biati-digital.github.io/glightbox/
-----------------------------*/
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: none;
  overflow: hidden;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

/* top: 0;
        left: 0;
        right: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); */
.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  width: 100%;
  max-width: 100%;
  position: relative;
  width: 100vh;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: block;
  display: inline-flex;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  background: transparent;
  position: absolute;
  bottom: 15px;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc string {
  color: #fff;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  background-repeat: no-repeat;
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  display: block;
  background-position: 0 0;
  border: none;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 100%;
  height: auto;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description,
.glightbox-modern .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner,
.glightbox-modern .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title,
.glightbox-modern .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc,
.glightbox-modern .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video,
.glightbox-modern .gslide-video {
  background: #000;
}

/* .gprev,
    .gnext,
    .gclose{
        border: none;
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGMAAAA2CAYAAADTeCfRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5NThDMEMwNzg3NjgxMUU1QUM2MUYwRDYwNTNEN0UxMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5NThDMEMwODg3NjgxMUU1QUM2MUYwRDYwNTNEN0UxMSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk1OEMwQzA1ODc2ODExRTVBQzYxRjBENjA1M0Q3RTExIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjk1OEMwQzA2ODc2ODExRTVBQzYxRjBENjA1M0Q3RTExIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+htE8KwAAA9BJREFUeNrsm1tIFGEYhndDI4OSLgqkMrKjBXYwCjt40QkpL4pMyoqMgigIgm6iiy66KSwpj2vrucKgpINRRhYRooQkWYEWUkaWERokhVQXbu/QOyDhpjPzz3H/Dx7W1f2+753/3X9mnPnHHwqFfDKcEWPkEEgzZEgzpBkybDbjHLhvIP8GKLNhPILgksEaFaDKKWacAMdAn4Ean8F+kGOxGXFgDyjSmZ8L9oFpurKVU1uBnAr9jZMCah1hrQLBGkciyL7FGvNymXdZb2+RG3GGYo4LrHmINS9abEiZRkMu8PNXjPQVJV4Vc9SEgclm7WqLDSkd5RdBiBGizCihmMMmDkwWe1yz2JBy9g2E+ft5o7smkWZUUMwBCwYmg71u2nQMCZhphFEzaihmt4UDk86e9TYZUsj3OaKNMGJGHcVkWjwoChvZ+7HFfQvZt42vpaJ76Em6SzHbbDBCZR01NFvct519u8yorzXhEcWk2WiESiq1tFrUT901veZrnp1mNFHEWgcYoZJMTe0m98ljn3K+z+f7oB1mtLD5agcZoZJEbZ3Ab0J9deCrwpzSB6004xWbLnegESqJ1NgNok04aFeF+XtA5MF8pA90stkiBxuhkkCtvSBGQL2iEYz415Bys8yIAu/ZZKELjFCJp+Z+EGugTgHrVGq8ClEm2oxZ4CUYAHNcZIRKHOjj6ed8A8eISo15xUaPIcP9spFFk11ohMp0bkOHxrxa5lXo7Ksack9Pvn+YpTqLwS0QDZbxRo+bYgJoBZPAZtCiIVe5QzceZBroXwP8YKfWRH+YdVOx4AOYCOJBt0uMUAz4BGLAVNDjhXvg/bwF2UdTElywLVOoN5o/97hsRv/3HvgAv10fwVuQ6ODtUO45f6HmyaDXi6tDfoMZNKMdJDlwG2ZyN/qVs/mbl5fqDILZoAO8AMkO0j8XvONJhjKLf0TKuqkF4Dl4BlY6QLty1vcGdHE39SvSFrEtBc2gCWywUfcKfjE6eHIxGKkrCleBRvAApNmgOQU8BW2crRG/vDMV1JN0C/WmcmYqZizxeSyMLO/cBG6DOyDDAq3rwRPOyhSfB8PoWtst4DrJMlGnYnwDeMjZ4c0QdGGumhfIsk246LeVtetcfOFyVEQJ8nQv+AkqwThQIqjuDnAV1ILtPo9HlMBaB/kfewCMBfkG6ylL85VnJZSroLt8kRAmTLezOpfUD+W0WQvFnIzfpEePlaeO5oE1OvOVp56+R8KuaWiYZYYMG05tZUgzpBkypBnSDBnSDGmGDGmGDGmGNEOGNEOaIUOa4YH4I8AAM9m8BFEzyDIAAAAASUVORK5CYII=');
    } */
.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose,
.glightbox-modern .gprev,
.glightbox-modern .gnext,
.glightbox-modern .gclose {
  background-color: rgba(0, 0, 0, 0.12);
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover,
.glightbox-modern .gprev:hover,
.glightbox-modern .gnext:hover,
.glightbox-modern .gclose:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path,
.glightbox-modern .gprev path,
.glightbox-modern .gnext path,
.glightbox-modern .gclose path {
  fill: #fff;
}

.glightbox-clean button:focus:not(.focused):not(.disabled),
.glightbox-modern button:focus:not(.focused):not(.disabled) {
  outline: none;
}

.glightbox-clean .gprev,
.glightbox-modern .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 56px;
}

.glightbox-clean .gnext,
.glightbox-modern .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 56px;
}

.glightbox-clean .gclose,
.glightbox-modern .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
  opacity: 0.7;
  background-position: -59px 2px;
}

.glightbox-clean .gclose svg,
.glightbox-modern .gclose svg {
  width: 20px;
}

.glightbox-clean .gclose:hover,
.glightbox-modern .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }

  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }

  .glightbox-container .ginner-container.desc-top .gslide-image,
.glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }

  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }

  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }

  .gslide-image img {
    max-height: 97vh;
    max-width: calc(100% - 20px);
    max-width: 100%;
  }

  .gslide-image img.zoomable {
    cursor: zoom-in;
  }

  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }

  .gslide-inline {
    max-height: 95vh;
  }

  .gslide-external {
    max-height: 100vh;
  }

  .gslide-description.description-left,
.gslide-description.description-right {
    max-width: 275px;
  }

  .glightbox-open {
    height: auto;
  }

  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }

  .glightbox-clean .gslide-media,
.glightbox-modern .gslide-media {
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }

  .glightbox-clean .description-left .gdesc-inner,
.glightbox-clean .description-right .gdesc-inner,
.glightbox-modern .description-left .gdesc-inner,
.glightbox-modern .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }

  .glightbox-clean .gprev,
.glightbox-modern .gprev {
    top: 45%;
  }

  .glightbox-clean .gnext,
.glightbox-modern .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose,
.glightbox-modern .gclose {
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
.goverlay {
  background: rgba(52, 58, 64, 0.9);
}

.gslide-media.gslide-image {
  box-shadow: var(--shadow);
}

/*-----------------------------
Block
-----------------------------*/
.block {
  background: white;
  padding: 24px 24px 12px 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.block[href]:hover {
  box-shadow: var(--shadow);
}
.block[href]:hover .block__title, .block[href]:hover .block__title > * {
  color: var(--color-primary);
}
.block[href]:hover .block__content p {
  color: var(--color-black);
}
@media (max-width: 320px) {
  .block {
    flex-direction: column;
  }
}
.block_shadow {
  box-shadow: var(--shadow);
}
@media (max-width: 320px) {
  .block_horizontal-xxs {
    flex-direction: row;
  }
  .block_horizontal-xxs .block__content > *:first-child {
    margin-top: -6px;
  }
  .block_horizontal-xxs .block__image {
    flex: 1 0 160px;
  }
}
@media (max-width: 480px) {
  .block_horizontal-xs {
    flex-direction: row;
  }
  .block_horizontal-xs .block__content > *:first-child {
    margin-top: -6px;
  }
  .block_horizontal-xs .block__image {
    flex: 1 0 160px;
  }
}
@media (max-width: 768px) {
  .block_horizontal-sm {
    flex-direction: row;
  }
  .block_horizontal-sm .block__content > *:first-child {
    margin-top: -6px;
  }
  .block_horizontal-sm .block__image {
    flex: 1 0 160px;
  }
}
@media (max-width: 992px) {
  .block_horizontal-md {
    flex-direction: row;
  }
  .block_horizontal-md .block__content > *:first-child {
    margin-top: -6px;
  }
  .block_horizontal-md .block__image {
    flex: 1 0 160px;
  }
}
.block_horizontal-lg {
  flex-direction: row;
}
.block_horizontal-lg .block__content > *:first-child {
  margin-top: -6px;
}
.block_horizontal-lg .block__image {
  flex: 1 0 160px;
}
@media (max-width: 320px) {
  .block_vertical-xxs {
    flex-direction: column;
  }
  .block_vertical-xxs .block__content > *:first-child {
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .block_vertical-xs {
    flex-direction: column;
  }
  .block_vertical-xs .block__content > *:first-child {
    margin-top: 12px;
  }
  .block_vertical-xs .block__image {
    flex: 1 0 auto;
  }
}
@media (max-width: 768px) {
  .block_vertical-sm {
    flex-direction: column;
  }
  .block_vertical-sm .block__content > *:first-child {
    margin-top: 12px;
  }
}
@media (max-width: 992px) {
  .block_vertical-md {
    flex-direction: column;
  }
  .block_vertical-md .block__content > *:first-child {
    margin-top: 12px;
  }
}
.block_vertical-lg {
  flex-direction: column;
}
.block_topline {
  box-shadow: 0 -4px 0 0 var(--color-primary);
}
.block__image {
  margin: 0 24px 12px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}
.block__image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.block__image .icon-youtube {
  width: 48px;
  height: 34px;
  background: url("../images/icon-youtube.svg") no-repeat center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
}
.block__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.block__content > * {
  margin: 12px 0;
  display: block;
}
@media (max-width: 768px) {
  .block__title > * {
    font-size: var(--heading-h6);
  }
}
.block__links > *:not(:last-child) {
  margin-right: 20px;
}

/*-----------------------------
Breadcrumbs
-----------------------------*/
.breadcrumbs {
  flex: 1 0 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.breadcrumbs > a {
  display: block;
  position: relative;
  font-size: 13px;
  line-height: 22px;
  color: var(--color-gray-3);
}
.breadcrumbs > a:hover {
  color: var(--color-gray-4);
}
.breadcrumbs > a > svg {
  fill: var(--color-gray-3);
  width: 14px;
  height: 14px;
  display: block;
  margin: 4px 0;
}
.breadcrumbs > a:not(:last-child) {
  padding-right: 28px;
}
.breadcrumbs > a:not(:last-child):after {
  content: "";
  background: url("../images/icon-next-s.svg") no-repeat center/contain;
  position: absolute;
  top: 6px;
  right: 8px;
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

/*-----------------------------
Card
-----------------------------*/
.card {
  background: white;
  padding: 24px 24px 12px 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.card[href]:hover {
  box-shadow: var(--shadow);
}
.card[href]:hover .block__title {
  color: var(--color-primary);
}
.card_shadow {
  box-shadow: var(--shadow);
}
.card_topline {
  box-shadow: 0 -4px 0 0 var(--color-primary);
}
.card__image {
  margin: 0 24px 8px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}
.card__image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-height: 260px;
}
.card__image .icon-youtube {
  width: 48px;
  height: 34px;
  background: url("../images/icon-youtube.svg") no-repeat center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
}
.card__content {
  width: 100%;
}
.card__content > * {
  margin: 12px 0;
  display: block;
}
@media (max-width: 768px) {
  .card__title > * {
    font-size: var(--heading-h6);
  }
}
.card__links > *:not(:last-child) {
  margin-right: 20px;
}

/*-----------------------------
Contacts
-----------------------------*/
.contacts {
  display: flex;
  min-width: 0px;
  width: 100%;
}
@media (max-width: 768px) {
  .contacts {
    flex-direction: column;
  }
}
.contacts__body {
  background: white;
  padding: 24px;
  flex: 0 0 340px;
}
@media (max-width: 768px) {
  .contacts__body {
    flex: 1 1 auto;
    padding: 20px;
  }
}
.contacts__row {
  padding-left: 22px;
  position: relative;
  margin-bottom: 24px;
}
.contacts__row--icon {
  position: absolute;
  color: var(--color-primary);
  top: 4px;
  left: 0;
}
.contacts__row--label {
  font-weight: 600;
  margin-bottom: 4px;
}
.contacts__map {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.contacts__map .map {
  width: 100%;
  height: 100%;
}

/*-----------------------------
Footer
-----------------------------*/
.footer {
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}
.footer__nav {
  border-bottom: 1px solid var(--color-gray-1);
  overflow-x: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gray-3) var(--color-gray-1);
}
.footer__nav::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.footer__nav::-webkit-scrollbar-track {
  background-color: var(--color-gray-1);
  border-radius: 10px;
}
.footer__nav::-webkit-scrollbar-thumb {
  background-color: var(--color-gray-3);
  border-radius: 10px;
  cursor: pointer;
}
.footer__nav::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-gray-4);
}
.footer__nav::-webkit-scrollbar-thumb:active {
  background-color: var(--color-gray-4);
}
.footer__nav::-webkit-scrollbar-thumb:vertical {
  min-height: 30px;
}
.footer__nav::-webkit-scrollbar-thumb:horizontal {
  min-width: 30px;
}
.footer__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
@media (max-width: 768px) {
  .footer__body {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.footer .contacts__item {
  margin: 8px 0;
  text-align: left;
}
.footer .contacts__item:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 768px) {
  .footer .contacts__item:not(:last-child) {
    margin-right: 0;
  }
}
.footer .copyright {
  flex: 1;
  color: var(--color-gray-4);
  font-size: var(--small-font-size);
  margin: 8px 0;
}

/*-----------------------------
Buttons
-----------------------------*/
.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: var(--color-primary);
  display: inline-flex;
  font-family: var(--basefont);
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 80px;
  cursor: pointer;
  will-change: transform, background-color, color, box-shadow;
  transform: translateZ(0);
  transition: transform 0.2s, background-color 0.3s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  z-index: 10;
  position: relative;
  text-align: center;
  justify-content: center;
  color: white;
}
.btn:hover {
  transform: translateY(-2px);
  color: white;
  background-color: var(--color-primary);
}
.btn:active {
  transform: translateY(0);
  color: white;
  background-color: var(--color-primary-dark);
}
.btn_small {
  padding: 2px 16px;
}
.btn_big {
  padding: 10px 24px;
}
.btn_wide {
  width: 100%;
}

/*-----------------------------
Inputs
-----------------------------*/
.input {
  width: 100%;
}
.input input[type=color], .input input[type=date], .input input[type=datetime], .input input[type=datetime-local], .input input[type=email], .input input[type=month], .input input[type=number], .input input[type=password], .input input[type=search], .input input[type=tel], .input input[type=text], .input input[type=time], .input input[type=url], .input input[type=week], .input input:not([type]), .input textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: 0 0 0 1px var(--color-gray-2) inset;
  border: 0;
  background-color: white;
  font-weight: 500;
  font-size: var(--font-size);
  line-height: 28px;
  font-family: var(--basefont);
  color: var(--black);
  margin: 0;
  padding: 8px 20px;
  width: 100%;
  display: block;
  border-radius: 8px;
  position: relative;
  resize: vertical;
}
.input input[type=color]::-webkit-input-placeholder, .input input[type=date]::-webkit-input-placeholder, .input input[type=datetime]::-webkit-input-placeholder, .input input[type=datetime-local]::-webkit-input-placeholder, .input input[type=email]::-webkit-input-placeholder, .input input[type=month]::-webkit-input-placeholder, .input input[type=number]::-webkit-input-placeholder, .input input[type=password]::-webkit-input-placeholder, .input input[type=search]::-webkit-input-placeholder, .input input[type=tel]::-webkit-input-placeholder, .input input[type=text]::-webkit-input-placeholder, .input input[type=time]::-webkit-input-placeholder, .input input[type=url]::-webkit-input-placeholder, .input input[type=week]::-webkit-input-placeholder, .input input:not([type])::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
  color: var(--color-gray-3);
}

.input input[type=color]:-webkit-input-placeholder, .input input[type=date]:-webkit-input-placeholder, .input input[type=datetime]:-webkit-input-placeholder, .input input[type=datetime-local]:-webkit-input-placeholder, .input input[type=email]:-webkit-input-placeholder, .input input[type=month]:-webkit-input-placeholder, .input input[type=number]:-webkit-input-placeholder, .input input[type=password]:-webkit-input-placeholder, .input input[type=search]:-webkit-input-placeholder, .input input[type=tel]:-webkit-input-placeholder, .input input[type=text]:-webkit-input-placeholder, .input input[type=time]:-webkit-input-placeholder, .input input[type=url]:-webkit-input-placeholder, .input input[type=week]:-webkit-input-placeholder, .input input:not([type]):-webkit-input-placeholder, .input textarea:-webkit-input-placeholder {
  color: var(--color-gray-3);
}

.input input[type=color]:-moz-placeholder, .input input[type=date]:-moz-placeholder, .input input[type=datetime]:-moz-placeholder, .input input[type=datetime-local]:-moz-placeholder, .input input[type=email]:-moz-placeholder, .input input[type=month]:-moz-placeholder, .input input[type=number]:-moz-placeholder, .input input[type=password]:-moz-placeholder, .input input[type=search]:-moz-placeholder, .input input[type=tel]:-moz-placeholder, .input input[type=text]:-moz-placeholder, .input input[type=time]:-moz-placeholder, .input input[type=url]:-moz-placeholder, .input input[type=week]:-moz-placeholder, .input input:not([type]):-moz-placeholder, .input textarea:-moz-placeholder {
  color: var(--color-gray-3);
}

.input input[type=color]::-moz-placeholder, .input input[type=date]::-moz-placeholder, .input input[type=datetime]::-moz-placeholder, .input input[type=datetime-local]::-moz-placeholder, .input input[type=email]::-moz-placeholder, .input input[type=month]::-moz-placeholder, .input input[type=number]::-moz-placeholder, .input input[type=password]::-moz-placeholder, .input input[type=search]::-moz-placeholder, .input input[type=tel]::-moz-placeholder, .input input[type=text]::-moz-placeholder, .input input[type=time]::-moz-placeholder, .input input[type=url]::-moz-placeholder, .input input[type=week]::-moz-placeholder, .input input:not([type])::-moz-placeholder, .input textarea::-moz-placeholder {
  color: var(--color-gray-3);
}

.input input[type=color]:-ms-input-placeholder, .input input[type=date]:-ms-input-placeholder, .input input[type=datetime]:-ms-input-placeholder, .input input[type=datetime-local]:-ms-input-placeholder, .input input[type=email]:-ms-input-placeholder, .input input[type=month]:-ms-input-placeholder, .input input[type=number]:-ms-input-placeholder, .input input[type=password]:-ms-input-placeholder, .input input[type=search]:-ms-input-placeholder, .input input[type=tel]:-ms-input-placeholder, .input input[type=text]:-ms-input-placeholder, .input input[type=time]:-ms-input-placeholder, .input input[type=url]:-ms-input-placeholder, .input input[type=week]:-ms-input-placeholder, .input input:not([type]):-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  color: var(--color-gray-3);
}

.input input[type=color] + label, .input input[type=date] + label, .input input[type=datetime] + label, .input input[type=datetime-local] + label, .input input[type=email] + label, .input input[type=month] + label, .input input[type=number] + label, .input input[type=password] + label, .input input[type=search] + label, .input input[type=tel] + label, .input input[type=text] + label, .input input[type=time] + label, .input input[type=url] + label, .input input[type=week] + label, .input input:not([type]) + label, .input textarea + label {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  font-family: var(--basefont);
  position: absolute;
  color: var(--color-gray-3);
  top: 10px;
  left: 20px;
  z-index: 1;
  transition: all 200ms;
  pointer-events: none;
}
.input > input[type=checkbox], .input > input[type=radio] {
  display: none;
}
.input > input[type=checkbox]:checked + label:before, .input > input[type=radio]:checked + label:before {
  fill: white;
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M10.867 5.018l-.848-.88a.443.443 0 0 0-.643 0L6.008 7.634 4.625 6.198a.443.443 0 0 0-.644 0l-.848.88a.485.485 0 0 0 0 .668l2.34 2.429c.29.3.757.3 1.047.002 1.07-1.103 3.475-3.59 4.346-4.49a.482.482 0 0 0 0-.669z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  box-shadow: none;
}
.input > input[type=checkbox] + label, .input > input[type=radio] + label {
  padding-left: 28px;
  position: relative;
  display: block;
}
.input > input[type=checkbox] + label:before, .input > input[type=radio] + label:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  color: var(--color-gray-3);
  padding: 5px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  box-shadow: 0 0 0 1px var(--color-gray-1);
  cursor: pointer;
  background-repeat: repeat;
  fill: transparent;
  background-color: white;
}
.input > input[type=radio] + label:before {
  border-radius: 20px;
}
.input label {
  cursor: pointer;
}
.input label a {
  color: var(--color-primary);
}
.input label a:hover {
  color: var(--color-primary-dark);
}

/*-----------------------------
Header
-----------------------------*/
.header {
  box-shadow: var(--shadow);
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
}
.header__body {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-gray-1);
}
.header__logo {
  height: 60px;
  display: block;
  max-width: 400px;
  margin-right: 32px;
}
.header__logo > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header__contacts {
  display: flex;
}
.header__contacts-block:not(:last-child) {
  margin-right: 32px;
}
.header__mobile {
  display: none;
  justify-content: center;
}
.header__mobile-icon {
  display: block;
  margin: 16px 8px;
  padding: 9px;
  color: var(--color-gray-4);
  background: var(--color-gray-1);
  border-radius: 20px;
  cursor: pointer;
}
.header__mobile-icon:hover {
  background: var(--color-primary);
  color: white;
}

.contacts__item-label {
  font-size: var(--small-font-size);
  color: var(--color-gray-4);
  margin: 8px 0;
}
.contacts__item-value {
  margin: 8px 0;
  display: flex;
  align-items: center;
}
.contacts__item-value--icon {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  margin-right: 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__close {
  display: none;
}
.nav__toggle {
  transition: transform 300ms;
}
.nav__toggle.active {
  transform: rotate(90deg);
}
.nav__item > a {
  display: block;
  text-decoration: none;
  font-family: var(--titlefont);
  font-size: var(--heading-h6);
  padding: 18px 12px;
  white-space: nowrap;
}

.mobile .header__contacts, .mobile .header__nav {
  display: none;
}
.mobile .header__mobile {
  display: flex;
}
.mobile .header__body {
  justify-content: center;
  padding: 16px 0;
}
.mobile .header__logo {
  height: 50px;
  margin-right: 0;
}
.mobile .nav {
  display: none;
  order: 3;
  flex-direction: column;
  border-top: 1px solid var(--color-gray-1);
  padding: 12px 0;
}
.mobile .nav.active {
  display: flex;
}
.mobile .nav .nav__item {
  width: 100%;
  text-align: center;
}
.mobile .nav .nav__item > a {
  padding: 12px;
}

/*-----------------------------
Hero
-----------------------------*/
.hero {
  display: flex;
  margin: 32px 0;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
}
.hero__image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__block {
  max-width: 300px;
  width: 100%;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .hero__block {
    margin-left: 0;
    margin-top: 30px;
    max-width: 100%;
  }
}
.hero__block .block {
  height: 100%;
}

/*-----------------------------
History
-----------------------------*/
.history {
  padding: 40px;
  background-color: var(--color-gray-2);
  background-image: url("../images/temp/image-index-mon-history.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  margin-bottom: var(--container-gap);
  display: flex;
}
@media (max-width: 768px) {
  .history {
    padding: 20px;
  }
}
.history__image {
  align-self: flex-end;
  margin: -90px -40px -40px 0;
  flex: 0 0 auto;
}
@media (max-width: 992px) {
  .history__image {
    flex: 0 0 300px;
  }
}
@media (max-width: 768px) {
  .history__image {
    display: none;
  }
}
.history__image > img {
  display: block;
  width: 100%;
}

/*-----------------------------
Sliders
-----------------------------*/
.slider__gallery {
  min-width: 0px;
  margin-bottom: 24px;
}
.slider__gallery .swiper-container {
  width: 100%;
  height: 220px;
}
.slider__gallery .swiper-slide {
  display: flex;
  width: auto;
}
.slider__gallery .swiper-slide a {
  display: inline-block;
  width: auto;
  height: 220px;
}
.slider__gallery .swiper-slide a > img {
  display: block;
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.swiper-buttons {
  display: flex;
  pointer-events: none;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 98%;
  left: 1%;
}

.swiper-button-prev, .swiper-button-next {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--color-gray-2);
  color: var(--color-gray-3);
  padding: 8px;
  cursor: pointer;
  pointer-events: all;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: var(--color-primary);
  color: white;
  border-color: transparent;
}

.swiper-button-prev {
  transform: scale(-1);
}

/*-----------------------------
Content image gallery
-----------------------------*/
.content__images {
  margin: 0 0 24px 0;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  background: white;
}
@media (max-width: 480px) {
  .content__images {
    flex-direction: column;
  }
}
.content__images a {
  display: inline-flex;
  flex: 1 1 33%;
  padding: 10px;
}
.content__images figure {
  text-align: center;
  width: 100%;
}
.content__images figure img {
  display: block;
  width: 100%;
  /*height: 100%;*/
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  /*max-height: 260px;*/
}
.content__images figure figcaption {
  font-size: var(--small-font-size);
  color: var(--color-gray-4);
  margin-top: 16px;
}

/*-----------------------------
Sidebar menu
-----------------------------*/
.menu a {
  display: block;
}
.menu a:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-1);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

/*-----------------------------
News
-----------------------------*/
.news__item {
  display: flex;
  align-items: flex-start;
}
.news__item--image {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  overflow: hidden;
  margin-right: 24px;
}
@media (max-width: 480px) {
  .news__item--image {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    margin-right: 16px;
  }
}
.news__item--image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news__item--date {
  color: var(--color-gray-4);
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.news__item--date > svg {
  color: var(--color-gray-2);
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.news__item--title {
  font-weight: 500;
}

/*-----------------------------
Pagination
-----------------------------*/
.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.pagination a {
  font-size: 14px;
  color: var(--color-gray-4);
  background: white;
  line-height: 24px;
  display: block;
  padding: 7px 14px;
  text-align: center;
  margin: 12px 0;
  transition: all 150ms;
  text-decoration: none;
}
.pagination a.prev {
  transform: scale(1);
}
.pagination a.active {
  color: var(--color-black);
  cursor: default;
  background: var(--color-gray-1);
}
.pagination a:not(.active):hover {
  background: var(--color-gray-2);
  color: var(--color-black);
}

/*-----------------------------
Schedule
-----------------------------*/
.schedule__date {
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 24px;
}
.schedule__date--prev, .schedule__date--next {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--color-gray-2);
  color: var(--color-gray-3);
  padding: 8px;
  cursor: pointer;
  pointer-events: all;
}
.schedule__date--prev:hover, .schedule__date--next:hover {
  background: var(--color-primary);
  color: white;
  border-color: transparent;
}
.schedule__date--prev {
  transform: scale(-1);
}
.schedule__date--body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 480px) {
  .schedule__date--body {
    flex-direction: column;
  }
}
.schedule__date--current {
  font-weight: 500;
  margin: 0 8px;
}
.schedule__date--old {
  font-size: var(--small-font-size);
  color: var(--color-gray-4);
}

.schedule__item {
  background: white;
  display: flex;
  align-items: center;
  padding: 24px;
  margin-bottom: 24px;
}
.schedule__item--time {
  font-weight: 600;
  flex: 0 0 60px;
}
.schedule {
  display: block;
}
.schedule__row {
  display: flex;
  padding: 12px 0;
}
.schedule__row:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-1);
}
.schedule__time {
  flex: 0 0 60px;
  font-weight: 500;
}
.schedule__value {
  flex: 1;
}

/*-----------------------------
Testimonials
-----------------------------*/
.testimonial__item {
  margin-bottom: 30px;
}
.testimonial__item_centered {
  max-width: 900px;
  padding: 10px 42px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 480px) {
  .testimonial__item_centered {
    padding: 10px 0;
  }
}
.testimonial__item--name {
  font-weight: 600;
  margin-bottom: 8px;
}
.testimonial__item--date {
  color: var(--color-gray-4);
  margin-bottom: 8px;
}
.testimonial__item--body p {
  margin: 0 0 20px 0;
}

@media (max-width: 480px) {
  .slider__testimonials {
    padding-bottom: 20px;
  }
  .slider__testimonials .swiper-buttons {
    max-width: 80px;
    margin: 0 auto;
    left: 50%;
    top: unset;
    bottom: 0;
    transform: translate(-50%, 0);
  }
}

/*-----------------------------
Typography
-----------------------------*/
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6, .content p {
  margin: 0 0 24px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--titlefont);
  font-weight: 600;
  color: var(--color-black);
  letter-spacing: 0;
}

h1 {
  font-size: var(--heading-h1);
}

h2 {
  font-size: var(--heading-h2);
}

h3 {
  font-size: var(--heading-h3);
}

h4 {
  font-size: var(--heading-h4);
}

h5 {
  font-size: var(--heading-h5);
}

h6 {
  font-size: var(--heading-h6);
}

a {
  text-decoration: none;
}
a:hover {
  color: var(--color-primary-dark);
}

p {
  margin: 0 0 24px 0;
  line-height: 1.8;
}

ul {
  margin: 24px auto;
}
ul li {
  margin-bottom: 12px;
  padding-left: 18px;
  display: block;
  position: relative;
  line-height: 1.8;
}
ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  position: absolute;
  top: 12px;
  left: 2px;
  border-radius: 3px;
}
@media (max-width: 480px) {
  ul li:before {
    top: 9px;
  }
}
ul li li:before {
  background: var(--color-gray-3);
}

ol {
  margin: 24px auto;
  counter-reset: counter;
}
ol li {
  margin-bottom: 16px;
  display: block;
  position: relative;
}
ol li:before {
  counter-increment: counter;
  content: counter(counter) ".";
  font-weight: 600;
  margin-right: 8px;
  min-width: 14px;
  display: inline-block;
  color: var(--primary-color);
}

.bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.text-small, .date, .news__item--date, .testimonial__item--date {
  font-size: var(--small-font-size);
  line-height: 1.5;
}

.text-gray {
  color: var(--color-gray-4);
}

.primary-link {
  display: inline-block;
  background: linear-gradient(to right, var(--color-primary-light) 100%, rgba(255, 255, 255, 0) 0%) repeat-x 0% 100%/100% 1px;
  color: var(--color-primary-dark);
}
.primary-link:hover {
  background: linear-gradient(to right, transparent 100%, rgba(255, 255, 255, 0) 0%) repeat-x 0% 100%/100% 1px;
}

/*Новая шапка с большим заголовком и зеленой вывеской */
.header__logo {
  height: 150px;
  display: block;
  max-width: 700px;
  margin-right: 32px;
}

.new-contact-block{
  display: flex;
  justify-content: center; /* Центрирование по горизонтали */
  align-items: baseline; /* Центрирование по вертикали */
}

.new-contact-block img {
  max-width: 100%; /* Чтобы изображение не выходило за пределы блока */
  height: auto; /* Сохранение пропорций изображения */
}

.new_history_container
{
  display: flex;
  justify-content: center; /* Центрирование по горизонтали */
  align-items: baseline;
}

.new_history_container img {
  max-width: 100%; /* Чтобы изображение не выходило за пределы блока */
  height: auto; /* Сохранение пропорций изображения */
}

.hiden-history {
  display: none;
}
@media (max-width: 1248px) {
  .hiden-history {
    display: block;
  }
.section.new_history_section {
  display: none;
}
}
/*Новая шапка с большим заголовком и зеленой вывеской */