/*!*********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/scss/main.scss ***!
  \*********************************************************************************************************************************************************************/
@charset "UTF-8";
* {
  border: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#main-menu ul {
  display: flex;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
#main-menu ul li {
  position: relative;
}
#main-menu ul li a {
  white-space: nowrap;
  color: #000;
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}
#main-menu ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  margin-top: 5px;
  background: var(--orange);
  display: block;
  transition: all 250ms linear;
}
#main-menu ul li a:focus, #main-menu ul li a:hover {
  color: var(--orange);
}
#main-menu ul li a:focus::after, #main-menu ul li a:hover::after {
  width: 100%;
}
#main-menu ul li a:focus + ul, #main-menu ul li a:hover + ul {
  visibility: visible;
}
#main-menu ul li.current_page_ancestor > a, #main-menu ul li.current_page_item > a {
  color: var(--orange);
}
#main-menu ul li.current_page_ancestor > a::after, #main-menu ul li.current_page_item > a::after {
  content: "";
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background: var(--orange);
  display: block;
}
#main-menu ul li:hover > ul, #main-menu ul li:focus-within > ul {
  visibility: visible;
}

#main-menu > ul ul {
  flex-direction: column;
  position: absolute;
  visibility: hidden;
  border: 1px solid #e5e5e5;
  background: #fff;
  z-index: 10;
  left: 0;
}

#main-menu > ul ul ul {
  left: 100%;
  top: 0;
}

.c-header {
  padding: 15px 0;
  background: var(--white);
}
.c-header__container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 15px;
}
.c-header__logo img {
  max-width: 300px;
}
@media (width <= 1600px) {
  .c-header__logo img {
    max-width: 260px;
  }
}
.c-header__phone a {
  font-size: 32px;
  color: var(--dark-blue);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  width: fit-content;
  gap: 8px;
  align-items: center;
}
.c-header__phone a::before {
  background: url(img/top-phone-icon.png) no-repeat;
  width: 20px;
  height: 25px;
  content: "";
  display: block;
}
@media (width <= 1599px) {
  .c-header__phone a {
    font-size: 28px;
  }
}
@media (1199px <= width <= 1399px) {
  .c-header__phone a {
    font-size: 24px;
  }
}
.c-header__menu .menu li a {
  font-weight: 500;
  font-size: 18px;
}
.c-header__menu .menu li a:hover {
  background: none;
}
@media (width <= 1599px) {
  .c-header__menu .menu li a {
    font-size: 16px;
  }
}
.c-header__menu-bar {
  display: none;
}
@media (width <= 1199px) {
  .c-header__menu-bar {
    display: block;
  }
}
.c-header__menu-bar svg {
  width: 40px;
  height: 40px;
}
@media (1200px <= width <= 1399px) {
  .c-header__container {
    gap: 15px;
  }
  .c-header__logo img {
    max-width: 180px;
  }
}
@media (992px <= width <= 1199px) {
  .c-header__logo {
    order: 1;
  }
  .c-header__logo img {
    max-width: 180px;
  }
  .c-header__menu {
    order: 4;
    display: flex;
    justify-content: flex-end;
  }
  .c-header__phone {
    order: 2;
  }
  .c-header__cta {
    order: 3;
  }
}
@media (768px <= width <= 991px) {
  .c-header__container {
    gap: 15px;
    flex-wrap: wrap;
  }
  .c-header__logo {
    order: 1;
  }
  .c-header__logo img {
    max-width: 180px;
  }
  .c-header__menu {
    order: 4;
    display: flex;
    justify-content: flex-end;
  }
  .c-header__phone {
    order: 2;
  }
  .c-header__cta {
    order: 3;
  }
}
@media (width <= 767px) {
  .c-header__container {
    gap: 15px;
    flex-wrap: wrap;
  }
  .c-header__logo {
    order: 1;
    width: calc(50% - 15px);
  }
  .c-header__logo img {
    max-width: 180px;
  }
  .c-header__menu {
    order: 2;
    width: calc(50% - 15px);
    display: flex;
    justify-content: flex-end;
  }
  .c-header__phone {
    order: 3;
  }
  .c-header__cta {
    order: 4;
  }
}
@media (width < 540px) {
  .c-header__logo {
    order: 1;
    width: calc(50% - 15px);
  }
  .c-header__menu {
    order: 2;
    width: calc(50% - 15px);
    display: flex;
    justify-content: flex-end;
  }
  .c-header__phone {
    order: 3;
  }
  .c-header__cta {
    order: 4;
  }
}

.mm-menu--offcanvas.mm-menu--opened {
  z-index: 1000;
}

