@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap"); /* Reset styles ==================================*/
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

body {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--main-text-color);
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  cursor: pointer;
  color: inherit;
  background-color: 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;
}

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

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

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

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

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

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

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

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-zoomInUp {
  -webkit-animation: 0.2s ease-out 0.1s both f-zoomInUp;
          animation: 0.2s ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: 0.2s ease-out both f-zoomOutDown;
          animation: 0.2s ease-out both f-zoomOutDown;
}

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

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  -webkit-animation: 0.175s ease-out both f-throwOutUp;
          animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: 0.175s ease-out both f-throwOutDown;
          animation: 0.175s ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
            transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
            transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 150px, 0);
            transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 150px, 0);
            transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  -webkit-animation: 0.2s ease both f-fadeIn;
          animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: 0.2s ease both f-fadeOut;
          animation: 0.2s ease both f-fadeOut;
  z-index: 1;
}

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

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  -webkit-animation: 0.5s ease both f-fadeSlowIn;
          animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: 0.5s ease both f-fadeSlowOut;
          animation: 0.5s ease both f-fadeSlowOut;
  z-index: 1;
}

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

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  -webkit-animation: 0.2s ease-out both f-fadeFastIn;
          animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: 0.2s ease-out both f-fadeFastOut;
          animation: 0.2s ease-out both f-fadeFastOut;
  z-index: 2;
}

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

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  -webkit-animation: 0.2s ease-out both f-crossfadeIn;
          animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: 0.1s linear 0.1s both f-crossfadeOut;
          animation: 0.1s linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

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

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
          animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

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

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

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

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

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
          animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

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

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

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

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

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  will-change: transform, width, height;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: 0.35s ease backwards f-fadeIn;
          animation: 0.35s ease backwards f-fadeIn;
}

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

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: 0.35s ease forwards f-fadeOut;
          animation: 0.35s ease forwards f-fadeOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
}

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

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

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

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

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

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

.is-modern .f-thumbs__slide {
  --clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) );
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
          transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  pointer-events: none;
}

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

.is-modern .f-thumbs__slide > * {
  -webkit-clip-path: var(--clip-path);
          clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  -webkit-filter: none;
          filter: none;
}

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

.is-modern.is-resting .f-thumbs__slide > * {
  -webkit-transition: all 0.33s ease;
  -o-transition: all 0.33s ease;
  transition: all 0.33s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__infobar span {
  padding: 0 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.checkbox {
  position: relative;
}

.checkbox._form-error .checkbox__label::before {
  -webkit-box-shadow: 0 0 15px var(--main-accent-color);
          box-shadow: 0 0 15px var(--main-accent-color);
}

.checkbox__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1;
  height: 1;
  opacity: 0;
}

.checkbox__input:checked + .checkbox__label::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox__label {
  font-size: 16px;
  line-height: 140%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}

.checkbox__label a {
  color: var(--main-accent-color);
}

.checkbox__label::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  background-color: var(--main-bg-white);
  border: 2px solid var(--main-text-color);
  opacity: 0.5;
  border-radius: 4px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 10px;
}