.c-footer__container {
  background: var(--light-yellow);
  border-radius: 0 0 50px 0;
  position: relative;
  padding: 30px 15px;
}
.c-footer__container::before {
  content: "";
  width: 50%;
  left: -50%;
  background: var(--light-yellow);
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}
@media (width <= 767px) {
  .c-footer__container {
    flex-direction: column;
    gap: 32px;
    justify-content: flex-start;
  }
}
.c-footer__top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #e1deca;
  margin-bottom: 30px;
}
.c-footer__column-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 32px;
}
.c-footer__column ul {
  list-style: none;
}
.c-footer__column ul li {
  margin-bottom: 10px;
}
.c-footer__column a {
  text-decoration: none;
  color: var(--dark-blue);
}
.c-footer__column a:hover {
  text-decoration: underline;
}
.c-footer__column-address {
  line-height: 2;
}
.c-footer__column-list {
  column-count: 2;
  column-gap: 20px;
  list-style: none;
}
.c-footer__column-list li {
  margin-bottom: 10px;
}
.c-footer__column-list--v1 {
  column-count: 1;
}
@media (991px <= width <= 1200px) {
  .c-footer__column-list {
    column-count: 1;
  }
}
@media (width <= 576px) {
  .c-footer__column-list {
    column-count: 1;
  }
}
@media (width < 992px) {
  .c-footer__column {
    width: 50%;
  }
  .c-footer__column:last-child {
    width: 100%;
  }
}
@media (width <= 540px) {
  .c-footer__column {
    width: 100%;
    margin-bottom: 20px;
  }
  .c-footer__column:last-child {
    margin-bottom: 0;
  }
}
.c-footer__copyright {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 40px;
}
@media (width <= 767px) {
  .c-footer__copyright {
    flex-wrap: wrap;
  }
  .c-footer__copyright .c-footer__column {
    width: 50%;
    margin-bottom: 20px;
  }
  .c-footer__copyright .c-footer__column:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (width <= 540px) {
  .c-footer__copyright .c-footer__column {
    width: 100%;
  }
}

/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
:root {
  --mm-lineheight: 22px;
}

.mm-hidden {
  display: none !important;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu,
.mm-menu *,
.mm-menu *:before,
.mm-menu *:after {
  transition-property: none;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

:root {
  --mm-blocker-visibility-delay: 0.4s;
  --mm-blocker-opacity-delay: 0s;
}

.mm-blocker {
  display: block;
  position: absolute;
  bottom: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  background: var(--mm-color-background);
  transition: bottom 0s ease var(--mm-blocker-visibility-delay), width 0.4s ease, opacity 0.4s ease var(--mm-blocker-opacity-delay), transform 0.4s ease;
}
.mm-blocker:focus-visible {
  opacity: 0.75;
}

.mm-btn {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50px;
  padding: 0;
}
.mm-btn--next, [dir=rtl] .mm-btn--prev {
  --mm-btn-rotate: 135deg;
}
.mm-btn--prev, [dir=rtl] .mm-btn--next {
  --mm-btn-rotate: -45deg;
}
.mm-btn--prev:before, .mm-btn--next:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  box-sizing: border-box;
  border: 2px solid var(--mm-color-icon);
  border-bottom: none;
  border-right: none;
  transform: rotate(var(--mm-btn-rotate));
}
.mm-btn--prev:before {
  inset-inline-start: 23px;
}
.mm-btn--next:after {
  inset-inline-end: 23px;
}
.mm-btn--close:before {
  content: "×";
  font-size: 150%;
}
.mm-btnreset {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: sticky;
  z-index: 2;
  top: 0;
  min-height: var(--mm-lineheight);
  padding: calc((var(--mm-listitem-size) * 0.65 - var(--mm-lineheight)) * 0.5) 20px;
  font-size: 75%;
  text-transform: uppercase;
  background: var(--mm-color-background);
  background-image: linear-gradient(var(--mm-color-background-highlight), var(--mm-color-background-highlight));
  opacity: 1;
  transition-property: opacity;
}
.mm-navbar:not(.mm-hidden) ~ .mm-listview .mm-divider {
  top: var(--mm-navbar-size);
}

:root {
  --mm-listitem-size: 50px;
}

.mm-listitem {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 0;
  margin: 0;
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
}
.mm-listitem:after {
  content: "";
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  inset-inline-start: 20px;
  inset-inline-end: 0;
  bottom: 0;
}

.mm-listitem__text,
.mm-listitem__btn {
  padding: calc((var(--mm-listitem-size) - var(--mm-lineheight)) / 2) 0;
}

.mm-listitem__text {
  flex-grow: 1;
  flex-basis: 10%;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-listitem__btn {
  display: block;
  position: relative;
  width: auto;
  padding-inline-end: 50px;
  border-color: inherit;
  background: rgba(3, 2, 1, 0);
}
.mm-listitem__btn:not(.mm-listitem__text) {
  border-left-width: 1px;
  border-left-style: solid;
}

.mm-listitem--selected > .mm-listitem__text {
  background: var(--mm-color-background-emphasis);
}
.mm-listitem--opened > .mm-listitem__btn,
.mm-listitem--opened > .mm-panel {
  background: var(--mm-color-background-highlight);
}

.mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-menu {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overscroll-behavior: none;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
  line-height: var(--mm-lineheight);
  -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mm-menu ::placeholder {
  color: var(--mm-color-text-dimmed);
}
.mm-menu,
.mm-menu * {
  box-sizing: border-box;
}
.mm-menu:focus, .mm-menu:focus-visible,
.mm-menu *:focus,
.mm-menu *:focus-visible {
  outline: none;
}
.mm-menu a,
.mm-menu button,
.mm-menu label {
  color: inherit;
}
.mm-menu a:focus,
.mm-menu button:focus,
.mm-menu label:focus {
  outline: none;
}
.mm-menu a:focus-visible,
.mm-menu button:focus-visible,
.mm-menu label:focus-visible {
  outline: 2px solid var(--mm-color-focusring);
  outline-offset: -5px;
}
.mm-menu input:focus, .mm-menu input:focus-visible,
.mm-menu select:focus,
.mm-menu select:focus-visible,
.mm-menu textarea:focus,
.mm-menu textarea:focus-visible {
  outline: 2px solid var(--mm-color-focusring);
  outline-offset: 2px;
}
.mm-menu a,
.mm-menu a:link,
.mm-menu a:active,
.mm-menu a:visited,
.mm-menu a:hover {
  text-decoration: none;
  color: inherit;
}

:root {
  --mm-navbar-size: 50px;
}

.mm-navbar {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: var(--mm-navbar-size);
  padding-top: env(safe-area-inset-top);
  color: var(--mm-color-text-dimmed);
  text-align: center;
  opacity: 1;
  background: var(--mm-color-background);
  border-bottom: 1px solid var(--mm-color-border);
  transition-property: opacity;
}
.mm-navbar > * {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.mm-navbar__btn {
  flex-grow: 0;
}

.mm-navbar__title {
  flex: 1 1 50%;
  display: flex;
  padding: 0 20px;
  overflow: hidden;
}
.mm-navbar__title[href="#"] {
  pointer-events: none;
}
.mm-navbar__title > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.mm-btn.mm-hidden + .mm-navbar__title:not(:last-child) {
  padding-inline-start: 60px;
  padding-inline-end: 10px;
}
.mm-btn:not(.mm-hidden) + .mm-navbar__title:last-child {
  padding-inline-start: 10px;
  padding-inline-end: 60px;
}

.mm-panel {
  --mm-panel-child-offset: 100%;
  --mm-panel-parent-offset: -30%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  transform: translate3d(var(--mm-panel-child-offset), 0, 0);
  transition-property: transform, inset-inline-start;
}
[dir=rtl] .mm-panel {
  --mm-panel-child-offset: -100%;
  --mm-panel-parent-offset: 30%;
}
.mm-panel:after {
  content: "";
  display: block;
  height: var(--mm-listitem-size);
}
.mm-panel:focus {
  outline: none;
}
.mm-panel--opened {
  z-index: 2;
  transform: translate3d(0%, 0, 0);
  transition-delay: 0s;
}
.mm-panel--parent {
  transform: translate3d(var(--mm-panel-parent-offset), 0, 0);
  z-index: 0;
}
.mm-panel--highest {
  z-index: 3;
}
.mm-menu--opened .mm-panel--noanimation {
  transition: none !important;
  transition-duration: 0s !important;
}

.mm-panel__content {
  padding: 20px;
}

.mm-panels {
  flex-grow: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
}
.mm-panels:focus {
  outline: none;
}

:root {
  --mm-toggle-size: 34px;
}

.mm-toggle {
  display: flex;
  align-self: center;
  flex: calc(var(--mm-toggle-size) * 1.75) 0 0;
  height: var(--mm-toggle-size);
  margin-inline-end: 10px;
  appearance: none !important;
  border: none !important;
  border-radius: var(--mm-toggle-size);
  border: var(--mm-color-border);
  background: var(--mm-color-border);
  cursor: pointer;
  transition-property: background-color;
}
.mm-toggle:before {
  content: "";
  aspect-ratio: 1;
  margin: 2px;
  border-radius: 100%;
  background: var(--mm-color-background);
  transition-property: transform;
}
.mm-toggle:checked {
  background: #4bd963;
}
.mm-toggle:checked:before {
  transform: translateX(calc(var(--mm-toggle-size) * 0.75));
}
[dir=rtl] .mm-toggle:checked:before {
  transform: translateX(calc(var(--mm-toggle-size) * -0.75));
}

.mm-listitem--vertical > .mm-panel {
  position: static;
  width: 100%;
  padding: 10px 0 10px 20px;
  transform: none !important;
  transition: none !important;
}
.mm-listitem--vertical > .mm-panel:after {
  content: none;
  display: none;
}
.mm-listitem--vertical:not(.mm-listitem--opened) > .mm-panel {
  display: none;
}

.mm-listitem--vertical > .mm-listitem__btn {
  height: var(--mm-listitem-size);
  bottom: auto;
}
.mm-listitem--vertical .mm-listitem:last-child:after {
  border-color: transparent;
}

.mm-listitem--opened > .mm-listitem__btn:after {
  transform: rotate(225deg);
  right: 19px;
}

:root {
  --mm-size: 80%;
  --mm-min-size: 240px;
  --mm-max-size: 440px;
}

.mm-menu--offcanvas {
  position: fixed;
  z-index: 0;
}

.mm-page {
  box-sizing: border-box;
  min-height: 100vh;
  background: inherit;
}

:where(.mm-slideout) {
  position: relative;
  z-index: 1;
  width: 100%;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  transition-property: width, transform;
}

.mm-wrapper--opened,
.mm-wrapper--opened body {
  overflow: hidden;
}

.mm-wrapper__blocker {
  background: rgba(0, 0, 0, 0.4);
}
.mm-wrapper--opened .mm-wrapper__blocker {
  --mm-blocker-visibility-delay: 0s;
  --mm-blocker-opacity-delay: 0.4s;
  bottom: 0;
  opacity: 0.5;
}

.mm-menu {
  /** Horizontal transform */
  --mm-translate-horizontal: 0;
  /** Vertical transform */
  --mm-translate-vertical: 0;
}
.mm-menu--position-left, .mm-menu--position-left-front {
  right: auto;
}
.mm-menu--position-right, .mm-menu--position-right-front {
  left: auto;
}
.mm-menu--position-left, .mm-menu--position-right, .mm-menu--position-left-front, .mm-menu--position-right-front {
  width: clamp(var(--mm-min-size), var(--mm-size), var(--mm-max-size));
}
.mm-menu--position-left-front {
  --mm-translate-horizontal: -100%;
}
.mm-menu--position-right-front {
  --mm-translate-horizontal: 100%;
}
.mm-menu--position-top {
  bottom: auto;
}
.mm-menu--position-bottom {
  top: auto;
}
.mm-menu--position-top, .mm-menu--position-bottom {
  width: 100%;
  height: clamp(var(--mm-min-size), var(--mm-size), var(--mm-max-size));
}
.mm-menu--position-top {
  --mm-translate-vertical: -100%;
}
.mm-menu--position-bottom {
  --mm-translate-vertical: 100%;
}
.mm-menu--position-left-front, .mm-menu--position-right-front, .mm-menu--position-top, .mm-menu--position-bottom {
  z-index: 2;
  transform: translate3d(var(--mm-translate-horizontal), var(--mm-translate-vertical), 0);
  transition-property: transform;
}
.mm-menu--position-left-front.mm-menu--opened, .mm-menu--position-right-front.mm-menu--opened, .mm-menu--position-top.mm-menu--opened, .mm-menu--position-bottom.mm-menu--opened {
  transform: translate3d(0, 0, 0);
}

.mm-wrapper--position-left {
  --mm-translate-horizontal: clamp(
      var(--mm-min-size),
      var(--mm-size),
      var(--mm-max-size)
  );
}
.mm-wrapper--position-right {
  --mm-translate-horizontal: clamp(
      calc(-1 * var(--mm-max-size)),
      calc(-1 * var(--mm-size)),
      calc(-1 * var(--mm-min-size))
  );
}
.mm-wrapper--position-left .mm-slideout, .mm-wrapper--position-right .mm-slideout {
  transform: translate3d(0, 0, 0);
}
.mm-wrapper--position-left.mm-wrapper--opened .mm-slideout, .mm-wrapper--position-right.mm-wrapper--opened .mm-slideout {
  transform: translate3d(var(--mm-translate-horizontal), 0, 0);
}
.mm-wrapper--position-left-front .mm-wrapper__blocker, .mm-wrapper--position-right-front .mm-wrapper__blocker, .mm-wrapper--position-top .mm-wrapper__blocker, .mm-wrapper--position-bottom .mm-wrapper__blocker {
  z-index: 1;
}

.mm-menu--theme-light {
  --mm-color-background: #f3f3f3;
  --mm-color-border: rgb(0 0 0 / 0.15);
  --mm-color-icon: rgb(0 0 0 / 0.4);
  --mm-color-text: rgb(0 0 0 / 0.8);
  --mm-color-text-dimmed: rgb(0 0 0 / 0.4);
  --mm-color-background-highlight: rgb(0 0 0 / 0.05);
  --mm-color-background-emphasis: rgb(255 255 255 / 0.75);
  --mm-color-focusring: #06c;
}
.mm-menu--theme-light-contrast {
  --mm-color-background: #f3f3f3;
  --mm-color-border: rgb(0 0 0 / 0.5);
  --mm-color-icon: rgb(0 0 0 / 0.5);
  --mm-color-text: #000;
  --mm-color-text-dimmed: rgb(0 0 0 / 0.7);
  --mm-color-background-highlight: rgb(0 0 0 / 0.05);
  --mm-color-background-emphasis: rgb(255 255 255 / 0.9);
  --mm-color-focusring: #06c;
}

.mm-menu--theme-dark {
  --mm-color-background: #333;
  --mm-color-border: rgb(0, 0, 0, 0.4);
  --mm-color-icon: rgb(255, 255, 255, 0.4);
  --mm-color-text: rgb(255, 255, 255, 0.8);
  --mm-color-text-dimmed: rgb(255, 255, 255, 0.4);
  --mm-color-background-highlight: rgb(255, 255, 255, 0.08);
  --mm-color-background-emphasis: rgb(0, 0, 0, 0.1);
  --mm-color-focusring: #06c;
}
.mm-menu--theme-dark-contrast {
  --mm-color-background: #333;
  --mm-color-border: rgb(255 255 255 / 0.5);
  --mm-color-icon: rgb(255 255 255 / 0.5);
  --mm-color-text: #fff;
  --mm-color-text-dimmed: rgb(255 255 255 / 0.7);
  --mm-color-background-highlight: rgb(255 255 255 / 0.1);
  --mm-color-background-emphasis: rgb(0 0 0 / 0.3);
  --mm-color-focusring: #06c;
}

.mm-menu--theme-white {
  --mm-color-background: #fff;
  --mm-color-border: rgb(0 0 0 / 0.15);
  --mm-color-icon: rgb(0 0 0 / 0.3);
  --mm-color-text: rgb(0 0 0 / 0.8);
  --mm-color-text-dimmed: rgb(0 0 0 / 0.3);
  --mm-color-background-highlight: rgb(0 0 0 / 0.06);
  --mm-color-background-emphasis: rgb(0 0 0 / 0.03);
  --mm-color-focusring: #06c;
}
.mm-menu--theme-white-contrast {
  --mm-color-background: #fff;
  --mm-color-border: rgb(0 0 0 / 0.5);
  --mm-color-icon: rgb(0 0 0 / 0.5);
  --mm-color-text: #000;
  --mm-color-text-dimmed: rgb(0 0 0 / 0.7);
  --mm-color-background-highlight: rgb(0 0 0 / 0.07);
  --mm-color-background-emphasis: rgb(0 0 0 / 0.035);
  --mm-color-focusring: #06c;
}

.mm-menu--theme-black {
  --mm-color-background: #000;
  --mm-color-border: rgb(255 255 255 / 0.2);
  --mm-color-icon: rgb(255 255 255 / 0.4);
  --mm-color-text: rgb(255 255 255 / 0.7);
  --mm-color-text-dimmed: rgb(255 255 255 / 0.4);
  --mm-color-background-highlight: rgb(255 255 255 / 0.1);
  --mm-color-background-emphasis: rgb(255 255 255 / 0.06);
  --mm-color-focusring: #06c;
}
.mm-menu--theme-black-contrast {
  --mm-color-background: #000;
  --mm-color-border: rgb(255 255 255 / 0.5);
  --mm-color-icon: rgb(255 255 255 / 0.5);
  --mm-color-text: #fff;
  --mm-color-text-dimmed: rgb(255 255 255 / 0.6);
  --mm-color-background-highlight: rgb(255 255 255 / 0.125);
  --mm-color-background-emphasis: rgb(255 255 255 / 0.1);
  --mm-color-focusring: #06c;
}

.mm-counter {
  display: block;
  padding-inline-start: 20px;
  float: right;
  color: var(--mm-color-text-dimmed);
}
[dir=rtl] .mm-counter {
  float: left;
}

:root {
  --mm-iconbar-size: 50px;
}

.mm-menu--iconbar-left .mm-panels,
.mm-menu--iconbar-left .mm-navbars {
  margin-left: var(--mm-iconbar-size);
}
.mm-menu--iconbar-right .mm-panels,
.mm-menu--iconbar-right .mm-navbars {
  margin-right: var(--mm-iconbar-size);
}

.mm-iconbar {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--mm-iconbar-size);
  overflow: hidden;
  box-sizing: border-box;
  border: 0 solid;
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center;
}
.mm-menu--iconbar-left .mm-iconbar, .mm-menu--iconbar-right .mm-iconbar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mm-menu--iconbar-left .mm-iconbar {
  border-right-width: 1px;
  left: 0;
}
.mm-menu--iconbar-right .mm-iconbar {
  border-left-width: 1px;
  right: 0;
}

.mm-iconbar__top,
.mm-iconbar__bottom {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mm-iconbar__top > *,
.mm-iconbar__bottom > * {
  box-sizing: border-box;
  display: block;
  padding: calc((var(--mm-iconbar-size) - var(--mm-lineheight)) / 2) 0;
}
.mm-iconbar__top a,
.mm-iconbar__top a:hover,
.mm-iconbar__bottom a,
.mm-iconbar__bottom a:hover {
  text-decoration: none;
}

.mm-iconbar__tab--selected {
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-iconpanel-size: 50px;
}

.mm-panel--iconpanel-0 {
  inset-inline-start: calc(0 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-1 {
  inset-inline-start: calc(1 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-2 {
  inset-inline-start: calc(2 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-3 {
  inset-inline-start: calc(3 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-4 {
  inset-inline-start: calc(4 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-first ~ .mm-panel {
  inset-inline-start: var(--mm-iconpanel-size);
}

.mm-menu--iconpanel .mm-panel--parent .mm-navbar,
.mm-menu--iconpanel .mm-panel--parent .mm-divider {
  opacity: 0;
}
.mm-menu--iconpanel .mm-panels > .mm-panel--parent {
  overflow-y: hidden;
  transform: unset;
}
.mm-menu--iconpanel .mm-panels > .mm-panel:not(.mm-panel--iconpanel-first):not(.mm-panel--iconpanel-0) {
  border-inline-start-width: 1px;
  border-inline-start-style: solid;
}

.mm-navbars {
  flex-shrink: 0;
}
.mm-navbars .mm-navbar {
  position: relative;
  padding-top: 0;
  border-bottom: none;
}
.mm-navbars--top {
  border-bottom: 1px solid var(--mm-color-border);
}
.mm-navbars--top .mm-navbar:first-child {
  padding-top: env(safe-area-inset-top);
}
.mm-navbars--bottom {
  border-top: 1px solid var(--mm-color-border);
}
.mm-navbars--bottom .mm-navbar:last-child {
  padding-bottom: env(safe-area-inset-bottom);
}

.mm-navbar__breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-start;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mm-navbar__breadcrumbs > * {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline-end: 6px;
}
.mm-navbar__breadcrumbs > a {
  text-decoration: underline;
}
.mm-navbar__breadcrumbs:not(:last-child) {
  padding-inline-end: 0;
}
.mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
  padding-inline-start: 0;
}

.mm-navbar__tab {
  padding: 0 10px;
  border: 1px solid transparent;
}
.mm-navbar__tab--selected {
  background: var(--mm-color-background);
}
.mm-navbar__tab--selected:not(:first-child) {
  border-inline-start-color: var(--mm-color-border);
}
.mm-navbar__tab--selected:not(:last-child) {
  border-inline-end-color: var(--mm-color-border);
}

.mm-navbars--top.mm-navbars--has-tabs {
  border-bottom: none;
}
.mm-navbars--top.mm-navbars--has-tabs .mm-navbar {
  background: var(--mm-color-background-emphasis);
}
.mm-navbars--top.mm-navbars--has-tabs .mm-navbar--tabs ~ .mm-navbar {
  background: var(--mm-color-background);
}
.mm-navbars--top.mm-navbars--has-tabs .mm-navbar:not(.mm-navbar--tabs):last-child {
  border-bottom: 1px solid var(--mm-color-border);
}
.mm-navbars--top .mm-navbar__tab {
  border-bottom-color: var(--mm-color-border);
}
.mm-navbars--top .mm-navbar__tab--selected {
  border-top-color: var(--mm-color-border);
  border-bottom-color: transparent;
}

.mm-navbars--bottom.mm-navbar--has-tabs {
  border-top: none;
}
.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar {
  background: var(--mm-color-background);
}
.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs,
.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs ~ .mm-navbar {
  background: var(--mm-color-background-emphasis);
}
.mm-navbars--bottom .mm-navbar__tab {
  border-top-color: var(--mm-color-border);
}
.mm-navbars--bottom .mm-navbar__tab--selected {
  border-bottom-color: var(--mm-color-border);
  border-top-color: transparent;
}

/**
 * The form.
 */
.mm-searchfield {
  display: flex;
  flex-grow: 1;
  height: var(--mm-navbar-size);
  padding: 0;
  overflow: hidden;
}

/**
 * The fieldset
 */
.mm-searchfield__input {
  display: flex;
  flex: 1;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.mm-searchfield__input input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: calc(var(--mm-navbar-size) * 0.7);
  min-height: auto;
  max-height: auto;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  line-height: calc(var(--mm-navbar-size) * 0.7);
  font: inherit;
  font-size: inherit;
}
.mm-searchfield__input input, .mm-searchfield__input input:hover, .mm-searchfield__input input:focus {
  background: var(--mm-color-background-highlight);
  color: var(--mm-color-text);
}
.mm-menu[class*=-contrast] .mm-searchfield__input input {
  border: 1px solid var(--mm-color-border);
}
.mm-searchfield__input input::-ms-clear {
  display: none;
}

/**
 * Submit and reset buttons.
 */
.mm-searchfield__btn {
  display: none;
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
}
.mm-searchfield--searching .mm-searchfield__btn {
  display: block;
}

/**
 * Cancel button.
 */
.mm-searchfield__cancel {
  display: block;
  position: relative;
  margin-inline-end: -100px;
  padding-inline-start: 5px;
  padding-inline-end: 20px;
  visibility: hidden;
  line-height: var(--mm-navbar-size);
  text-decoration: none;
  transition-property: visibility, margin;
}
.mm-searchfield--cancelable .mm-searchfield__cancel {
  visibility: visible;
  margin-inline-end: 0;
}

/**
 * The searchpanel
 */
.mm-panel--search {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border: none !important;
}

/**
 * Splash message
 */
.mm-panel__splash {
  padding: 20px;
}
.mm-panel--searching .mm-panel__splash {
  display: none;
}

/**
 * No results message
 */
.mm-panel__noresults {
  display: none;
  padding: 40px 20px;
  color: var(--mm-color-text-dimmed);
  text-align: center;
  font-size: 150%;
  line-height: 1.4;
}
.mm-panel--noresults .mm-panel__noresults {
  display: block;
}

:root {
  --mm-sectionindexer-size: 20px;
}

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: var(--mm-sectionindexer-size);
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: calc(-1 * var(--mm-sectionindexer-size));
  z-index: 5;
  transition-property: inset-inline-end;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.mm-sectionindexer a {
  color: var(--mm-color-text-dimmed);
  line-height: 1;
  text-decoration: none;
  display: block;
}
.mm-sectionindexer ~ .mm-panel {
  padding-inline-end: 0;
}
.mm-sectionindexer--active {
  right: 0;
}
.mm-sectionindexer--active ~ .mm-panel {
  padding-inline-end: var(--mm-sectionindexer-size);
}

.mm-menu--selected-hover .mm-listitem__text,
.mm-menu--selected-hover .mm-listitem__btn, .mm-menu--selected-parent .mm-listitem__text,
.mm-menu--selected-parent .mm-listitem__btn {
  transition-property: background-color;
}
@media (hover: hover) {
  .mm-menu--selected-hover .mm-listview:hover > .mm-listitem--selected:not(:hover) > .mm-listitem__text {
    background: none;
  }
  .mm-menu--selected-hover .mm-listitem__text:hover,
  .mm-menu--selected-hover .mm-listitem__btn:hover {
    background: var(--mm-color-background-emphasis);
  }
}
.mm-menu--selected-parent .mm-listitem__text,
.mm-menu--selected-parent .mm-listitem__btn {
  transition-delay: 0.2s;
}
@media (hover: hover) {
  .mm-menu--selected-parent .mm-listitem__text:hover,
  .mm-menu--selected-parent .mm-listitem__btn:hover {
    transition-delay: 0s;
  }
}
.mm-menu--selected-parent .mm-panel--parent .mm-listitem:not(.mm-listitem--selected-parent) > .mm-listitem__text {
  background: none;
}
.mm-menu--selected-parent .mm-listitem--selected-parent > .mm-listitem__text,
.mm-menu--selected-parent .mm-listitem--selected-parent > .mm-listitem__btn {
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-sidebar-collapsed-size: 50px;
  --mm-sidebar-expanded-size: var(--mm-max-size);
}

.mm-wrapper--sidebar-collapsed .mm-slideout {
  width: calc(100% - var(--mm-sidebar-collapsed-size));
  transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
}
[dir=rtl] .mm-wrapper--sidebar-collapsed .mm-slideout {
  transform: none;
}
.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-navbar,
.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-divider {
  opacity: 0;
}

.mm-wrapper--sidebar-expanded .mm-menu--sidebar-expanded {
  width: var(--mm-sidebar-expanded-size);
  border-right-width: 1px;
  border-right-style: solid;
}
.mm-wrapper--sidebar-expanded.mm-wrapper--opened {
  overflow: auto;
}
.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-wrapper__blocker {
  display: none;
}
.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout {
  width: calc(100% - var(--mm-sidebar-expanded-size));
  transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
}
[dir=rtl] .mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout {
  transform: none;
}

:root {
  --orange: #ef6e20;
  --white: #ffffff;
  --light-yellow: #faf8e3;
  --dark-blue: #43337f;
  --dark-blue-lighter: #383069;
  --gray: #6c6c6c;
  --grand-yellow: #f8bf57;
  --grand-orange: #f06e20;
  --black: #000000;
}

/* barlow-300 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 300;
  src: url(fonts/barlow-v12-latin_latin-ext-300.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/barlow-v12-latin_latin-ext-regular.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  src: url(fonts/barlow-v12-latin_latin-ext-italic.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  src: url(fonts/barlow-v12-latin_latin-ext-500.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-500italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: italic;
  font-weight: 500;
  src: url(fonts/barlow-v12-latin_latin-ext-500italic.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  src: url(fonts/barlow-v12-latin_latin-ext-600.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-600italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: italic;
  font-weight: 600;
  src: url(fonts/barlow-v12-latin_latin-ext-600italic.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: url(fonts/barlow-v12-latin_latin-ext-700.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-700italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  src: url(fonts/barlow-v12-latin_latin-ext-700italic.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--light-yellow);
}

.c-content__container {
  background: var(--white);
  margin-top: 100px;
  padding: 64px;
}

.c-button {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
  text-transform: uppercase;
  padding: 12px 30px;
  display: flex;
  width: fit-content;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 4px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}
.c-button:hover {
  background: var(--white);
  color: var(--orange);
}

.c-title {
  font-size: 40px;
  color: var(--dark-blue-lighter);
  letter-spacing: -0.8px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.3;
}
.c-title--small {
  font-size: 23px;
  line-height: 35px;
}
@media (width <= 767px) {
  .c-title {
    font-size: 32px;
  }
  .c-title--small {
    font-size: 21px;
  }
}

.mt-40 {
  margin-top: 40px;
}

#skip-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  z-index: 9999;
  font-size: 0.8rem;
}
#skip-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#skip-menu ul li {
  position: relative;
}
#skip-menu ul li a {
  position: absolute;
  top: 0;
  left: -9999px;
  padding: 10px;
  border: none;
  background-color: #fff;
  color: #000000;
  white-space: nowrap;
  font-size: 1rem;
}
#skip-menu ul li a:hover, #skip-menu ul li a:focus {
  background: #fff;
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 0;
  max-width: 1600px;
  padding: 0 calc(var(--bs-gutter-x) * 0.5);
  margin: 0 auto;
}
@media (width <= 1599px) {
  .container {
    max-width: 1320px;
  }
}
@media (width <= 1399px) {
  .container {
    max-width: 1140px;
  }
}
@media (width <= 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (width <= 991px) {
  .container {
    max-width: 720px;
  }
}
@media (width <= 767px) {
  .container {
    max-width: 540px;
  }
}
@media (width <= 576px) {
  .container {
    width: 100%;
    --bs-gutter-x: 40px;
  }
}

@media (width >= 1200px) {
  #mm-clone-main-menu {
    display: none;
  }
}
@media (width < 1200px) {
  #main-menu {
    display: none;
  }
}
.c-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-form__input-row {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}
.c-form__input-row--full {
  grid-template-columns: 1fr;
}
@media (width <= 767px) {
  .c-form__input-row {
    grid-template-columns: 1fr;
  }
}
.c-form__input {
  border: 1px solid var(--gray);
  border-radius: 3px;
  padding: 12px 20px;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1;
  width: 100%;
  color: var(--black);
}
.c-form__input::placeholder {
  color: var(--black);
}
.c-form__textarea {
  padding: 12px 20px;
  width: 100%;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  color: var(--black);
  min-height: 370px;
}
.c-form__textarea::placeholder {
  color: var(--black);
}
@media (1399px <= width <= 1599px) {
  .c-form__textarea {
    min-height: 350px;
  }
}
.c-form__submit {
  cursor: pointer;
}

.wpcf7 form .wpcf7-response-output {
  border: 0;
  padding: 15px 0;
}

.wpcf7-form.invalid .wpcf7-response-output {
  color: var(--grand-orange);
}

.wpcf7-not-valid-tip {
  padding-top: 5px;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-acceptance a {
  color: var(--dark-blue);
  text-decoration: none;
}
.wpcf7-acceptance a:hover {
  color: var(--grand-orange);
}

@media (width <= 1599px) {
  .c-single .c-title {
    font-size: 32px;
    line-height: 36px;
  }
}
.c-single__container {
  background: var(--white);
  padding: 32px 64px;
  margin-top: 100px;
  line-height: 1.5;
}
@media (width <= 1399px) {
  .c-single__container {
    margin-top: 0;
    padding-top: 64px;
  }
}
.c-single__container p {
  margin-bottom: 20px;
}
.c-single__container ul, .c-single__container ol {
  padding-left: 20px;
  margin: 0 0 20px;
}
.c-single__container ul li, .c-single__container ol li {
  margin-bottom: 8px;
}
.c-single__container h1, .c-single__container h2, .c-single__container h3, .c-single__container h4, .c-single__container h5, .c-single__container h6 {
  color: var(--dark-blue-lighter);
  letter-spacing: -0.8px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}
.c-single__container h2 {
  font-size: 40px;
}
.c-single__container h3 {
  font-size: 36px;
}
.c-single__container h4 {
  font-size: 28px;
}
.c-single__container h5 {
  font-size: 24px;
}
.c-single__container h6 {
  font-size: 20px;
}
@media (width <= 767px) {
  .c-single__container h2 {
    font-size: 32px;
  }
  .c-single__container h3 {
    font-size: 28px;
  }
  .c-single__container h4 {
    font-size: 22px;
  }
  .c-single__container h5 {
    font-size: 18px;
  }
  .c-single__container h6 {
    font-size: 16px;
  }
}
.c-single__container ul {
  list-style: none;
  padding-left: 0;
}
.c-single__container ul li {
  padding: 8px 0 0 32px;
}
.c-single__container ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(img/check.png) no-repeat;
  display: inline-flex;
  position: relative;
  top: 10px;
  margin-left: -32px;
  margin-right: 8px;
}
@media (width <= 991px) {
  .c-single__container {
    padding: 64px 24px 32px;
  }
}
.c-single .c-hero__container {
  display: grid;
  grid-template-columns: 500px auto;
  gap: 64px;
}
@media (992px <= width <= 1399px) {
  .c-single .c-hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (768px <= width <= 991px) {
  .c-single .c-hero__container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .c-single .c-hero__container .c-hero__title {
    max-width: 100%;
  }
}
@media (width <= 767px) {
  .c-single .c-hero__container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .c-single .c-hero__container .c-hero__title {
    max-width: 100%;
  }
}
.c-single .c-hero__image {
  position: relative;
}
.c-single .c-hero__image img {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width <= 767px) {
  .c-single .c-hero__image img {
    border-radius: 0 40px 0 0;
  }
}

.c-blog__container {
  background: var(--white);
  padding: 64px;
  margin-top: 100px;
}
@media (width <= 991px) {
  .c-blog__container {
    padding: 64px 24px 32px;
  }
}
.c-blog__news {
  display: grid;
  grid-template-columns: 440px auto;
  gap: 20px;
  margin-bottom: 40px;
}
.c-blog__news-image {
  border-radius: 0 40px 0 0;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: auto;
}
.c-blog__news-image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
}
.c-blog__news-content {
  margin-top: auto;
}
.c-blog__news-excerpt {
  display: flex;
  flex-direction: column;
  height: 80%;
}
.c-blog__news-excerpt .c-title {
  margin-bottom: 0;
}
.c-blog__news-excerpt .c-title a {
  color: var(--dark-blue);
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.c-blog__news-excerpt .c-title a:hover {
  color: var(--orange);
}
@media (width <= 991px) {
  .c-blog__news {
    grid-template-columns: 1fr;
  }
  .c-blog__news-image {
    min-height: unset;
  }
}
.c-blog__news:hover .c-blog__news-image img {
  transform: scale(1.1);
}
.c-blog .c-hero__container {
  display: grid;
  grid-template-columns: 500px auto;
  gap: 64px;
}
.c-blog .c-hero__image {
  position: relative;
}

.c-hero {
  background: linear-gradient(0deg, rgb(250, 248, 227) 0%, rgb(250, 248, 227) 40%, rgb(255, 255, 255) 40%, rgb(255, 255, 255) 100%);
}
.c-hero__container {
  position: relative;
}
.c-hero__title {
  font-size: 55px;
  color: var(--dark-blue);
  margin-bottom: 24px;
  max-width: 480px;
  font-weight: 600;
}
@media (width <= 1399px) {
  .c-hero__title {
    max-width: 400px;
    font-size: 36px;
    margin-bottom: 0;
  }
}
.c-hero__description {
  font-size: 22px;
  max-width: 300px;
}
.c-hero__content {
  position: relative;
  z-index: 10;
  padding: 60px 0;
  min-height: 450px;
}
@media (1200px <= width <= 1399px) {
  .c-hero__content {
    padding: 60px 0 0;
  }
}
@media (max-width: 1199px) {
  .c-hero__content {
    min-height: unset;
    padding: 24px 0;
  }
}
.c-hero__image {
  position: absolute;
  z-index: 0;
  right: 20px;
  top: 0;
}
.c-hero__image img {
  display: block;
  border-radius: 0 100px 0 0;
  max-width: 100%;
  height: auto;
}
@media (1400px <= width <= 1599px) {
  .c-hero__image {
    max-width: 830px;
  }
}
@media (1200px <= width <= 1399px) {
  .c-hero__image {
    max-width: 680px;
  }
}
@media (max-width: 1199px) {
  .c-hero__image {
    position: relative;
    right: unset;
    border-radius: 0 48px 0 0;
  }
  .c-hero__image img {
    max-width: 100%;
    height: auto;
  }
}
.c-hero__image::after {
  content: "";
  width: 82%;
  max-width: 820px;
  height: 16px;
  background: var(--orange);
  display: block;
  position: absolute;
  right: 0;
  bottom: -16px;
}
.c-hero__video {
  position: relative;
  margin-top: 40px;
  max-width: 648px;
}
.c-hero__video::after {
  content: "";
  width: 86%;
  max-width: 820px;
  height: 16px;
  background: var(--grand-yellow);
  display: block;
  position: absolute;
  left: 0;
  top: -16px;
}
@media (1400px <= width <= 1599px) {
  .c-hero__video::after {
    width: calc(100% - 198px);
  }
}
@media (1199px <= width <= 1399px) {
  .c-hero__video::after {
    width: calc(100% - 228px);
  }
}
@media (width <= 1199px) {
  .c-hero__video::after {
    width: 100%;
  }
}
.c-hero__video video {
  border-radius: 0 0 0 100px;
  overflow: hidden;
}
@media (width <= 991px) {
  .c-hero__video video {
    max-width: 100%;
    height: auto;
  }
}

.b-text-media.page {
  margin-top: 100px;
}
@media (1200px <= width <= 1399px) {
  .b-text-media.page {
    margin-top: 0;
  }
}
.b-text-media__container {
  background: var(--white);
  padding: 48px 64px 72px;
}
@media (width <= 767px) {
  .b-text-media__container {
    padding: 24px 15px 48px;
  }
}
.b-text-media p {
  margin-bottom: 20px;
}
.b-text-media ol, .b-text-media ul {
  padding-left: 20px;
}
.b-text-media a {
  color: var(--dark-blue);
  text-decoration: none;
  transition: color 250ms ease-in-out;
}
.b-text-media a:hover {
  color: var(--grand-orange);
}
.b-text-media .c-button {
  color: var(--white);
}
.b-text-media__description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray);
}
.b-text-media__description ul {
  list-style: none;
  padding-left: 0;
}
.b-text-media__description ul li {
  padding: 8px 0;
}
.b-text-media__description ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(img/check.png) no-repeat;
  display: inline-flex;
  position: relative;
  top: 6px;
  margin-right: 10px;
}
.b-text-media__description h3 {
  font-size: 28px;
  line-height: 1.6;
  color: var(--dark-blue-lighter);
  font-weight: 500;
  margin-bottom: 24px;
}
.b-text-media__description h4 {
  font-size: 24px;
  line-height: 1.6;
  color: var(--dark-blue-lighter);
  font-weight: 500;
  margin-bottom: 24px;
}
.b-text-media__row {
  display: grid;
  grid-template-columns: 9fr 3fr;
  gap: 48px;
}
.b-text-media__row--full {
  grid-template-columns: 1fr;
}
@media (992px <= width <= 1399px) {
  .b-text-media__row {
    grid-template-columns: 5fr 3fr;
  }
}
@media (width <= 991px) {
  .b-text-media__row {
    grid-template-columns: 1fr;
  }
}
.b-text-media__image {
  border-radius: 0 0 0 40px;
  overflow: hidden;
  transform: translateY(-200px);
  margin-bottom: -100px;
}
.b-text-media__image img {
  max-width: 300px;
  height: auto;
}
@media (width <= 991px) {
  .b-text-media__image {
    transform: translateY(0);
    margin-bottom: -40px;
  }
  .b-text-media__image img {
    max-width: 100%;
  }
}

.b-text-two-columns {
  margin-top: 100px;
  font-size: 16px;
  line-height: 1.5;
}
@media (1200px <= width <= 1399px) {
  .b-text-two-columns {
    margin-top: 0;
  }
}
.b-text-two-columns__container {
  background: var(--white);
  padding: 64px 64px 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (width <= 991px) {
  .b-text-two-columns__container {
    padding: 24px 15px 48px;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.b-text-two-columns__container p {
  margin-bottom: 24px;
}
.b-text-two-columns__container ul {
  padding-left: 20px;
}
@media (width <= 767px) {
  .b-text-two-columns {
    margin-top: 32px;
  }
}

.b-timeline__container {
  background: var(--white);
  padding: 64px 64px 32px;
}
@media (width <= 991px) {
  .b-timeline__container {
    padding: 24px 15px 48px;
  }
}
.b-timeline__wrapper {
  width: 90%;
  position: relative;
  margin: 48px auto;
}
.b-timeline__wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ccc;
  transform: translateX(-50%);
}
@media (width <= 991px) {
  .b-timeline__wrapper {
    width: 100%;
  }
  .b-timeline__wrapper::before {
    left: 30px;
  }
}
.b-timeline__item {
  display: grid;
  grid-template-columns: 1fr 100px 1fr; /* lewa - środek - prawa */
  align-items: start;
  margin: 40px 0;
  gap: 24px;
}
.b-timeline__item-title {
  padding: 15px 24px;
  background: var(--grand-yellow);
  color: var(--white);
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  min-height: 100px;
  display: flex;
  align-items: center;
  position: relative;
}
.b-timeline__item-desc {
  line-height: 1.5;
}
@media (width <= 991px) {
  .b-timeline__item {
    grid-template-columns: 60px auto auto;
    gap: 0;
  }
}
.b-timeline__content--left .b-timeline__item-title::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--grand-yellow);
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
@media (width <= 991px) {
  .b-timeline__content--left {
    margin-left: 40px;
  }
  .b-timeline__content--left .b-timeline__item-title::after {
    border-right: 15px solid var(--grand-yellow);
    border-left: unset;
    left: -15px;
    top: 25px;
    right: unset;
  }
}
.b-timeline__content--right .b-timeline__item-title {
  background: var(--grand-orange);
}
.b-timeline__content--right .b-timeline__item-title::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--grand-orange);
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}
.b-timeline__content--right.featured .b-timeline__item-title {
  background: var(--dark-blue);
}
.b-timeline__content--right.featured .b-timeline__item-title::before {
  border-right: 15px solid var(--dark-blue);
}
@media (width <= 991px) {
  .b-timeline__content {
    order: 2;
    gap: 0;
  }
  .b-timeline__content .b-timeline__item-title::before {
    top: 25px;
  }
}
.b-timeline__dot {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--dark-blue);
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  border: 5px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin: 0 auto;
}
.b-timeline__dot img {
  width: 60px;
  height: auto;
  filter: invert(1);
}
@media (width <= 991px) {
  .b-timeline__dot {
    order: 1;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .b-timeline__dot img {
    width: 32px;
    height: auto;
  }
}

.b-cards__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  padding: 64px;
  gap: 32px;
}
@media (width <= 767px) {
  .b-cards__container {
    padding: 40px 15px;
    grid-template-columns: 1fr;
  }
}
.b-cards__item {
  background: var(--light-yellow);
  display: flex;
  padding: 24px;
  gap: 32px;
  flex-direction: column;
  align-items: flex-start;
}
.b-cards__item img {
  height: 101px;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
}
.b-cards__item ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.b-cards__item-desc {
  line-height: 1.5;
}
.b-cards__item-desc p {
  margin-bottom: 20px;
}
.b-cards .c-title {
  margin-bottom: 0;
}

.b-circle__container {
  background: var(--white);
  padding: 40px 15px 40px;
  margin-top: 100px;
}
@media (1200px <= width <= 1399px) {
  .b-circle__container {
    margin-top: 0;
  }
}

.circle-container {
  position: relative;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  margin: 100px auto;
}
@media (992px <= width <= 1199px) {
  .circle-container {
    width: 400px;
    height: 400px;
  }
}
@media (width <= 991px) {
  .circle-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
  }
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: var(--white);
  text-align: center;
}
.center::before {
  content: "";
  position: absolute;
  border: 5px solid var(--gray);
  width: 500px;
  height: 500px;
  display: block;
  border-radius: 50%;
}
@media (992px <= width <= 1199px) {
  .center {
    width: 180px;
    height: 180px;
    font-size: 22px;
  }
  .center::before {
    width: 300px;
    height: 300px;
  }
}
@media (width <= 991px) {
  .center {
    display: none;
  }
}

.item {
  position: absolute;
  transform: translate(-50%, -50%);
}
@media (width <= 991px) {
  .item {
    position: relative;
    transform: unset;
    margin-bottom: 15px;
  }
}

.item a {
  display: block;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
.item a:hover {
  color: var(--orange);
}
@media (width <= 991px) {
  .item a {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;
    text-align: left;
  }
}

.item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  border: 5px solid var(--white);
}
@media (992px <= width <= 1199px) {
  .item img {
    width: 80px;
    height: 80px;
  }
}

.item span {
  position: absolute;
  white-space: normal;
  width: 180px;
  font-size: 20px;
  line-height: 1.3;
}
@media (1200px <= width <= 1599px) {
  .item span {
    font-size: 18px;
  }
}
@media (992px <= width <= 1199px) {
  .item span {
    width: 120px;
    font-size: 14px;
    line-height: 1.2;
  }
}
@media (width <= 991px) {
  .item span {
    position: relative;
    transform: unset;
    width: auto;
    bottom: unset;
  }
}

.b-contact__container {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 40px;
  margin-top: 100px;
  padding: 64px;
  background: var(--white);
}
@media (1200px <= width <= 1399px) {
  .b-contact__container {
    margin-top: 0;
  }
}
@media (width <= 767px) {
  .b-contact__container {
    padding: 40px 15px;
    grid-template-columns: 1fr;
  }
}
.b-contact__desc {
  margin-bottom: 40px;
}
.b-contact__desc p {
  margin-bottom: 20px;
}
.b-contact__desc a {
  color: var(--dark-blue);
  text-decoration: none;
}

.b-news {
  margin-top: 80px;
  margin-bottom: 40px;
}
.b-news__container {
  padding: 64px;
  background: var(--white);
}
.b-news__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  height: 100%;
}
.b-news__wrapper .c-blog__news {
  display: flex;
  flex-direction: column;
}
@media (768px <= width <= 1199px) {
  .b-news__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 767px) {
  .b-news__wrapper {
    grid-template-columns: 1fr;
  }
}

.b-offers__container {
  background: var(--white);
  padding: 32px 64px 64px;
  margin: 60px auto;
}
.b-offers__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (width <= 991px) {
  .b-offers__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 539px) {
  .b-offers__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.b-offers__item a {
  text-decoration: none;
}
.b-offers__item-image {
  overflow: hidden;
  border-bottom-left-radius: 40px;
  height: 215px;
  display: flex;
}
.b-offers__item-image img {
  max-width: 100%;
  transition: all 300ms ease-in-out;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
.b-offers__item-title .c-title {
  margin-top: 10px;
  margin-bottom: 0;
}
.b-offers__item:hover .b-offers__item-image img {
  transform: scale(1.1);
}

/*# sourceMappingURL=app.css.map*/