.checkbox__label::after {
  content: "";
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
  position: absolute;
  background-color: var(--main-accent-color);
  border-radius: 4px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

/* Global settings ================================*/
body {
  background-color: var(--main-bg-white);
}

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

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

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

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

[class*=__container] {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0px 15px;
}

/* Base project settings========================== */
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 20px;
}
.logo__image {
  height: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.logo__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo__text {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.button {
  line-height: 1, 5;
  letter-spacing: -0.02em;
  background-color: var(--main-accent-color);
  padding: 0.75em 1em;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.75em;
     -moz-column-gap: 0.75em;
          column-gap: 0.75em;
}
@media (min-width: 62em) {
  .button {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .button {
      font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .button {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .button {
    font-size: 1rem;
  }
}
.button__text {
  color: var(--main-text-color-white);
}
.button svg {
  margin-top: 0.1em;
}
.button svg path {
  stroke: var(--main-text-color-white);
}
.button--white {
  background-color: var(--main-text-color-white);
}
.button--white .button__text {
  color: var(--main-text-color);
}
.button--white svg path {
  stroke: var(--main-text-color);
}

.title {
  display: inline-block;
  font-weight: 700;
  font-size: 30px;
  color: var(--main-text-color);
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}
.title span {
  color: var(--main-accent-color);
}
.title::before {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 50%;
  -webkit-transform: translateX(-73%);
      -ms-transform: translateX(-73%);
          transform: translateX(-73%);
  display: block;
  width: 97px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--main-text-color);
}
.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-27%);
      -ms-transform: translateX(-27%);
          transform: translateX(-27%);
  display: block;
  width: 100px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--main-accent-color);
}
.title--about {
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 62em) {
  .title--about {
    font-size: 1.625rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.25rem , 1.0714285714rem  +  0.8928571429vw , 1.625rem )) {
    .title--about {
      font-size: clamp( 1.25rem , 1.0714285714rem  +  0.8928571429vw , 1.625rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 1.0714285714rem  +  0.8928571429vw , 1.625rem )) {
    .title--about {
      font-size: calc(1.25rem + 0.375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .title--about {
    font-size: 1.25rem;
  }
}
@media (min-width: 62em) {
  .title--about::before {
    height: 0.1875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (height: clamp( 0.125rem , 0.0952380952rem  +  0.1488095238vw , 0.1875rem )) {
    .title--about::before {
      height: clamp( 0.125rem , 0.0952380952rem  +  0.1488095238vw , 0.1875rem );
    }
  }
  @supports not (height: clamp( 0.125rem , 0.0952380952rem  +  0.1488095238vw , 0.1875rem )) {
    .title--about::before {
      height: calc(0.125rem + 0.0625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .title--about::before {
    height: 0.125rem;
  }
}
@media (min-width: 62em) {
  .title--about::after {
    height: 0.1875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (height: clamp( 0.125rem , 0.0952380952rem  +  0.1488095238vw , 0.1875rem )) {
    .title--about::after {
      height: clamp( 0.125rem , 0.0952380952rem  +  0.1488095238vw , 0.1875rem );
    }
  }
  @supports not (height: clamp( 0.125rem , 0.0952380952rem  +  0.1488095238vw , 0.1875rem )) {
    .title--about::after {
      height: calc(0.125rem + 0.0625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .title--about::after {
    height: 0.125rem;
  }
}
@media (min-width: 62em) {
  .title--about::after {
    bottom: 0.0000000625rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (bottom: clamp( 0.0000000625rem , 0.1845237798rem  +  -0.2976188988vw , 0.125rem )) {
    .title--about::after {
      bottom: clamp( 0.0000000625rem , 0.1845237798rem  +  -0.2976188988vw , 0.125rem );
    }
  }
  @supports not (bottom: clamp( 0.0000000625rem , 0.1845237798rem  +  -0.2976188988vw , 0.125rem )) {
    .title--about::after {
      bottom: calc(0.125rem + -0.1249999375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .title--about::after {
    bottom: 0.125rem;
  }
}

.title-page {
  position: relative;
}
.title-page__container {
  text-align: center;
  position: relative;
  z-index: 3;
  color: var(--main-text-color-white);
  font-family: "Roboto", sans-serif;
}
@media (min-width: 62em) {
  .title-page__container {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .title-page__container {
      padding-top: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem );
    }
  }
  @supports not (padding-top: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .title-page__container {
      padding-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .title-page__container {
    padding-top: 0.9375rem;
  }
}
@media (min-width: 62em) {
  .title-page__container {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-bottom: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .title-page__container {
      padding-bottom: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .title-page__container {
      padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .title-page__container {
    padding-bottom: 0.9375rem;
  }
}
.title-page__title {
  font-weight: 500;
  line-height: 1.17;
  text-transform: uppercase;
}
@media (min-width: 62em) {
  .title-page__title {
    font-size: 3.3125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.25rem , 0.2678571429rem  +  4.9107142857vw , 3.3125rem )) {
    .title-page__title {
      font-size: clamp( 1.25rem , 0.2678571429rem  +  4.9107142857vw , 3.3125rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 0.2678571429rem  +  4.9107142857vw , 3.3125rem )) {
    .title-page__title {
      font-size: calc(1.25rem + 2.0625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .title-page__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 62em) {
  .title-page__title {
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 0.3125rem , 0.1636904762rem  +  0.744047619vw , 0.625rem )) {
    .title-page__title {
      margin-bottom: clamp( 0.3125rem , 0.1636904762rem  +  0.744047619vw , 0.625rem );
    }
  }
  @supports not (margin-bottom: clamp( 0.3125rem , 0.1636904762rem  +  0.744047619vw , 0.625rem )) {
    .title-page__title {
      margin-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .title-page__title {
    margin-bottom: 0.3125rem;
  }
}
.title-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.title-page__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.breadcrumbs {
  line-height: 1.2;
}
@media (min-width: 62em) {
  .breadcrumbs {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.75rem , 0.630952381rem  +  0.5952380952vw , 1rem )) {
    .breadcrumbs {
      font-size: clamp( 0.75rem , 0.630952381rem  +  0.5952380952vw , 1rem );
    }
  }
  @supports not (font-size: clamp( 0.75rem , 0.630952381rem  +  0.5952380952vw , 1rem )) {
    .breadcrumbs {
      font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .breadcrumbs {
    font-size: 0.75rem;
  }
}
.breadcrumbs__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1px;
     -moz-column-gap: 1px;
          column-gap: 1px;
}
.breadcrumbs__home {
  opacity: 0.8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.breadcrumbs__arrow {
  font-weight: 600;
  display: block;
  padding-top: 2px;
}
@media (min-width: 62em) {
  .breadcrumbs__arrow {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.5rem , 0.3214285714rem  +  0.8928571429vw , 0.875rem )) {
    .breadcrumbs__arrow {
      font-size: clamp( 0.5rem , 0.3214285714rem  +  0.8928571429vw , 0.875rem );
    }
  }
  @supports not (font-size: clamp( 0.5rem , 0.3214285714rem  +  0.8928571429vw , 0.875rem )) {
    .breadcrumbs__arrow {
      font-size: calc(0.5rem + 0.375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .breadcrumbs__arrow {
    font-size: 0.5rem;
  }
}
.breadcrumbs__current {
  font-weight: 500;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 600;
}
.pagination .page-numbers {
  border: 2px solid var(--main-accent-color);
  border-radius: 5px;
  letter-spacing: -0.02em;
  color: var(--main-accent-color);
}
@media (min-width: 42.5em) {
  .pagination .page-numbers {
    padding-top: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-top: clamp( 0.3125rem , 0.0347222222rem  +  1.3888888889vw , 0.625rem )) {
    .pagination .page-numbers {
      padding-top: clamp( 0.3125rem , 0.0347222222rem  +  1.3888888889vw , 0.625rem );
    }
  }
  @supports not (padding-top: clamp( 0.3125rem , 0.0347222222rem  +  1.3888888889vw , 0.625rem )) {
    .pagination .page-numbers {
      padding-top: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .pagination .page-numbers {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 42.5em) {
  .pagination .page-numbers {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0347222222rem  +  1.3888888889vw , 0.625rem )) {
    .pagination .page-numbers {
      padding-bottom: clamp( 0.3125rem , 0.0347222222rem  +  1.3888888889vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0347222222rem  +  1.3888888889vw , 0.625rem )) {
    .pagination .page-numbers {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .pagination .page-numbers {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 42.5em) {
  .pagination .page-numbers {
    padding-left: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-left: clamp( 0.625rem , 0.3472222222rem  +  1.3888888889vw , 0.9375rem )) {
    .pagination .page-numbers {
      padding-left: clamp( 0.625rem , 0.3472222222rem  +  1.3888888889vw , 0.9375rem );
    }
  }
  @supports not (padding-left: clamp( 0.625rem , 0.3472222222rem  +  1.3888888889vw , 0.9375rem )) {
    .pagination .page-numbers {
      padding-left: calc(0.625rem + 0.3125 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .pagination .page-numbers {
    padding-left: 0.625rem;
  }
}
@media (min-width: 42.5em) {
  .pagination .page-numbers {
    padding-right: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-right: clamp( 0.625rem , 0.3472222222rem  +  1.3888888889vw , 0.9375rem )) {
    .pagination .page-numbers {
      padding-right: clamp( 0.625rem , 0.3472222222rem  +  1.3888888889vw , 0.9375rem );
    }
  }
  @supports not (padding-right: clamp( 0.625rem , 0.3472222222rem  +  1.3888888889vw , 0.9375rem )) {
    .pagination .page-numbers {
      padding-right: calc(0.625rem + 0.3125 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .pagination .page-numbers {
    padding-right: 0.625rem;
  }
}
@media (min-width: 42.5em) {
  .pagination .page-numbers {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (font-size: clamp( 1rem , 0.7777777778rem  +  1.1111111111vw , 1.25rem )) {
    .pagination .page-numbers {
      font-size: clamp( 1rem , 0.7777777778rem  +  1.1111111111vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.7777777778rem  +  1.1111111111vw , 1.25rem )) {
    .pagination .page-numbers {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .pagination .page-numbers {
    font-size: 1rem;
  }
}
.pagination .page-numbers.dots {
  border: none;
  padding: 0;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--main-accent-color);
  color: var(--main-text-color-white);
}
.pagination .page-numbers.current {
  background-color: var(--main-accent-color);
  color: var(--main-text-color-white);
}

.navigation {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 30px;
  border-top: 1px solid var(--main-accent-color);
  border-bottom: 1px solid var(--main-accent-color);
}
@media (min-width: 42.5em) {
  .navigation {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-top: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .navigation {
      padding-top: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem );
    }
  }
  @supports not (padding-top: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .navigation {
      padding-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .navigation {
    padding-top: 0.9375rem;
  }
}
@media (min-width: 42.5em) {
  .navigation {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .navigation {
      padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .navigation {
      padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .navigation {
    padding-bottom: 0.9375rem;
  }
}
.navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media (min-width: 62em) {
  .navigation .nav-links {
    font-size: 1.25rem;
  }
}
@media (min-width: 32.5em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.875rem , 0.4618644068rem  +  1.2711864407vw , 1.25rem )) {
    .navigation .nav-links {
      font-size: clamp( 0.875rem , 0.4618644068rem  +  1.2711864407vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.4618644068rem  +  1.2711864407vw , 1.25rem )) {
    .navigation .nav-links {
      font-size: calc(0.875rem + 0.375 * (100vw - 32.5rem) / 29.5);
    }
  }
}
@media (max-width: 32.5em) {
  .navigation .nav-links {
    font-size: 0.875rem;
  }
}
.navigation .nav-previous {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
}
.navigation .nav-previous a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}
.navigation .nav-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  margin-left: auto;
}
.navigation .nav-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
.navigation .nav-subtitle {
  color: var(--main-accent-color);
}
@media (min-width: 62em) {
  .navigation .nav-subtitle {
    font-size: 1.875rem;
  }
}
@media (min-width: 32.5em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.25rem , 0.561440678rem  +  2.1186440678vw , 1.875rem )) {
    .navigation .nav-subtitle {
      font-size: clamp( 1.25rem , 0.561440678rem  +  2.1186440678vw , 1.875rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 0.561440678rem  +  2.1186440678vw , 1.875rem )) {
    .navigation .nav-subtitle {
      font-size: calc(1.25rem + 0.625 * (100vw - 32.5rem) / 29.5);
    }
  }
}
@media (max-width: 32.5em) {
  .navigation .nav-subtitle {
    font-size: 1.25rem;
  }
}
.navigation .nav-subtitle span {
  display: none;
  line-height: 1.2;
}
.tags {
  font-weight: 600;
}
.tags__label {
  margin-bottom: 15px;
}
@media (min-width: 62em) {
  .tags__label {
    font-size: 1.5rem;
  }
}
@media (min-width: 32.5em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.125rem , 0.7118644068rem  +  1.2711864407vw , 1.5rem )) {
    .tags__label {
      font-size: clamp( 1.125rem , 0.7118644068rem  +  1.2711864407vw , 1.5rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 0.7118644068rem  +  1.2711864407vw , 1.5rem )) {
    .tags__label {
      font-size: calc(1.125rem + 0.375 * (100vw - 32.5rem) / 29.5);
    }
  }
}
@media (max-width: 32.5em) {
  .tags__label {
    font-size: 1.125rem;
  }
}
.tags__label span {
  opacity: 0.7;
  padding-left: 5px;
}
.tags__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 62em) {
  .tags__inner {
    gap: 0.9375rem;
  }
}
@media (min-width: 32.5em) and (max-width: 62em) {
  @supports (gap: clamp( 0.625rem , 0.280720339rem  +  1.0593220339vw , 0.9375rem )) {
    .tags__inner {
      gap: clamp( 0.625rem , 0.280720339rem  +  1.0593220339vw , 0.9375rem );
    }
  }
  @supports not (gap: clamp( 0.625rem , 0.280720339rem  +  1.0593220339vw , 0.9375rem )) {
    .tags__inner {
      gap: calc(0.625rem + 0.3125 * (100vw - 32.5rem) / 29.5);
    }
  }
}
@media (max-width: 32.5em) {
  .tags__inner {
    gap: 0.625rem;
  }
}
@media (min-width: 62em) {
  .tags__inner {
    font-size: 1rem;
  }
}
@media (min-width: 32.5em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.75rem , 0.4745762712rem  +  0.8474576271vw , 1rem )) {
    .tags__inner {
      font-size: clamp( 0.75rem , 0.4745762712rem  +  0.8474576271vw , 1rem );
    }
  }
  @supports not (font-size: clamp( 0.75rem , 0.4745762712rem  +  0.8474576271vw , 1rem )) {
    .tags__inner {
      font-size: calc(0.75rem + 0.25 * (100vw - 32.5rem) / 29.5);
    }
  }
}
@media (max-width: 32.5em) {
  .tags__inner {
    font-size: 0.75rem;
  }
}
.tags__inner a {
  border: 1px solid var(--main-accent-color);
  opacity: 0.7;
}
@media (min-width: 62em) {
  .tags__inner a {
    padding: 0.4375rem;
  }
}
@media (min-width: 32.5em) and (max-width: 62em) {
  @supports (padding: clamp( 0.3125rem , 0.1747881356rem  +  0.4237288136vw , 0.4375rem )) {
    .tags__inner a {
      padding: clamp( 0.3125rem , 0.1747881356rem  +  0.4237288136vw , 0.4375rem );
    }
  }
  @supports not (padding: clamp( 0.3125rem , 0.1747881356rem  +  0.4237288136vw , 0.4375rem )) {
    .tags__inner a {
      padding: calc(0.3125rem + 0.125 * (100vw - 32.5rem) / 29.5);
    }
  }
}
@media (max-width: 32.5em) {
  .tags__inner a {
    padding: 0.3125rem;
  }
}
@media (min-width: 62em) {
  .tags__inner a {
    border-radius: 0.9375rem;
  }
}
@media (min-width: 32.5em) and (max-width: 62em) {
  @supports (border-radius: clamp( 0.625rem , 0.280720339rem  +  1.0593220339vw , 0.9375rem )) {
    .tags__inner a {
      border-radius: clamp( 0.625rem , 0.280720339rem  +  1.0593220339vw , 0.9375rem );
    }
  }
  @supports not (border-radius: clamp( 0.625rem , 0.280720339rem  +  1.0593220339vw , 0.9375rem )) {
    .tags__inner a {
      border-radius: calc(0.625rem + 0.3125 * (100vw - 32.5rem) / 29.5);
    }
  }
}
@media (max-width: 32.5em) {
  .tags__inner a {
    border-radius: 0.625rem;
  }
}

@media (min-width: 62em) {
  .wpcomments {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .wpcomments {
      margin-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .wpcomments {
      margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .wpcomments {
    margin-bottom: 1.875rem;
  }
}
.wpcomments__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}
.wpcomments__title span {
  color: var(--main-accent-color);
  font-size: 18px;
}
.wpcomments__list {
  list-style: none;
  border-bottom: 1px solid var(--main-accent-color);
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.wpcomments__list li.comment article.comment-body {
  margin-bottom: 20px;
}
.wpcomments__list li.comment article.comment-body footer.comment-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
}
.wpcomments__list li.comment article.comment-body footer.comment-meta .comment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
}
.wpcomments__list li.comment article.comment-body footer.comment-meta .comment-author img {
  width: 24px;
  height: 24px;
  border-radius: 5px;
}
.wpcomments__list li.comment article.comment-body footer.comment-meta .comment-author span.says {
  display: none;
}
.wpcomments__list li.comment article.comment-body footer.comment-meta .comment-metadata {
  font-size: 16px;
  font-weight: 600;
}
.wpcomments__list li.comment article.comment-body footer.comment-meta .comment-metadata a time {
  opacity: 0.7;
}
.wpcomments__list li.comment article.comment-body footer.comment-meta .comment-metadata span.edit-link {
  font-size: 12px;
  padding-bottom: 3px;
  color: var(--main-accent-color);
}
.wpcomments__list li.comment article.comment-body .comment-content {
  padding: 10px 15px 5px 30px;
  font-size: 16px;
  line-height: 1.3;
}
.wpcomments__list li.comment article.comment-body .reply {
  margin-left: 30px;
  font-size: 14px;
  color: var(--main-accent-color);
}
.wpcomments__list li.comment ul.children {
  padding-left: 30px;
}
@media (min-width: 42.5em) {
  .wpcomments .no-comments {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (font-size: clamp( 1rem , 0.7777777778rem  +  1.1111111111vw , 1.25rem )) {
    .wpcomments .no-comments {
      font-size: clamp( 1rem , 0.7777777778rem  +  1.1111111111vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.7777777778rem  +  1.1111111111vw , 1.25rem )) {
    .wpcomments .no-comments {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .wpcomments .no-comments {
    font-size: 1rem;
  }
}
.wpcomments .comment-respond .comment-reply-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wpcomments .comment-respond .comment-reply-title small {
  font-size: 14px;
  padding-left: 5px;
}
.wpcomments .comment-respond .comment-reply-title small a {
  color: var(--main-accent-color);
  white-space: nowrap;
}
.wpcomments .comment-respond .comment-form {
  margin-bottom: 30px;
}
.wpcomments .comment-respond .comment-form span.required {
  color: var(--main-accent-color);
}
.wpcomments .comment-respond .comment-form .logged-in-as {
  font-size: 18px;
  font-weight: 600;
}
.wpcomments .comment-respond .comment-form .logged-in-as a {
  color: var(--main-accent-color);
  font-size: 14px;
}
.wpcomments .comment-respond .comment-form .logged-in-as a:first-child {
  opacity: 0.8;
  text-decoration: underline;
}
.wpcomments .comment-respond .comment-form .logged-in-as .required-field-message {
  padding-top: 5px;
  opacity: 0.7;
  font-size: 14px;
}
.wpcomments .comment-respond .comment-form .comment-notes {
  font-size: 18px;
  font-weight: 600;
}
.wpcomments .comment-respond .comment-form .comment-notes span.required-field-message {
  padding-top: 5px;
  opacity: 0.7;
  font-size: 14px;
}
.wpcomments .comment-respond .comment-form .comment-form-comment {
  padding: 15px 0;
}
.wpcomments .comment-respond .comment-form .comment-form-comment label {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.wpcomments .comment-respond .comment-form .comment-form-comment textarea {
  width: 100%;
  padding: 15px;
  line-height: 1.3;
  background-color: var(--main-bg-gray);
  border-radius: 5px;
  outline-color: var(--main-accent-color);
  height: 150px;
  resize: none;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 16px;
}
.wpcomments .comment-respond .comment-form .comment-form-comment textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-comment textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-comment textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-comment textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-comment textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-author {
  padding-bottom: 15px;
  max-width: 500px;
}
.wpcomments .comment-respond .comment-form .comment-form-author label {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.wpcomments .comment-respond .comment-form .comment-form-author input {
  width: 100%;
  padding: 15px;
  line-height: 1.3;
  background-color: var(--main-bg-gray);
  border-radius: 5px;
  outline-color: var(--main-accent-color);
  font-size: 16px;
}
.wpcomments .comment-respond .comment-form .comment-form-author input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-author input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-author input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-author input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-author input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-email {
  padding-bottom: 15px;
  max-width: 500px;
}
.wpcomments .comment-respond .comment-form .comment-form-email label {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.wpcomments .comment-respond .comment-form .comment-form-email input {
  width: 100%;
  padding: 15px;
  line-height: 1.3;
  background-color: var(--main-bg-gray);
  border-radius: 5px;
  outline-color: var(--main-accent-color);
  font-size: 16px;
}
.wpcomments .comment-respond .comment-form .comment-form-email input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-email input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-email input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-email input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-email input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-url {
  padding-bottom: 15px;
  max-width: 500px;
}
.wpcomments .comment-respond .comment-form .comment-form-url label {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.wpcomments .comment-respond .comment-form .comment-form-url input {
  width: 100%;
  padding: 15px;
  line-height: 1.3;
  background-color: var(--main-bg-gray);
  border-radius: 5px;
  outline-color: var(--main-accent-color);
  font-size: 16px;
}
.wpcomments .comment-respond .comment-form .comment-form-url input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-url input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-url input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-url input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-url input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcomments .comment-respond .comment-form .comment-form-cookies-consent {
  padding-bottom: 15px;
  font-size: 16px;
}
.wpcomments .comment-respond .comment-form .form-submit .submit {
  line-height: 1, 5;
  letter-spacing: -0.02em;
  background-color: var(--main-accent-color);
  padding: 0.75em 1em;
  border-radius: 5px;
  color: var(--main-text-color-white);
  cursor: pointer;
}
@media (min-width: 62em) {
  .wpcomments .comment-respond .comment-form .form-submit .submit {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .wpcomments .comment-respond .comment-form .form-submit .submit {
      font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .wpcomments .comment-respond .comment-form .form-submit .submit {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .wpcomments .comment-respond .comment-form .form-submit .submit {
    font-size: 1rem;
  }
}

.editor {
  line-height: 1.3;
  text-align: justify;
}
@media (min-width: 48em) {
  .editor {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (font-size: clamp( 0.875rem , 0.7857142857rem  +  0.4464285714vw , 1rem )) {
    .editor {
      font-size: clamp( 0.875rem , 0.7857142857rem  +  0.4464285714vw , 1rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.7857142857rem  +  0.4464285714vw , 1rem )) {
    .editor {
      font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor {
    font-size: 0.875rem;
  }
}
.editor a {
  color: var(--main-accent-color);
  text-decoration: underline;
}
@media (min-width: 48em) {
  .editor p {
    padding-top: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor p {
      padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor p {
      padding-top: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor p {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor p {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor p {
      padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor p {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor p {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor p {
    text-indent: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (text-indent: clamp( 1.25rem , 0.8035714286rem  +  2.2321428571vw , 1.875rem )) {
    .editor p {
      text-indent: clamp( 1.25rem , 0.8035714286rem  +  2.2321428571vw , 1.875rem );
    }
  }
  @supports not (text-indent: clamp( 1.25rem , 0.8035714286rem  +  2.2321428571vw , 1.875rem )) {
    .editor p {
      text-indent: calc(1.25rem + 0.625 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor p {
    text-indent: 1.25rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-quote {
    padding-top: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-quote {
      padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-quote {
      padding-top: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-quote {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-quote {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-quote {
      padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-quote {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-quote {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-quote {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (font-size: clamp( 1rem , 0.9107142857rem  +  0.4464285714vw , 1.125rem )) {
    .editor .wp-block-quote {
      font-size: clamp( 1rem , 0.9107142857rem  +  0.4464285714vw , 1.125rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9107142857rem  +  0.4464285714vw , 1.125rem )) {
    .editor .wp-block-quote {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-quote {
    font-size: 1rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-quote {
    padding-left: 4.375rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-left: clamp( 1.25rem , -0.9821428571rem  +  11.1607142857vw , 4.375rem )) {
    .editor .wp-block-quote {
      padding-left: clamp( 1.25rem , -0.9821428571rem  +  11.1607142857vw , 4.375rem );
    }
  }
  @supports not (padding-left: clamp( 1.25rem , -0.9821428571rem  +  11.1607142857vw , 4.375rem )) {
    .editor .wp-block-quote {
      padding-left: calc(1.25rem + 3.125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-quote {
    padding-left: 1.25rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-quote {
    padding-right: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-right: clamp( 0.0000000625rem , -2.23214275rem  +  11.1607140625vw , 3.125rem )) {
    .editor .wp-block-quote {
      padding-right: clamp( 0.0000000625rem , -2.23214275rem  +  11.1607140625vw , 3.125rem );
    }
  }
  @supports not (padding-right: clamp( 0.0000000625rem , -2.23214275rem  +  11.1607140625vw , 3.125rem )) {
    .editor .wp-block-quote {
      padding-right: calc(0.0000000625rem + 3.1249999375 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-quote {
    padding-right: 0.0000000625rem;
  }
}
.editor .wp-block-quote p {
  font-style: italic;
  text-indent: 0px;
  padding: 0;
  line-height: 1.4;
}
.editor .wp-block-quote cite {
  padding-top: 5px;
  display: block;
  font-weight: 600;
  text-align: right;
}
@media (min-width: 48em) {
  .editor ul {
    padding-top: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor ul {
      padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor ul {
      padding-top: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor ul {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor ul {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor ul {
      padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor ul {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor ul {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor ul {
    padding-left: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-left: clamp( 2.5rem , 2.0535714286rem  +  2.2321428571vw , 3.125rem )) {
    .editor ul {
      padding-left: clamp( 2.5rem , 2.0535714286rem  +  2.2321428571vw , 3.125rem );
    }
  }
  @supports not (padding-left: clamp( 2.5rem , 2.0535714286rem  +  2.2321428571vw , 3.125rem )) {
    .editor ul {
      padding-left: calc(2.5rem + 0.625 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor ul {
    padding-left: 2.5rem;
  }
}
.editor ul li {
  list-style: disc;
  margin: 0;
}
.editor ul li:not(:last-child) {
  padding-bottom: 10px;
}
.editor ul li::marker {
  color: var(--main-accent-color);
}
.editor ol {
  list-style-type: none;
  counter-reset: num;
}
@media (min-width: 48em) {
  .editor ol {
    padding-top: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor ol {
      padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor ol {
      padding-top: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor ol {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor ol {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor ol {
      padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor ol {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor ol {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor ol {
    padding-left: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-left: clamp( 2.5rem , 2.0535714286rem  +  2.2321428571vw , 3.125rem )) {
    .editor ol {
      padding-left: clamp( 2.5rem , 2.0535714286rem  +  2.2321428571vw , 3.125rem );
    }
  }
  @supports not (padding-left: clamp( 2.5rem , 2.0535714286rem  +  2.2321428571vw , 3.125rem )) {
    .editor ol {
      padding-left: calc(2.5rem + 0.625 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor ol {
    padding-left: 2.5rem;
  }
}
.editor ol li {
  position: relative;
  margin: 0;
}
.editor ol li:not(:last-child) {
  padding-bottom: 10px;
}
.editor ol li::before {
  content: counter(num) ".";
  counter-increment: num;
  display: inline-block;
  position: absolute;
  top: 0px;
  left: -26px;
  width: 20px;
  color: var(--main-accent-color);
  font-weight: 600;
  text-align: center;
}
.editor .wp-block-image {
  margin: 0;
  display: block;
  float: none;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 48em) {
  .editor .wp-block-image {
    padding-top: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-image {
      padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-image {
      padding-top: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-image {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-image {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-image {
      padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-image {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-image {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-image {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (font-size: clamp( 0.75rem , 0.6607142857rem  +  0.4464285714vw , 0.875rem )) {
    .editor .wp-block-image {
      font-size: clamp( 0.75rem , 0.6607142857rem  +  0.4464285714vw , 0.875rem );
    }
  }
  @supports not (font-size: clamp( 0.75rem , 0.6607142857rem  +  0.4464285714vw , 0.875rem )) {
    .editor .wp-block-image {
      font-size: calc(0.75rem + 0.125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-image {
    font-size: 0.75rem;
  }
}
.editor .wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.editor .wp-block-image figcaption.wp-element-caption {
  padding-top: 10px;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  display: block;
  margin: 0;
}
@media (min-width: 48em) {
  .editor .wp-block-image figcaption.wp-element-caption {
    padding-left: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-left: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-image figcaption.wp-element-caption {
      padding-left: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem );
    }
  }
  @supports not (padding-left: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-image figcaption.wp-element-caption {
      padding-left: calc(0.625rem + 1.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-image figcaption.wp-element-caption {
    padding-left: 0.625rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-image figcaption.wp-element-caption {
    padding-right: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-right: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-image figcaption.wp-element-caption {
      padding-right: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem );
    }
  }
  @supports not (padding-right: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-image figcaption.wp-element-caption {
      padding-right: calc(0.625rem + 1.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-image figcaption.wp-element-caption {
    padding-right: 0.625rem;
  }
}
.editor .wp-block-embed {
  margin-bottom: 0;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 48em) {
  .editor .wp-block-embed {
    padding-top: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-embed {
      padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-embed {
      padding-top: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-embed {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-embed {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-embed {
      padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-embed {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-embed {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-embed {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (font-size: clamp( 0.75rem , 0.6607142857rem  +  0.4464285714vw , 0.875rem )) {
    .editor .wp-block-embed {
      font-size: clamp( 0.75rem , 0.6607142857rem  +  0.4464285714vw , 0.875rem );
    }
  }
  @supports not (font-size: clamp( 0.75rem , 0.6607142857rem  +  0.4464285714vw , 0.875rem )) {
    .editor .wp-block-embed {
      font-size: calc(0.75rem + 0.125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-embed {
    font-size: 0.75rem;
  }
}
.editor .wp-block-embed__wrapper {
  display: block;
}
.editor .wp-block-embed__wrapper iframe {
  width: 100%;
}
.editor .wp-block-embed figcaption {
  margin: 0;
  padding-top: 10px;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  display: block;
}
@media (min-width: 48em) {
  .editor .wp-block-embed figcaption {
    padding-left: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-left: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-embed figcaption {
      padding-left: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem );
    }
  }
  @supports not (padding-left: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-embed figcaption {
      padding-left: calc(0.625rem + 1.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-embed figcaption {
    padding-left: 0.625rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-embed figcaption {
    padding-right: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-right: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-embed figcaption {
      padding-right: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem );
    }
  }
  @supports not (padding-right: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-embed figcaption {
      padding-right: calc(0.625rem + 1.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-embed figcaption {
    padding-right: 0.625rem;
  }
}
.editor .wp-block-heading {
  font-weight: 600;
  line-height: 1.3;
}
@media (min-width: 48em) {
  .editor .wp-block-heading {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 0.125rem , -0.0089285714rem  +  0.6696428571vw , 0.3125rem )) {
    .editor .wp-block-heading {
      padding-top: clamp( 0.125rem , -0.0089285714rem  +  0.6696428571vw , 0.3125rem );
    }
  }
  @supports not (padding-top: clamp( 0.125rem , -0.0089285714rem  +  0.6696428571vw , 0.3125rem )) {
    .editor .wp-block-heading {
      padding-top: calc(0.125rem + 0.1875 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-heading {
    padding-top: 0.125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-heading {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.125rem , -0.0089285714rem  +  0.6696428571vw , 0.3125rem )) {
    .editor .wp-block-heading {
      padding-bottom: clamp( 0.125rem , -0.0089285714rem  +  0.6696428571vw , 0.3125rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.125rem , -0.0089285714rem  +  0.6696428571vw , 0.3125rem )) {
    .editor .wp-block-heading {
      padding-bottom: calc(0.125rem + 0.1875 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-heading {
    padding-bottom: 0.125rem;
  }
}
.editor h1.wp-block-heading {
  font-size: 40px;
}
.editor h2.wp-block-heading {
  font-size: 30px;
}
.editor h3.wp-block-heading {
  font-size: 26px;
}
.editor h4.wp-block-heading {
  font-size: 22px;
}
.editor h5.wp-block-heading {
  font-size: 20px;
}
.editor h6.wp-block-heading {
  font-size: 18px;
}
.editor .wp-block-table {
  margin: 0 auto;
  overflow-y: hidden;
}
@media (min-width: 48em) {
  .editor .wp-block-table {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-table {
      padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-table {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-table {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-table {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (font-size: clamp( 0.75rem , 0.6607142857rem  +  0.4464285714vw , 0.875rem )) {
    .editor .wp-block-table {
      font-size: clamp( 0.75rem , 0.6607142857rem  +  0.4464285714vw , 0.875rem );
    }
  }
  @supports not (font-size: clamp( 0.75rem , 0.6607142857rem  +  0.4464285714vw , 0.875rem )) {
    .editor .wp-block-table {
      font-size: calc(0.75rem + 0.125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-table {
    font-size: 0.75rem;
  }
}
.editor .wp-block-table figcaption {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 3px;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  display: block;
}
@media (min-width: 48em) {
  .editor .wp-block-table figcaption {
    padding-left: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-left: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-table figcaption {
      padding-left: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem );
    }
  }
  @supports not (padding-left: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-table figcaption {
      padding-left: calc(0.625rem + 1.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-table figcaption {
    padding-left: 0.625rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-table figcaption {
    padding-right: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-right: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-table figcaption {
      padding-right: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem );
    }
  }
  @supports not (padding-right: clamp( 0.625rem , -0.2678571429rem  +  4.4642857143vw , 1.875rem )) {
    .editor .wp-block-table figcaption {
      padding-right: calc(0.625rem + 1.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-table figcaption {
    padding-right: 0.625rem;
  }
}
.editor .wp-block-audio {
  margin-bottom: 0;
  max-width: 500px;
}
@media (min-width: 48em) {
  .editor .wp-block-audio {
    padding-top: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-audio {
      padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-audio {
      padding-top: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-audio {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-audio {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-audio {
      padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-audio {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-audio {
    padding-bottom: 0.3125rem;
  }
}
.editor .wp-block-audio audio {
  display: block;
  width: 100%;
}
.editor .wp-block-file {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 48em) {
  .editor .wp-block-file {
    padding-top: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-file {
      padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-top: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-file {
      padding-top: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-file {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-file {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-file {
      padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.3125rem , 0.0892857143rem  +  1.1160714286vw , 0.625rem )) {
    .editor .wp-block-file {
      padding-bottom: calc(0.3125rem + 0.3125 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-file {
    padding-bottom: 0.3125rem;
  }
}
.editor .wp-block-file a {
  color: var(--main-text-color);
  font-weight: 600;
}
@media (min-width: 48em) {
  .editor .wp-block-file a {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (font-size: clamp( 0.625rem , 0.4464285714rem  +  0.8928571429vw , 0.875rem )) {
    .editor .wp-block-file a {
      font-size: clamp( 0.625rem , 0.4464285714rem  +  0.8928571429vw , 0.875rem );
    }
  }
  @supports not (font-size: clamp( 0.625rem , 0.4464285714rem  +  0.8928571429vw , 0.875rem )) {
    .editor .wp-block-file a {
      font-size: calc(0.625rem + 0.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-file a {
    font-size: 0.625rem;
  }
}
.editor .wp-block-file a:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  max-width: 80%;
}
.editor .wp-block-file a:first-child::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/download.svg");
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 48em) {
  .editor .wp-block-file a:first-child::before {
    width: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (width: clamp( 1rem , 0.8214285714rem  +  0.8928571429vw , 1.25rem )) {
    .editor .wp-block-file a:first-child::before {
      width: clamp( 1rem , 0.8214285714rem  +  0.8928571429vw , 1.25rem );
    }
  }
  @supports not (width: clamp( 1rem , 0.8214285714rem  +  0.8928571429vw , 1.25rem )) {
    .editor .wp-block-file a:first-child::before {
      width: calc(1rem + 0.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-file a:first-child::before {
    width: 1rem;
  }
}
@media (min-width: 48em) {
  .editor .wp-block-file a:first-child::before {
    height: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (height: clamp( 1rem , 0.8214285714rem  +  0.8928571429vw , 1.25rem )) {
    .editor .wp-block-file a:first-child::before {
      height: clamp( 1rem , 0.8214285714rem  +  0.8928571429vw , 1.25rem );
    }
  }
  @supports not (height: clamp( 1rem , 0.8214285714rem  +  0.8928571429vw , 1.25rem )) {
    .editor .wp-block-file a:first-child::before {
      height: calc(1rem + 0.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-file a:first-child::before {
    height: 1rem;
  }
}
.editor .wp-block-file .wp-block-file__button {
  text-decoration: none;
  padding: 0.35em 0.7em;
  background-color: #a5a5a5;
  border-radius: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 48em) {
  .editor .wp-block-file .wp-block-file__button {
    margin-left: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (margin-left: clamp( 0.625rem , 0.1785714286rem  +  2.2321428571vw , 1.25rem )) {
    .editor .wp-block-file .wp-block-file__button {
      margin-left: clamp( 0.625rem , 0.1785714286rem  +  2.2321428571vw , 1.25rem );
    }
  }
  @supports not (margin-left: clamp( 0.625rem , 0.1785714286rem  +  2.2321428571vw , 1.25rem )) {
    .editor .wp-block-file .wp-block-file__button {
      margin-left: calc(0.625rem + 0.625 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .editor .wp-block-file .wp-block-file__button {
    margin-left: 0.625rem;
  }
}

/*---HEADER-----------------------------------------------*/
.header {
  background-color: var(--header-bg-color);
  color: var(--header-text-color);
}
.header__inner {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  color: var(--logo-text-color);
  position: relative;
  z-index: 7;
}
.header-menu nav ul li a img {
  width: 22px!important;
  height: 14px!important;
  margin-top: 8px;
}
.header-menu nav ul li.menu-item-has-children ul li a img {
  margin-top: 0;
}
@media (min-width: 75em) {
  .header__menu {
    font-size: 1.25rem;
  }
}
@media (min-width: 62em) and (max-width: 75em) {
  @supports (font-size: clamp( 1.125rem , 0.5288461538rem  +  0.9615384615vw , 1.25rem )) {
    .header__menu {
      font-size: clamp( 1.125rem , 0.5288461538rem  +  0.9615384615vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 0.5288461538rem  +  0.9615384615vw , 1.25rem )) {
    .header__menu {
      font-size: calc(1.125rem + 0.125 * (100vw - 62rem) / 13);
    }
  }
}
@media (max-width: 62em) {
  .header__menu {
    font-size: 1.125rem;
  }
}
.header__icon-menu {
  display: none;
}

.header-menu {
  line-height: 1.5;
  font-weight: 600;
}
.header-menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 15px;
}
@media (min-width: 75em) {
  .header-menu nav ul {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}
@media (min-width: 62em) and (max-width: 75em) {
  @supports ((-moz-column-gap: clamp( 1.25rem , -1.7307692308rem  +  4.8076923077vw , 1.875rem )) or (column-gap: clamp( 1.25rem , -1.7307692308rem  +  4.8076923077vw , 1.875rem ))) {
    .header-menu nav ul {
      -webkit-column-gap: clamp( 1.25rem , -1.7307692308rem  +  4.8076923077vw , 1.875rem );
         -moz-column-gap: clamp( 1.25rem , -1.7307692308rem  +  4.8076923077vw , 1.875rem );
              column-gap: clamp( 1.25rem , -1.7307692308rem  +  4.8076923077vw , 1.875rem );
    }
  }
  @supports not ((-moz-column-gap: clamp( 1.25rem , -1.7307692308rem  +  4.8076923077vw , 1.875rem )) or (column-gap: clamp( 1.25rem , -1.7307692308rem  +  4.8076923077vw , 1.875rem ))) {
    .header-menu nav ul {
      -webkit-column-gap: calc(1.25rem + 0.625 * (100vw - 62rem) / 13);
         -moz-column-gap: calc(1.25rem + 0.625 * (100vw - 62rem) / 13);
              column-gap: calc(1.25rem + 0.625 * (100vw - 62rem) / 13);
    }
  }
}
@media (max-width: 62em) {
  .header-menu nav ul {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}
.header-menu nav ul li.current-menu-item {
  color: var(--main-accent-color);
}

/*---Home page-----------------------------------------------*/
/*========== MAIN =====================*/
.main {
  position: relative;
}
.main__inner {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.main__content {
  background-color: var(--main-accent-color);
  border-radius: 10px;
  position: relative;
  z-index: 3;
}
@media (min-width: 62em) {
  .main__content {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .main__content {
      padding-top: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem );
    }
  }
  @supports not (padding-top: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .main__content {
      padding-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .main__content {
    padding-top: 0.9375rem;
  }
}
@media (min-width: 62em) {
  .main__content {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-bottom: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .main__content {
      padding-bottom: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .main__content {
      padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .main__content {
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 62em) {
  .main__content {
    padding-right: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-right: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem )) {
    .main__content {
      padding-right: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem );
    }
  }
  @supports not (padding-right: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem )) {
    .main__content {
      padding-right: calc(1.25rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .main__content {
    padding-right: 1.25rem;
  }
}
@media (min-width: 62em) {
  .main__content {
    padding-left: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-left: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem )) {
    .main__content {
      padding-left: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem );
    }
  }
  @supports not (padding-left: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem )) {
    .main__content {
      padding-left: calc(1.25rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .main__content {
    padding-left: 1.25rem;
  }
}
@media (min-width: 62em) {
  .main__content {
    max-width: 33.125rem;
  }
}
@media (min-width: 32.5em) and (max-width: 62em) {
  @supports (max-width: clamp( 18.75rem , 2.9131355932rem  +  48.7288135593vw , 33.125rem )) {
    .main__content {
      max-width: clamp( 18.75rem , 2.9131355932rem  +  48.7288135593vw , 33.125rem );
    }
  }
  @supports not (max-width: clamp( 18.75rem , 2.9131355932rem  +  48.7288135593vw , 33.125rem )) {
    .main__content {
      max-width: calc(18.75rem + 14.375 * (100vw - 32.5rem) / 29.5);
    }
  }
}
@media (max-width: 32.5em) {
  .main__content {
    max-width: 18.75rem;
  }
}
.main__subtitle {
  font-weight: 600;
  line-height: 1.5;
  color: var(--main-text-color-white);
  margin-bottom: 5px;
}
@media (min-width: 62em) {
  .main__subtitle {
    font-size: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .main__subtitle {
      font-size: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .main__subtitle {
      font-size: calc(1.25rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .main__subtitle {
    font-size: 1.25rem;
  }
}
.main__title {
  font-weight: 600;
  line-height: 1.5;
  color: var(--main-text-color-white);
}
@media (min-width: 62em) {
  .main__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .main__title {
      font-size: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .main__title {
      font-size: calc(1.25rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .main__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 62em) {
  .main__title {
    margin-bottom: 1.5625rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 0.9375rem , 0.6398809524rem  +  1.4880952381vw , 1.5625rem )) {
    .main__title {
      margin-bottom: clamp( 0.9375rem , 0.6398809524rem  +  1.4880952381vw , 1.5625rem );
    }
  }
  @supports not (margin-bottom: clamp( 0.9375rem , 0.6398809524rem  +  1.4880952381vw , 1.5625rem )) {
    .main__title {
      margin-bottom: calc(0.9375rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .main__title {
    margin-bottom: 0.9375rem;
  }
}
.main__title span {
  color: var(--main-text-color);
}
.main__text {
  line-height: 1.6;
  color: var(--main-text-color-white);
}
@media (min-width: 62em) {
  .main__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.25rem )) {
    .main__text {
      font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.25rem )) {
    .main__text {
      font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .main__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 62em) {
  .main__button {
    margin-top: 2.1875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-top: clamp( 1.25rem , 0.8035714286rem  +  2.2321428571vw , 2.1875rem )) {
    .main__button {
      margin-top: clamp( 1.25rem , 0.8035714286rem  +  2.2321428571vw , 2.1875rem );
    }
  }
  @supports not (margin-top: clamp( 1.25rem , 0.8035714286rem  +  2.2321428571vw , 2.1875rem )) {
    .main__button {
      margin-top: calc(1.25rem + 0.9375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .main__button {
    margin-top: 1.25rem;
  }
}
.main__bg-foto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__bg-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/*========== ACTIVITIES ================*/
.activities__inner {
  padding-top: 60px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.activities__title {
  margin-bottom: 60px;
}
.activities__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.activities__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}

.activities-item {
  text-align: center;
}
.activities-item__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 20px;
}
.activities-item__title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
}
.activities-item__text {
  font-size: 16px;
  line-height: 1.62;
}

/*========== NEWS ================*/
.news {
  background-color: var(--main-bg-gray);
}
.news__inner {
  padding-top: 50px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__title {
  margin-bottom: 50px;
}
.news__content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (32.4%)[3];
  grid-template-columns: repeat(3, 32.4%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
  margin-bottom: 50px;
}
.news-card {
  padding: 10px;
  padding-bottom: 20px;
  background-color: var(--main-bg-white);
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.news-card__image {
  display: block;
  height: 230px;
  min-width: 270px;
  width: 100%;
  border-radius: 10px 10px 0px 10px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card__category {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  padding: 5px;
  padding-bottom: 3px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--main-accent-color);
  color: var(--main-text-color-white);
}
.news-card__content {
  padding-right: 15px;
  padding-left: 15px;
}
.news-card__title {
  display: block;
  line-height: 1.6;
  height: 100px;
  margin-bottom: 20px;
  overflow: hidden;
  font-weight: 600;
}
.news-card__info {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
}
.news-card__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.news-card__comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-card__comments div {
  width: 22px;
}
.news-card__comments div svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.news-card__comments div svg path {
  fill: var(--main-text-color);
}
.news-card__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-card__view div {
  width: 22px;
}
.news-card__view div svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.news-card__view div svg path {
  fill: var(--main-text-color);
}

/*========== TEAM ================*/
.team__inner {
  padding-top: 50px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team__title {
  margin-bottom: 50px;
}
.team__content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (30%)[3];
  grid-template-columns: repeat(3, 30%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
  margin-bottom: 50px;
}
.team__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.team-card {
  background-color: var(--main-bg-white);
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.team-card__image {
  width: 100%;
  max-height: 300px;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  margin: 0;
  position: relative;
}
.team-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: baseline;
}
.team-card__rank {
  position: absolute;
  top: 17px;
  right: 0;
  display: block;
  padding: 5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--main-accent-color);
  color: var(--main-text-color-white);
  border-radius: 5px 0px 0px 5px;
}
.team-card__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 7px;
  background-color: rgba(255, 255, 255, 0.6);
}
.team-card__icon {
  width: 20px;
  height: 20px;
}
.team-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.team-card__content {
  padding: 20px 10px;
  width: 100%;
  background-color: var(--main-bg-white);
  text-align: center;
}
.team-card__name {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.team-card__job {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--main-accent-color);
}

/*========== FAQ ================*/
.faq {
  background-color: var(--main-bg-gray);
}
.faq__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__title {
  margin-bottom: 40px;
}
.faq__content {
  max-width: 960px;
}
.faq__item:not(:last-child) {
  margin-bottom: 30px;
}
.faq__item._active {
  margin-bottom: 20px;
}
.faq__header {
  background-color: var(--main-bg-white);
  padding: 20px 70px 20px 20px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.faq__header._active .faq__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(0);
      -ms-transform: translate(-50%, -50%) rotate(90deg) scale(0);
          transform: translate(-50%, -50%) rotate(90deg) scale(0);
}
.faq__question {
  font-weight: 600;
  line-height: 1.3;
}
@media (min-width: 48em) {
  .faq__question {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (font-size: clamp( 1rem , 0.8214285714rem  +  0.8928571429vw , 1.25rem )) {
    .faq__question {
      font-size: clamp( 1rem , 0.8214285714rem  +  0.8928571429vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.8214285714rem  +  0.8928571429vw , 1.25rem )) {
    .faq__question {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .faq__question {
    font-size: 1rem;
  }
}
.faq__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--main-accent-color);
}
.faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 17px;
  height: 3px;
  background-color: var(--main-text-color-white);
}
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(1);
      -ms-transform: translate(-50%, -50%) rotate(90deg) scale(1);
          transform: translate(-50%, -50%) rotate(90deg) scale(1);
  display: block;
  width: 17px;
  height: 3px;
  background-color: var(--main-text-color-white);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.faq__body {
  padding: 10px 20px;
}
.faq__answer {
  line-height: 1.3;
}
@media (min-width: 48em) {
  .faq__answer {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.125rem )) {
    .faq__answer {
      font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.125rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.125rem )) {
    .faq__answer {
      font-size: calc(0.875rem + 0.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .faq__answer {
    font-size: 0.875rem;
  }
}
.faq__answer p {
  padding: 10px 0;
}
.faq__answer ol {
  padding: 10px 0 10px 30px;
  list-style-type: none;
  counter-reset: num;
}
.faq__answer ol li {
  position: relative;
  margin: 0;
}
.faq__answer ol li:not(:last-child) {
  padding-bottom: 10px;
}
.faq__answer ol li::before {
  content: counter(num) ".";
  counter-increment: num;
  display: inline-block;
  position: absolute;
  top: 0px;
  left: -26px;
  width: 20px;
  color: var(--main-accent-color);
  font-weight: 600;
  text-align: center;
}
.faq__answer ul {
  padding: 10px 0 10px 30px;
}
.faq__answer ul li {
  list-style: disc;
  margin: 0;
}
.faq__answer ul li:not(:last-child) {
  padding-bottom: 10px;
}
.faq__answer ul li::marker {
  color: var(--main-accent-color);
  font-size: 18px;
}
.faq__answer iframe {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}
.faq__answer img {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}
.faq__answer div.mejs-audio {
  max-width: 500px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
}

/*========== GALLERY ================*/
.gallery__inner {
  padding-top: 50px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery__title {
  margin-bottom: 50px;
}
.gallery__content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (30%)[3];
  grid-template-columns: repeat(3, 30%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
  margin-bottom: 50px;
}
.item-gallery {
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.3);
}
.item-gallery__image {
  width: 100.1%;
  max-height: 290px;
  overflow: hidden;
}
.item-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-gallery__inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px 10px;
  background-color: rgba(0, 0, 0, 0.45);
}
.item-gallery__title {
  color: var(--main-text-color-white);
  font-size: 18px;
  max-height: 20px;
  overflow: hidden;
  text-align: center;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

/*---About page------------------------------------------------------------*/
/*========== ABOUT -> MAIN ================*/
.about-main__text {
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 62em) {
  .about-main__text {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .about-main__text {
      padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .about-main__text {
      padding-top: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .about-main__text {
    padding-top: 1.875rem;
  }
}
@media (min-width: 62em) {
  .about-main__text {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .about-main__text {
      padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .about-main__text {
      padding-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .about-main__text {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 62em) {
  .about-main__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.75rem , 0.5119047619rem  +  1.1904761905vw , 1.25rem )) {
    .about-main__text {
      font-size: clamp( 0.75rem , 0.5119047619rem  +  1.1904761905vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 0.75rem , 0.5119047619rem  +  1.1904761905vw , 1.25rem )) {
    .about-main__text {
      font-size: calc(0.75rem + 0.5 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .about-main__text {
    font-size: 0.75rem;
  }
}

/*========== ABOUT -> DESCRIPTION ==========*/
.about-descriptions__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media (min-width: 62em) {
  .about-descriptions__item {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .about-descriptions__item {
      margin-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .about-descriptions__item {
      margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .about-descriptions__item {
    margin-bottom: 1.875rem;
  }
}
.about-descriptions__item:nth-child(2n) .about-descriptions__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.about-descriptions__item:nth-child(2n) .about-descriptions__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.about-descriptions__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
  width: 100%;
  position: relative;
}
.about-descriptions__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-descriptions__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-descriptions__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
}
@media (min-width: 62em) {
  .about-descriptions__title {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 0.625rem , 0.3273809524rem  +  1.4880952381vw , 1.25rem )) {
    .about-descriptions__title {
      margin-bottom: clamp( 0.625rem , 0.3273809524rem  +  1.4880952381vw , 1.25rem );
    }
  }
  @supports not (margin-bottom: clamp( 0.625rem , 0.3273809524rem  +  1.4880952381vw , 1.25rem )) {
    .about-descriptions__title {
      margin-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .about-descriptions__title {
    margin-bottom: 0.625rem;
  }
}
.about-descriptions__text {
  line-height: 1.75;
}
@media (min-width: 62em) {
  .about-descriptions__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.25rem )) {
    .about-descriptions__text {
      font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.25rem )) {
    .about-descriptions__text {
      font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .about-descriptions__text {
    font-size: 0.875rem;
  }
}

/*---Contacts page-----------------------------------------------------------*/
/*========== CONTACTS -> FIND ================*/
@media (min-width: 62em) {
  .contacts-find__inner {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .contacts-find__inner {
      padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .contacts-find__inner {
      padding-top: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contacts-find__inner {
    padding-top: 1.875rem;
  }
}
@media (min-width: 62em) {
  .contacts-find__inner {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .contacts-find__inner {
      padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .contacts-find__inner {
      padding-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contacts-find__inner {
    padding-bottom: 1.875rem;
  }
}
.contacts-find__title {
  display: block;
}
@media (min-width: 62em) {
  .contacts-find__title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 1.875rem , 1.5773809524rem  +  1.4880952381vw , 2.5rem )) {
    .contacts-find__title {
      margin-bottom: clamp( 1.875rem , 1.5773809524rem  +  1.4880952381vw , 2.5rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.875rem , 1.5773809524rem  +  1.4880952381vw , 2.5rem )) {
    .contacts-find__title {
      margin-bottom: calc(1.875rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contacts-find__title {
    margin-bottom: 1.875rem;
  }
}
.contacts-find__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.contacts-find__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.contacts-find__map {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.contacts-find__map iframe {
  width: 100%;
  height: 100%;
}

.contact-info {
  background-color: var(--main-accent-color);
}
@media (min-width: 62em) {
  .contact-info {
    padding: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .contact-info {
      padding: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem );
    }
  }
  @supports not (padding: clamp( 0.9375rem , 0.4910714286rem  +  2.2321428571vw , 1.875rem )) {
    .contact-info {
      padding: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contact-info {
    padding: 0.9375rem;
  }
}
.contact-info__title {
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 62em) {
  .contact-info__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .contact-info__title {
      font-size: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .contact-info__title {
      font-size: calc(1.25rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contact-info__title {
    font-size: 1.25rem;
  }
}
.contact-info__text {
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 62em) {
  .contact-info__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .contact-info__text {
      font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .contact-info__text {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contact-info__text {
    font-size: 1rem;
  }
}
.contact-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
@media (min-width: 62em) {
  .contact-info__item {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .contact-info__item {
      font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .contact-info__item {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contact-info__item {
    font-size: 1rem;
  }
}
.contact-info__item:not(:last-child) {
  margin-bottom: 30px;
}
.contact-info__label {
  font-weight: 500;
  line-height: 1.5;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4.5em;
          flex: 0 0 4.5em;
}
.contact-info__values {
  font-weight: 600;
  line-height: 1.65;
  color: var(--main-text-color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-info__adres {
  font-weight: 600;
  line-height: 1.65;
  color: var(--main-text-color-white);
}

/*========== CONTACTS -> FORM ================*/
@media (min-width: 62em) {
  .contacts-form {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .contacts-form {
      padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .contacts-form {
      padding-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contacts-form {
    padding-bottom: 1.875rem;
  }
}
.contacts-form__title {
  display: block;
}
@media (min-width: 62em) {
  .contacts-form__title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 1.875rem , 1.5773809524rem  +  1.4880952381vw , 2.5rem )) {
    .contacts-form__title {
      margin-bottom: clamp( 1.875rem , 1.5773809524rem  +  1.4880952381vw , 2.5rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.875rem , 1.5773809524rem  +  1.4880952381vw , 2.5rem )) {
    .contacts-form__title {
      margin-bottom: calc(1.875rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contacts-form__title {
    margin-bottom: 1.875rem;
  }
}
.contacts-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 62em) {
  .contacts-form__form {
    row-gap: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (row-gap: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .contacts-form__form {
      row-gap: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem );
    }
  }
  @supports not (row-gap: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .contacts-form__form {
      row-gap: calc(1.25rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .contacts-form__form {
    row-gap: 1.25rem;
  }
}
.contacts-form__form._sending .contacts-form__loading {
  opacity: 1;
}
.contacts-form__form._sending .contacts-form__btn::before {
  opacity: 0.5;
}
.contacts-form__input {
  width: 100%;
  padding: 20px;
  background-color: var(--main-bg-gray);
  border-radius: 5px;
  outline-color: var(--main-accent-color);
}
.contacts-form__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__area {
  width: 100%;
  padding: 20px;
  background-color: var(--main-bg-gray);
  border-radius: 5px;
  outline-color: var(--main-accent-color);
  height: 250px;
  resize: none;
  overflow-x: hidden;
}
.contacts-form__area::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__area::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__area:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__area::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__area::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacts-form__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.contacts-form__checkbox {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.contacts-form__btn {
  padding: 15px 25px;
  background-color: var(--main-text-color);
  border: 1px solid var(--main-text-color-white);
  outline-color: var(--main-accent-color);
  border-radius: 5px;
  color: var(--main-text-color-white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.contacts-form__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
  z-index: 2;
  background-color: grey;
  opacity: 0;
}
.contacts-form__loading {
  position: absolute;
  top: 21px;
  left: -25px;
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.contacts-form__loading img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contacts-form__note {
  min-height: 20px;
  margin-top: -20px;
}
.contacts-form__note._ok .contacts-form__ok {
  opacity: 1;
  font-size: 20px;
}
.contacts-form__note._err .contacts-form__err {
  opacity: 1;
  font-size: 20px;
}
.contacts-form__ok {
  text-align: center;
  color: #28A745;
  font-weight: 600;
  opacity: 0;
  font-size: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.contacts-form__err {
  text-align: center;
  color: #DC3545;
  font-weight: 600;
  opacity: 0;
  font-size: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

/*---Archive page-----------------------------------------------------------*/
/*========== ARCHIVE ================*/
.archive__inner {
  padding-top: 30px;
  padding-bottom: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (32.4%)[3];
  grid-template-columns: repeat(3, 32.4%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
}
@media (min-width: 62em) {
  .archive__item {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .archive__item {
      font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.880952381rem  +  0.5952380952vw , 1.25rem )) {
    .archive__item {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .archive__item {
    font-size: 1rem;
  }
}
.archive__pagination {
  margin-bottom: 50px;
}
.archive__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 62em) {
  .archive__header {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .archive__header {
      padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .archive__header {
      padding-top: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .archive__header {
    padding-top: 1.875rem;
  }
}
@media (min-width: 62em) {
  .archive__header {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .archive__header {
      padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .archive__header {
      padding-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .archive__header {
    padding-bottom: 1.875rem;
  }
}
.archive__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47%;
          flex: 0 1 47%;
}
.archive__leader {
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--main-accent-color);
  margin-bottom: 10px;
}
@media (min-width: 62em) {
  .archive__leader {
    font-size: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.625rem , 1.505952381rem  +  0.5952380952vw , 1.875rem )) {
    .archive__leader {
      font-size: clamp( 1.625rem , 1.505952381rem  +  0.5952380952vw , 1.875rem );
    }
  }
  @supports not (font-size: clamp( 1.625rem , 1.505952381rem  +  0.5952380952vw , 1.875rem )) {
    .archive__leader {
      font-size: calc(1.625rem + 0.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .archive__leader {
    font-size: 1.625rem;
  }
}
.archive__name {
  font-weight: 600;
  line-height: 1.75;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (min-width: 62em) {
  .archive__name {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.125rem , 1.0654761905rem  +  0.2976190476vw , 1.25rem )) {
    .archive__name {
      font-size: clamp( 1.125rem , 1.0654761905rem  +  0.2976190476vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 1.0654761905rem  +  0.2976190476vw , 1.25rem )) {
    .archive__name {
      font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .archive__name {
    font-size: 1.125rem;
  }
}
.archive__text {
  line-height: 1.65;
  margin-bottom: 20px;
}
@media (min-width: 62em) {
  .archive__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1rem , 0.9404761905rem  +  0.2976190476vw , 1.125rem )) {
    .archive__text {
      font-size: clamp( 1rem , 0.9404761905rem  +  0.2976190476vw , 1.125rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9404761905rem  +  0.2976190476vw , 1.125rem )) {
    .archive__text {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .archive__text {
    font-size: 1rem;
  }
}
.archive__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.archive__icon {
  width: 20px;
  height: 20px;
}
.archive__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.archive__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47%;
          flex: 0 1 47%;
  position: relative;
}
.archive__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive__title {
  display: block;
}

/*---404 page-----------------------------------------------------------*/
/*========== NOT-FOUND ================*/
.not-found__inner {
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 62em) {
  .not-found__inner {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .not-found__inner {
      padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .not-found__inner {
      padding-top: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .not-found__inner {
    padding-top: 1.875rem;
  }
}
@media (min-width: 62em) {
  .not-found__inner {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .not-found__inner {
      padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .not-found__inner {
      padding-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .not-found__inner {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 62em) {
  .not-found__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.875rem , 1.6964285714rem  +  0.8928571429vw , 2.25rem )) {
    .not-found__title {
      font-size: clamp( 1.875rem , 1.6964285714rem  +  0.8928571429vw , 2.25rem );
    }
  }
  @supports not (font-size: clamp( 1.875rem , 1.6964285714rem  +  0.8928571429vw , 2.25rem )) {
    .not-found__title {
      font-size: calc(1.875rem + 0.375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .not-found__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 62em) {
  .not-found__title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem )) {
    .not-found__title {
      margin-bottom: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem )) {
    .not-found__title {
      margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .not-found__title {
    margin-bottom: 1.25rem;
  }
}
.not-found__link {
  color: var(--main-accent-color);
}
@media (min-width: 62em) {
  .not-found__link {
    font-size: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.375rem , 1.3154761905rem  +  0.2976190476vw , 1.5rem )) {
    .not-found__link {
      font-size: clamp( 1.375rem , 1.3154761905rem  +  0.2976190476vw , 1.5rem );
    }
  }
  @supports not (font-size: clamp( 1.375rem , 1.3154761905rem  +  0.2976190476vw , 1.5rem )) {
    .not-found__link {
      font-size: calc(1.375rem + 0.125 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .not-found__link {
    font-size: 1.375rem;
  }
}

/*---Search page-----------------------------------------------------------*/
.search-page__inner {
  padding-bottom: 50px;
}
@media (min-width: 62em) {
  .search-page__inner {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .search-page__inner {
      padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem );
    }
  }
  @supports not (padding-top: clamp( 1.875rem , 1.2797619048rem  +  2.9761904762vw , 3.125rem )) {
    .search-page__inner {
      padding-top: calc(1.875rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .search-page__inner {
    padding-top: 1.875rem;
  }
}
.search-page__item {
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 62em) {
  .search-page__item {
    font-size: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.125rem , 0.7678571429rem  +  1.7857142857vw , 1.875rem )) {
    .search-page__item {
      font-size: clamp( 1.125rem , 0.7678571429rem  +  1.7857142857vw , 1.875rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 0.7678571429rem  +  1.7857142857vw , 1.875rem )) {
    .search-page__item {
      font-size: calc(1.125rem + 0.75 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .search-page__item {
    font-size: 1.125rem;
  }
}
.search-page__item:not(:last-child) {
  margin-bottom: 20px;
}
.search-page__category {
  color: var(--main-accent-color);
  white-space: nowrap;
}
@media (min-width: 62em) {
  .search-page__category {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.875rem , 0.755952381rem  +  0.5952380952vw , 1.125rem )) {
    .search-page__category {
      font-size: clamp( 0.875rem , 0.755952381rem  +  0.5952380952vw , 1.125rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.755952381rem  +  0.5952380952vw , 1.125rem )) {
    .search-page__category {
      font-size: calc(0.875rem + 0.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .search-page__category {
    font-size: 0.875rem;
  }
}
.search-page__category::before {
  content: "(";
}
.search-page__category::after {
  content: ")";
}
.search-page__pagination {
  margin-bottom: 50px;
}
.search-page__empty {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

/*========== GALLERY ================*/
.single-gallery__inner {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 150px;
}
@media (min-width: 62em) {
  .single-gallery__inner {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .single-gallery__inner {
      padding-top: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem );
    }
  }
  @supports not (padding-top: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .single-gallery__inner {
      padding-top: calc(1.25rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .single-gallery__inner {
    padding-top: 1.25rem;
  }
}
@media (min-width: 42.5em) {
  .single-gallery__inner {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .single-gallery__inner {
      padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .single-gallery__inner {
      padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .single-gallery__inner {
    padding-bottom: 0.9375rem;
  }
}
.single-gallery__item {
  display: block;
}
.single-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*========== TEACHER ================*/
@media (min-width: 62em) {
  .single-team__inner {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .single-team__inner {
      padding-top: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem );
    }
  }
  @supports not (padding-top: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .single-team__inner {
      padding-top: calc(1.25rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .single-team__inner {
    padding-top: 1.25rem;
  }
}
@media (min-width: 42.5em) {
  .single-team__inner {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .single-team__inner {
      padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .single-team__inner {
      padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .single-team__inner {
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 62em) {
  .single-team__header {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 0.9375rem , 0.7886904762rem  +  0.744047619vw , 1.25rem )) {
    .single-team__header {
      margin-bottom: clamp( 0.9375rem , 0.7886904762rem  +  0.744047619vw , 1.25rem );
    }
  }
  @supports not (margin-bottom: clamp( 0.9375rem , 0.7886904762rem  +  0.744047619vw , 1.25rem )) {
    .single-team__header {
      margin-bottom: calc(0.9375rem + 0.3125 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .single-team__header {
    margin-bottom: 0.9375rem;
  }
}
.single-team__image {
  max-width: 330px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 15px;
}
.single-team__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-team__description {
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 62em) {
  .single-team__description {
    font-size: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.125rem , 0.9464285714rem  +  0.8928571429vw , 1.5rem )) {
    .single-team__description {
      font-size: clamp( 1.125rem , 0.9464285714rem  +  0.8928571429vw , 1.5rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 0.9464285714rem  +  0.8928571429vw , 1.5rem )) {
    .single-team__description {
      font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .single-team__description {
    font-size: 1.125rem;
  }
}
.single-team__rank {
  margin-top: 10px;
  color: var(--main-accent-color);
}
.single-team__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-team__icon {
  width: 20px;
  height: 20px;
}
.single-team__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/*========== POSTS ================*/
@media (min-width: 62em) {
  .single-post__inner {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .single-post__inner {
      padding-top: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem );
    }
  }
  @supports not (padding-top: clamp( 1.25rem , 0.9523809524rem  +  1.4880952381vw , 1.875rem )) {
    .single-post__inner {
      padding-top: calc(1.25rem + 0.625 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .single-post__inner {
    padding-top: 1.25rem;
  }
}
@media (min-width: 42.5em) {
  .single-post__inner {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .single-post__inner {
      padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .single-post__inner {
      padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .single-post__inner {
    padding-bottom: 0.9375rem;
  }
}
.single-post__header {
  margin-bottom: 10px;
}
.single-post__cover {
  max-width: 750px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
@media (min-width: 42.5em) {
  .single-post__cover {
    height: 28.125rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (height: clamp( 13.75rem , 0.9722222222rem  +  63.8888888889vw , 28.125rem )) {
    .single-post__cover {
      height: clamp( 13.75rem , 0.9722222222rem  +  63.8888888889vw , 28.125rem );
    }
  }
  @supports not (height: clamp( 13.75rem , 0.9722222222rem  +  63.8888888889vw , 28.125rem )) {
    .single-post__cover {
      height: calc(13.75rem + 14.375 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .single-post__cover {
    height: 13.75rem;
  }
}
.single-post__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post__stat {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  border-radius: 10px 10px 0 0;
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
.single-post__comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.single-post__comments div {
  width: 18px;
}
.single-post__comments div svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-post__comments div svg path {
  fill: var(--main-text-color);
}
.single-post__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.single-post__view div {
  width: 18px;
}
.single-post__view div svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-post__view div svg path {
  fill: var(--main-text-color);
}
.single-post__info {
  padding-top: 15px;
  font-weight: 600;
  text-align: center;
  opacity: 0.7;
  max-width: 750px;
  margin: 0 auto;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  row-gap: 7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 42.5em) {
  .single-post__tags {
    margin-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (margin-top: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .single-post__tags {
      margin-top: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem );
    }
  }
  @supports not (margin-top: clamp( 0.9375rem , 0.1041666667rem  +  4.1666666667vw , 1.875rem )) {
    .single-post__tags {
      margin-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .single-post__tags {
    margin-top: 0.9375rem;
  }
}
/*========== ALL PAGES ================*/
@media (min-width: 62em) {
  .all-pages__editor {
    padding-top: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem )) {
    .all-pages__editor {
      padding-top: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem );
    }
  }
  @supports not (padding-top: clamp( 1.25rem , 0.6547619048rem  +  2.9761904762vw , 2.5rem )) {
    .all-pages__editor {
      padding-top: calc(1.25rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 20em) {
  .all-pages__editor {
    padding-top: 1.25rem;
  }
}
@media (min-width: 42.5em) {
  .all-pages__editor {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 42.5em) {
  @supports (padding-bottom: clamp( 1.25rem , 0.1388888889rem  +  5.5555555556vw , 2.5rem )) {
    .all-pages__editor {
      padding-bottom: clamp( 1.25rem , 0.1388888889rem  +  5.5555555556vw , 2.5rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.25rem , 0.1388888889rem  +  5.5555555556vw , 2.5rem )) {
    .all-pages__editor {
      padding-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 22.5);
    }
  }
}
@media (max-width: 20em) {
  .all-pages__editor {
    padding-bottom: 1.25rem;
  }
}

/*---FOOTER----------------------------------------------------*/
.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  font-size: 18px;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 48em) {
  .footer__inner {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 1.875rem , 0.9821428571rem  +  4.4642857143vw , 3.125rem )) {
    .footer__inner {
      padding-top: clamp( 1.875rem , 0.9821428571rem  +  4.4642857143vw , 3.125rem );
    }
  }
  @supports not (padding-top: clamp( 1.875rem , 0.9821428571rem  +  4.4642857143vw , 3.125rem )) {
    .footer__inner {
      padding-top: calc(1.875rem + 1.25 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .footer__inner {
    padding-top: 1.875rem;
  }
}
.footer__column:not(:last-child) {
  padding-right: 20px;
}
.footer__column:nth-child(1) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}
.footer__column:nth-child(3) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
}
.footer__column:nth-child(4) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}
.footer__logo {
  color: var(--logo-footer-text-color);
  margin-bottom: 20px;
}
.footer__text {
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 15px;
}
.footer__social-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.footer__social-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__title {
  color: var(--main-accent-color);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer__menu {
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.footer__contacts {
  line-height: 1.6;
}
.footer__item:not(:last-child) {
  margin-bottom: 30px;
}
.footer__search input {
  background-color: var(--main-bg-gray);
  border: 2px solid #FFFFFF;
  border-radius: 5px;
  font-size: 14px;
  outline-color: var(--main-accent-color);
  padding: 10px 10px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.footer__search input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__search input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__search input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__search input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__search input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__search button {
  line-height: 1;
  padding: 10px 30px;
  border: none;
  letter-spacing: -0.02em;
  color: var(--footer-text-color);
  background-color: var(--main-accent-color);
  border-radius: 5px;
  display: block;
  margin-left: auto;
}
.footer__copyright {
  text-align: center;
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: -0.02em;
  padding-bottom: 30px;
}
@media (min-width: 48em) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (font-size: clamp( 0.875rem , 0.875rem  +  0vw , 0.875rem )) {
    .footer__copyright {
      font-size: clamp( 0.875rem , 0.875rem  +  0vw , 0.875rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.875rem  +  0vw , 0.875rem )) {
    .footer__copyright {
      font-size: calc(0.875rem + 0 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}
@media (min-width: 48em) {
  .footer__copyright {
    padding-top: 4.375rem;
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (padding-top: clamp( 2.5rem , 1.1607142857rem  +  6.6964285714vw , 4.375rem )) {
    .footer__copyright {
      padding-top: clamp( 2.5rem , 1.1607142857rem  +  6.6964285714vw , 4.375rem );
    }
  }
  @supports not (padding-top: clamp( 2.5rem , 1.1607142857rem  +  6.6964285714vw , 4.375rem )) {
    .footer__copyright {
      padding-top: calc(2.5rem + 1.875 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .footer__copyright {
    padding-top: 2.5rem;
  }
}
.footer__copyright p {
  opacity: 0.5;
}

.contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.contacts-item__icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts-item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contacts-item p {
  line-height: 1.5;
}
.contacts-item__inner {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts-item__inner a {
  display: block;
  line-height: 1.2;
}
.contacts-item__inner a:not(:last-child) {
  margin-bottom: 15px;
}

.footer-menu {
  letter-spacing: -0.02em;
}
.footer-menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 20px;
}
.footer-menu nav ul li.menu-item-has-children {
  cursor: pointer;
}
.footer-menu nav ul li.menu-item-has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.footer-menu nav ul li.menu-item-has-children > a::after {
  content: "";
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  background: url("../img/icons/arrow_up-white.svg") center/contain no-repeat;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.footer-menu nav ul li.menu-item-has-children > a.active {
  opacity: 0.5;
}
.footer-menu nav ul li.menu-item-has-children > a.active::after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.footer-menu nav ul li.menu-item-has-children .sub-menu {
  padding-left: 20px;
  padding-top: 10px;
  row-gap: 15px;
  display: none;
  border-left: 1px solid var(--footer-text-color);
}
.footer-menu nav ul li.menu-item-has-children .sub-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*Media ===========================================*/
@media (min-width: 993px) {
  .header-menu nav ul li a {
    position: relative;
  }
  .header-menu nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    border-radius: 15px;
    display: block;
    background-color: var(--header-text-color);
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .header-menu nav ul li a:hover::before {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .header-menu nav ul li.current-menu-item a::before {
    background-color: var(--main-accent-color);
  }
  .header-menu nav ul li.menu-item-has-children {
    position: relative;
  }
  .header-menu nav ul li.menu-item-has-children .sub-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 15px;
    position: absolute;
    left: 0;
    background-color: var(--main-bg-gray);
    padding: 15px 0;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    z-index: 10;
  }
  .header-menu nav ul li.menu-item-has-children .sub-menu li {
    padding: 0 15px;
    line-height: 1;
    width: 100%;
    white-space: nowrap;
  }
  .header-menu nav ul li.menu-item-has-children .sub-menu li .sub-menu {
    right: 1px;
    top: -15px;
    -webkit-transform: translateX(120%);
        -ms-transform: translateX(120%);
            transform: translateX(120%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .header-menu nav ul li.menu-item-has-children .sub-menu li.menu-item-has-children:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .header-menu nav ul li.menu-item-has-children:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .footer__social-icon {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .footer__social-icon:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
  .footer__search button {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .footer__search button:hover {
    background-color: var(--main-accent-hover-color);
  }
  .contacts-item__inner a:hover {
    text-decoration: underline;
  }
  .footer-menu nav ul li a {
    position: relative;
  }
  .footer-menu nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    border-radius: 15px;
    display: block;
    background-color: var(--footer-text-color);
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .footer-menu nav ul li a:hover::before {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .button {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .button:hover {
    background-color: var(--main-accent-hover-color);
  }
  .button--white {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .button--white:hover {
    background-color: var(--main-accent-hover-color-light);
  }
  .news-card {
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
  .news-card:hover {
    -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  .news-card__title {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .news-card__title:hover {
    color: var(--main-accent-color);
  }
  .news-card__category a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .news-card__category a:hover {
    opacity: 0.7;
  }
  .team-card__name {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .team-card__name:hover {
    color: var(--main-accent-hover-color);
  }
  .team-card__icon {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .team-card__icon:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
  .team-card__social {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .team-card:hover .team-card__social {
    bottom: 0;
  }
  .item-gallery__image img {
    -webkit-transition: all 1.5s cubic-bezier(0, 0.595, 0.535, 0.64) 0s;
    -o-transition: all 1.5s cubic-bezier(0, 0.595, 0.535, 0.64) 0s;
    transition: all 1.5s cubic-bezier(0, 0.595, 0.535, 0.64) 0s;
  }
  .item-gallery:hover .item-gallery__image img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .contacts-form__btn {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .contacts-form__btn:hover {
    opacity: 0.8;
  }
  .not-found__link:hover {
    text-decoration: underline;
  }
  .archive__icon {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .archive__icon:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
  .search-page__link {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .search-page__link:hover {
    color: var(--main-accent-color);
  }
  .search-page__link:hover + .search-page__category {
    color: var(--main-accent-hover-color);
  }
  .search-page__category {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .search-page__category:hover {
    color: var(--main-accent-hover-color);
  }
  .pagination a.page-numbers {
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .pagination a.page-numbers:hover {
    background-color: var(--main-accent-hover-color);
    color: var(--main-text-color-white);
    border: 2px solid var(--main-accent-hover-color);
  }
  .navigation .nav-previous a:hover .nav-title {
    color: var(--main-accent-color);
  }
  .navigation .nav-next a:hover .nav-title {
    color: var(--main-accent-color);
  }
  .navigation .nav-title {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .single-team__icon {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .single-team__icon:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
  .single-gallery__item {
    overflow: hidden;
  }
  .single-gallery__item img {
    -webkit-transition: all 1.5s cubic-bezier(0, 0.595, 0.535, 0.64) 0s;
    -o-transition: all 1.5s cubic-bezier(0, 0.595, 0.535, 0.64) 0s;
    transition: all 1.5s cubic-bezier(0, 0.595, 0.535, 0.64) 0s;
  }
  .single-gallery__item:hover img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
  .single-post__info a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .single-post__info a:hover {
    color: var(--main-accent-hover-color);
  }
  .tags__inner a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .tags__inner a:hover {
    color: var(--main-accent-hover-color);
  }
  .wpcomments__list a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .wpcomments__list a:hover {
    color: var(--main-accent-hover-color);
  }
  .wpcomments .comment-respond .comment-form .logged-in-as a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .wpcomments .comment-respond .comment-form .logged-in-as a:hover {
    color: var(--main-accent-hover-color);
  }
  .wpcomments .comment-respond .comment-form .form-submit .submit {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .wpcomments .comment-respond .comment-form .form-submit .submit:hover {
    background-color: var(--main-accent-hover-color);
  }
  .wpcomments .comment-respond .comment-reply-title small a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .wpcomments .comment-respond .comment-reply-title small a:hover {
    color: var(--main-accent-hover-color);
  }
  .editor a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .editor a:hover {
    color: var(--main-accent-hover-color);
  }
  .editor .wp-block-file a:hover {
    color: inherit;
    opacity: 0.7;
  }
  .editor .wp-block-file .wp-block-file__button {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .editor .wp-block-file .wp-block-file__button:hover {
    color: inherit;
    opacity: 0.8;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .header__inner {
    height: 5rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (height: clamp( 3.75rem , 3.1547619048rem  +  2.9761904762vw , 5rem )) {
    .header__inner {
      height: clamp( 3.75rem , 3.1547619048rem  +  2.9761904762vw , 5rem );
    }
  }
  @supports not (height: clamp( 3.75rem , 3.1547619048rem  +  2.9761904762vw , 5rem )) {
    .header__inner {
      height: calc(3.75rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .header__inner {
    height: 3.75rem;
  }
}
@media (max-width: 992px) {
  .header__icon-menu {
    display: block;
    position: relative;
    z-index: 7;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .header__icon-menu {
    width: 2.5rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (width: clamp( 2rem , 1.7619047619rem  +  1.1904761905vw , 2.5rem )) {
    .header__icon-menu {
      width: clamp( 2rem , 1.7619047619rem  +  1.1904761905vw , 2.5rem );
    }
  }
  @supports not (width: clamp( 2rem , 1.7619047619rem  +  1.1904761905vw , 2.5rem )) {
    .header__icon-menu {
      width: calc(2rem + 0.5 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .header__icon-menu {
    width: 2rem;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .header__icon-menu {
    height: 1.875rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (height: clamp( 1.5rem , 1.3214285714rem  +  0.8928571429vw , 1.875rem )) {
    .header__icon-menu {
      height: clamp( 1.5rem , 1.3214285714rem  +  0.8928571429vw , 1.875rem );
    }
  }
  @supports not (height: clamp( 1.5rem , 1.3214285714rem  +  0.8928571429vw , 1.875rem )) {
    .header__icon-menu {
      height: calc(1.5rem + 0.375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .header__icon-menu {
    height: 1.5rem;
  }
}
@media (max-width: 992px) {
  .header__icon-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--main-text-color);
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .header__icon-menu span:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (margin-bottom: clamp( 0.5rem , 0.4404761905rem  +  0.2976190476vw , 0.625rem )) {
    .header__icon-menu span:not(:last-child) {
      margin-bottom: clamp( 0.5rem , 0.4404761905rem  +  0.2976190476vw , 0.625rem );
    }
  }
  @supports not (margin-bottom: clamp( 0.5rem , 0.4404761905rem  +  0.2976190476vw , 0.625rem )) {
    .header__icon-menu span:not(:last-child) {
      margin-bottom: calc(0.5rem + 0.125 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .header__icon-menu span:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 992px) {
  .header__icon-menu._active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top;
  }
  .header__icon-menu._active span:nth-child(2) {
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
  }
  .header__icon-menu._active span:nth-child(3) {
    -webkit-transform: translateY(1px) rotate(-45deg);
        -ms-transform: translateY(1px) rotate(-45deg);
            transform: translateY(1px) rotate(-45deg);
    -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
            transform-origin: left bottom;
  }
  .header-menu {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: #FFFFFF;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 45px;
    padding-top: 100px;
    z-index: 4;
    overflow-y: auto;
    padding-bottom: 20px;
    padding-left: 15px;
    -webkit-transition: right 0.3s ease 0s;
    -o-transition: right 0.3s ease 0s;
    transition: right 0.3s ease 0s;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .header-menu {
    padding-top: 6.25rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (padding-top: clamp( 5rem , 4.4047619048rem  +  2.9761904762vw , 6.25rem )) {
    .header-menu {
      padding-top: clamp( 5rem , 4.4047619048rem  +  2.9761904762vw , 6.25rem );
    }
  }
  @supports not (padding-top: clamp( 5rem , 4.4047619048rem  +  2.9761904762vw , 6.25rem )) {
    .header-menu {
      padding-top: calc(5rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .header-menu {
    padding-top: 5rem;
  }
}
@media (max-width: 992px) {
  .header-menu::before {
    content: "";
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 5;
    -webkit-transition: right 0.3s ease 0s;
    -o-transition: right 0.3s ease 0s;
    transition: right 0.3s ease 0s;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .header-menu::before {
    height: 5rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (height: clamp( 3.75rem , 3.1547619048rem  +  2.9761904762vw , 5rem )) {
    .header-menu::before {
      height: clamp( 3.75rem , 3.1547619048rem  +  2.9761904762vw , 5rem );
    }
  }
  @supports not (height: clamp( 3.75rem , 3.1547619048rem  +  2.9761904762vw , 5rem )) {
    .header-menu::before {
      height: calc(3.75rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .header-menu::before {
    height: 3.75rem;
  }
}
@media (max-width: 992px) {
  .header-menu._active {
    right: 0;
  }
  .header-menu._active::before {
    right: 0;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .header-menu nav {
    font-size: 1.375rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.25rem , 1.1904761905rem  +  0.2976190476vw , 1.375rem )) {
    .header-menu nav {
      font-size: clamp( 1.25rem , 1.1904761905rem  +  0.2976190476vw , 1.375rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 1.1904761905rem  +  0.2976190476vw , 1.375rem )) {
    .header-menu nav {
      font-size: calc(1.25rem + 0.125 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .header-menu nav {
    font-size: 1.25rem;
  }
}
@media (max-width: 992px) {
  .header-menu nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 20px;
  }
  .header-menu nav ul li.menu-item-has-children > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .header-menu nav ul li.menu-item-has-children > a::after {
    content: "";
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    background: url("../img/icons/arrow_up.svg") center/contain no-repeat;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .header-menu nav ul li.menu-item-has-children > a.active {
    opacity: 0.5;
  }
  .header-menu nav ul li.menu-item-has-children > a.active::after {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .header-menu nav ul li.menu-item-has-children .sub-menu {
    padding-left: 20px;
    padding-top: 10px;
    row-gap: 15px;
    display: none;
    border-left: 1px solid var(--header-text-color);
  }
  .header-menu nav ul li.menu-item-has-children .sub-menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .logo {
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
    padding-right: 0;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .logo__image {
    height: 3.75rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (height: clamp( 2.5rem , 1.9047619048rem  +  2.9761904762vw , 3.75rem )) {
    .logo__image {
      height: clamp( 2.5rem , 1.9047619048rem  +  2.9761904762vw , 3.75rem );
    }
  }
  @supports not (height: clamp( 2.5rem , 1.9047619048rem  +  2.9761904762vw , 3.75rem )) {
    .logo__image {
      height: calc(2.5rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .logo__image {
    height: 2.5rem;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .logo__text {
    font-size: 1.125rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.8125rem , 0.6636904762rem  +  0.744047619vw , 1.125rem )) {
    .logo__text {
      font-size: clamp( 0.8125rem , 0.6636904762rem  +  0.744047619vw , 1.125rem );
    }
  }
  @supports not (font-size: clamp( 0.8125rem , 0.6636904762rem  +  0.744047619vw , 1.125rem )) {
    .logo__text {
      font-size: calc(0.8125rem + 0.3125 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .logo__text {
    font-size: 0.8125rem;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .footer {
    font-size: 1.25rem;
  }
}
@media (max-width: 992px) and (min-width: 32.5em) and (max-width: 62em) {
  @supports (font-size: clamp( 1.125rem , 0.9872881356rem  +  0.4237288136vw , 1.25rem )) {
    .footer {
      font-size: clamp( 1.125rem , 0.9872881356rem  +  0.4237288136vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 0.9872881356rem  +  0.4237288136vw , 1.25rem )) {
    .footer {
      font-size: calc(1.125rem + 0.125 * (100vw - 32.5rem) / 29.5);
    }
  }
}
@media (max-width: 992px) and (max-width: 32.5em) {
  .footer {
    font-size: 1.125rem;
  }
}
@media (max-width: 992px) {
  .footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__column:not(:last-child) {
    padding-right: 20px;
  }
  .footer__column:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 50px;
  }
  .footer__column:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer__column:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    padding-right: 0;
  }
  .footer__column:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__text {
    font-size: 16px;
  }
  .news__content {
    -ms-grid-columns: (40%)[2];
    grid-template-columns: repeat(2, 40%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .team__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-columns: (40%)[2];
    grid-template-columns: repeat(2, 40%);
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .team-card__social {
    bottom: 0;
  }
  .gallery__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-columns: (40%)[2];
    grid-template-columns: repeat(2, 40%);
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .about-descriptions__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 992px) and (min-width: 62em) {
  .about-descriptions__item {
    row-gap: 1.875rem;
  }
}
@media (max-width: 992px) and (min-width: 20em) and (max-width: 62em) {
  @supports (row-gap: clamp( 0.625rem , 0.0297619048rem  +  2.9761904762vw , 1.875rem )) {
    .about-descriptions__item {
      row-gap: clamp( 0.625rem , 0.0297619048rem  +  2.9761904762vw , 1.875rem );
    }
  }
  @supports not (row-gap: clamp( 0.625rem , 0.0297619048rem  +  2.9761904762vw , 1.875rem )) {
    .about-descriptions__item {
      row-gap: calc(0.625rem + 1.25 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 992px) and (max-width: 20em) {
  .about-descriptions__item {
    row-gap: 0.625rem;
  }
}
@media (max-width: 992px) {
  .about-descriptions__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-height: 500px;
  }
  .about-descriptions__title {
    display: block;
  }
  .about-descriptions__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }
  .contacts-find__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacts-find__info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .contacts-find__map {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    height: 400px;
  }
  .contact-info__title {
    margin-bottom: 10px;
    text-align: center;
  }
  .contact-info__text {
    margin-bottom: 20px;
    text-align: center;
  }
  .contact-info__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .contact-info__values {
    row-gap: 5px;
  }
  .contact-info__adres {
    font-weight: 600;
    line-height: 1.65;
    color: var(--main-text-color-white);
  }
  .archive__inner {
    -ms-grid-columns: (40%)[2];
    grid-template-columns: repeat(2, 40%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .archive__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .archive__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .archive__leader {
    text-align: center;
  }
  .archive__name {
    text-align: center;
  }
  .archive__image {
    height: 300px;
    width: 280px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .wpcomments .comment-respond .comment-form .logged-in-as .required-field-message {
    display: block;
  }
}
@media (max-width: 830px) {
  .activities__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 40px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .activities__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
  }
  .contacts-form__control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .contacts-form__area {
    height: 200px;
  }
  .news__content {
    -ms-grid-columns: (48%)[2];
    grid-template-columns: repeat(2, 48%);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: auto;
       -moz-column-gap: auto;
            column-gap: auto;
  }
  .team__content {
    -ms-grid-columns: (47%)[2];
    grid-template-columns: repeat(2, 47%);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: auto;
       -moz-column-gap: auto;
            column-gap: auto;
  }
  .gallery__content {
    -ms-grid-columns: (47%)[2];
    grid-template-columns: repeat(2, 47%);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: auto;
       -moz-column-gap: auto;
            column-gap: auto;
  }
  .archive__inner {
    -ms-grid-columns: (48%)[2];
    grid-template-columns: repeat(2, 48%);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: auto;
       -moz-column-gap: auto;
            column-gap: auto;
  }
}
@media (max-width: 680px) {
  .news__content {
    -ms-grid-columns: (70%)[1];
    grid-template-columns: repeat(1, 70%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .news-card__title {
    height: auto;
  }
  .team__content {
    -ms-grid-columns: (70%)[1];
    grid-template-columns: repeat(1, 70%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery__content {
    -ms-grid-columns: (70%)[1];
    grid-template-columns: repeat(1, 70%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about-descriptions__image {
    max-height: 350px;
  }
  .contacts-form__input {
    font-size: 18px;
    padding: 15px;
  }
  .contacts-form__area {
    font-size: 18px;
    padding: 15px;
    height: 200px;
  }
  .archive__inner {
    -ms-grid-columns: (70%)[1];
    grid-template-columns: repeat(1, 70%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .single-gallery__inner {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 120px;
  }
  .wpcomments .comment-respond .comment-reply-title {
    font-size: 20px;
  }
  .wpcomments .comment-respond .comment-form .logged-in-as {
    font-size: 14px;
  }
  .wpcomments .comment-respond .comment-form .logged-in-as a {
    font-size: 12px;
  }
  .wpcomments .comment-respond .comment-form .logged-in-as a:first-child {
    width: 147px;
    white-space: nowrap;
  }
  .wpcomments .comment-respond .comment-form .logged-in-as .required-field-message {
    font-size: 12px;
  }
  .wpcomments .comment-respond .comment-form .comment-notes {
    font-size: 14px;
  }
  .wpcomments .comment-respond .comment-form .comment-notes span.required-field-message {
    font-size: 12px;
    display: block;
  }
  .wpcomments .comment-respond .comment-form .comment-form-comment {
    padding: 10px 0;
  }
  .wpcomments .comment-respond .comment-form .comment-form-comment textarea {
    padding: 10px;
    font-size: 14px;
  }
  .wpcomments .comment-respond .comment-form .comment-form-author {
    padding-bottom: 10px;
  }
  .wpcomments .comment-respond .comment-form .comment-form-author input {
    padding: 10px;
    font-size: 14px;
  }
  .wpcomments .comment-respond .comment-form .comment-form-email {
    padding-bottom: 10px;
  }
  .wpcomments .comment-respond .comment-form .comment-form-email input {
    padding: 10px;
    font-size: 14px;
  }
  .wpcomments .comment-respond .comment-form .comment-form-url {
    padding-bottom: 10px;
  }
  .wpcomments .comment-respond .comment-form .comment-form-url input {
    padding: 10px;
    font-size: 14px;
  }
  .wpcomments .comment-respond .comment-form .comment-form-cookies-consent {
    font-size: 14px;
  }
  .wpcomments .comment-respond .comment-form .form-submit .submit {
    line-height: 1, 5;
    letter-spacing: -0.02em;
    background-color: var(--main-accent-color);
    padding: 0.75em 1em;
    border-radius: 5px;
    color: var(--main-text-color-white);
    cursor: pointer;
  }
}
@media (max-width: 680px) and (min-width: 62em) {
  .wpcomments .comment-respond .comment-form .form-submit .submit {
    font-size: 1.25rem;
  }
}
@media (max-width: 680px) and (min-width: 20em) and (max-width: 62em) {
  @supports (font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.25rem )) {
    .wpcomments .comment-respond .comment-form .form-submit .submit {
      font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.6964285714rem  +  0.8928571429vw , 1.25rem )) {
    .wpcomments .comment-respond .comment-form .form-submit .submit {
      font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 42);
    }
  }
}
@media (max-width: 680px) and (max-width: 20em) {
  .wpcomments .comment-respond .comment-form .form-submit .submit {
    font-size: 0.875rem;
  }
}
@media (max-width: 520px) {
  .footer__column:not(:last-child) {
    padding-right: 0px;
    margin-bottom: 40px;
  }
  .footer__column:nth-child(1) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__column:nth-child(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-bottom: 0;
  }
  .footer__column:nth-child(3) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__column:nth-child(4) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 40px;
  }
  .pagination {
    position: relative;
    width: 100%;
  }
  .pagination .page-numbers {
    display: none;
  }
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    display: block;
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
  }
  .pagination .page-numbers.prev {
    left: 10%;
  }
  .pagination .page-numbers.next {
    right: 10%;
  }
  .main__content {
    max-width: 100%;
  }
  .activities__inner {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .activities__title {
    margin-bottom: 40px;
  }
  .activities__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .activities-item__image {
    margin-bottom: 10px;
  }
  .activities-item__title {
    margin-bottom: 5px;
  }
  .news__inner {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .news__title {
    margin-bottom: 40px;
  }
  .news__content {
    margin-bottom: 40px;
    -ms-grid-columns: (100%)[1];
    grid-template-columns: repeat(1, 100%);
  }
  .team__inner {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .team__title {
    margin-bottom: 40px;
  }
  .team__content {
    margin-bottom: 40px;
    -ms-grid-columns: (100%)[1];
    grid-template-columns: repeat(1, 100%);
  }
  .team-card {
    max-width: 290px;
    margin: 0 auto;
  }
  .team-card__image {
    max-height: 260px;
  }
  .gallery__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .gallery__title {
    margin-bottom: 40px;
  }
  .gallery__content {
    margin-bottom: 40px;
    -ms-grid-columns: (100%)[1];
    grid-template-columns: repeat(1, 100%);
  }
  .about-descriptions__image {
    max-height: 250px;
  }
  .contacts-find__map {
    height: 300px;
  }
  .archive__inner {
    -ms-grid-columns: (100%)[1];
    grid-template-columns: repeat(1, 100%);
    row-gap: 30px;
  }
  .single-gallery__inner {
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-auto-rows: 100px;
  }
  .navigation .nav-links {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .navigation .nav-title {
    display: none;
  }
  .navigation .nav-subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 3px;
       -moz-column-gap: 3px;
            column-gap: 3px;
  }
  .navigation .nav-subtitle span {
    display: inline-block;
    font-size: 12px;
  }
  .single-post__stat {
    padding: 3px 7px;
    font-size: 16px;
    gap: 10px;
    border-radius: 5px;
  }
  .single-post__comments {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .single-post__view {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .single-post__info {
    font-size: 14px;
    padding-top: 10px;
  }
  .wpcomments__title {
    font-size: 20px;
  }
  .wpcomments__title span {
    font-size: 14px;
  }
  .wpcomments__list li.comment article.comment-body {
    margin-bottom: 10px;
  }
  .wpcomments__list li.comment article.comment-body footer.comment-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 7px;
  }
  .wpcomments__list li.comment article.comment-body footer.comment-meta .comment-author {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    font-size: 16px;
  }
  .wpcomments__list li.comment article.comment-body footer.comment-meta .comment-author img {
    width: 20px;
    height: 20px;
  }
  .wpcomments__list li.comment article.comment-body footer.comment-meta .comment-metadata {
    font-size: 14px;
    padding-bottom: 1px;
  }
  .wpcomments__list li.comment article.comment-body .comment-content {
    padding: 5px 5px 5px 0px;
    font-size: 14px;
  }
  .wpcomments__list li.comment article.comment-body .reply {
    margin-left: 0;
  }
  .wpcomments__list li.comment ul.children {
    padding-left: 15px;
  }
}