@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  color: #404040;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--body-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

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

@font-face {
  font-family: "ko-icon";
  src: url("../font/ko-icon.eot?28316692");
  src: url("../font/ko-icon.eot?28316692#iefix") format("embedded-opentype"), url("../font/ko-icon.woff2?28316692") format("woff2"), url("../font/ko-icon.woff?28316692") format("woff"), url("../font/ko-icon.ttf?28316692") format("truetype"), url("../font/ko-icon.svg?28316692#ko-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before, [class*=" icon-"]:before,
[class^=icons-]::after, [class*=" icons-"]:after {
  font-family: "ko-icon", sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: auto;
  margin-right: 0;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-left:before {
  content: "\e800";
} /* '' */
.icon-down:before {
  content: "\e801";
} /* '' */
.icon-right:before {
  content: "\e802";
} /* '' */
.icon-up:before {
  content: "\e803";
} /* '' */
.icon-left-outline:before {
  content: "\e804";
} /* '' */
.icon-play-outline:before {
  content: "\e805";
} /* '' */
.icon-randevu:before {
  content: "\e806";
} /* '' */
.icon-right-outline:before {
  content: "\e807";
} /* '' */
.icon-search:before {
  content: "\e808";
} /* '' */
.icon-yeniarac:before {
  content: "\e809";
} /* '' */
.icon-ikinciel:before {
  content: "\e80a";
} /* '' */
.icon-down-open:before {
  content: "\e80b";
} /* '' */
.icon-cancel:before {
  content: "\e80c";
} /* '' */
.icon-up-open:before {
  content: "\e80d";
} /* '' */
.icon-youtube-play:before {
  content: "\f16a";
} /* '' */
.icon-instagram:before {
  content: "\f16d";
} /* '' */
.icon-facebook:before {
  content: "\f30c";
} /* '' */
.icon-linkedin:before {
  content: "\f318";
} /* '' */
.cc-window {
  background-color: var(--windowBg);
  box-sizing: border-box;
  padding: var(--windowPadding, 25px 15px);
  z-index: 99999;
  border: var(--windowBorder, 0);
  overflow: auto;
  filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.3));
}

.cc-window *,
.cc-modal-window * {
  font-family: var(--fontFamily, "Roboto", sans-serif, Arial, sans-serif);
}

.cc-window.cc-content-right {
  text-align: right;
}

.cc-window.cc-content-left {
  text-align: left;
}

.cc-window.cc-content-center {
  text-align: center;
}

/* Position */
.cc-window.cc-pos-top,
.cc-window.cc-pos-top-left,
.cc-window.cc-pos-top-right,
.cc-window.cc-pos-bottom,
.cc-window.cc-pos-bottom-left,
.cc-window.cc-pos-bottom-right,
.cc-window.cc-pos-bottom-center,
.cc-window.cc-pos-top-center,
#cc-btn-dismiss {
  position: fixed;
}

.cc-window.cc-pos-top {
  --windowMarginTop: 0;
  top: var(--windowMarginTop);
  left: 0;
  width: 100%;
}

.cc-window.cc-pos-top-center {
  top: var(--windowMarginTop, 24px);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.cc-window.cc-pos-top-left,
.cc-window.cc-pos-top-right,
.cc-window.cc-pos-bottom-left,
.cc-window.cc-pos-bottom-right,
.cc-window.cc-pos-bottom-center,
.cc-window.cc-pos-top-center {
  border-radius: var(--windowRadius, 10px);
  width: var(--windowWidth, 500px);
}

.cc-window.cc-pos-top-left,
.cc-window.cc-pos-top-right,
#cc-btn-dismiss.cc-pos-top-right,
#cc-btn-dismiss.cc-pos-top-left {
  top: var(--windowMarginTop, 24px);
}

.cc-window.cc-pos-top-left,
#cc-btn-dismiss.cc-pos-top-left {
  left: var(--windowMarginLeft, 24px);
}

.cc-window.cc-pos-top-right,
#cc-btn-dismiss.cc-pos-top-right {
  left: auto;
  right: var(--windowMarginRight, 24px);
}

.cc-window.cc-pos-bottom {
  --windowMarginBottom: 0;
  bottom: var(--windowMarginBottom, 24px);
  left: 0;
  width: 100%;
}

.cc-window.cc-pos-bottom-center {
  bottom: var(--windowMarginBottom, 24px);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.cc-window.cc-pos-bottom-left,
.cc-window.cc-pos-bottom-right,
#cc-btn-dismiss.cc-pos-bottom-left,
#cc-btn-dismiss.cc-pos-bottom-right {
  bottom: var(--windowMarginBottom, 24px);
}

.cc-window.cc-pos-bottom-left,
#cc-btn-dismiss.cc-pos-bottom-left {
  left: var(--windowMarginLeft, 24px);
}

.cc-window.cc-pos-bottom-right,
#cc-btn-dismiss.cc-pos-bottom-right {
  left: auto;
  right: var(--windowMarginRight, 24px);
}

/* Content */
.cc-window .cc-window-title {
  font-size: var(--titleFontSize, 14px);
  font-weight: var(--titleFontWeight, 600);
  color: var(--titleTextColor, #001D35);
  padding: var(--titlePadding, 24px 24px 0 24px);
  margin-bottom: 1rem;
  display: none;
}

.cc-window .cc-window-message {
  padding: var(--messagePadding, 0px 0px 10px 0px);
  line-height: var(--messageLineHeight, 1.2rem);
}

.cc-window .cc-window-message,
.cc-window .cc-window-message a,
.cc-window .cc-window-message p {
  font-size: var(--messageFontSize, 12px);
  font-weight: var(--messageFontWeight, 400);
  color: var(--messageTextColor, #ffffff);
  line-height: var(--messageLineHeight, 1.2rem);
}

.cc-window .cc-window-message p {
  padding: 0 0 0.5rem 0;
}

.cc-window .cc-window-message a,
.cc-window .cc-window-message a:hover,
.cc-window .cc-window-message a:visited {
  color: var(--messageLinkColor, #ffffff);
  text-decoration: var(--messageLinkDecoration, underline);
  font-weight: var(--messageLinkFontWeight, 600);
}

/* Settings */
#cc-window-settings .cc-window-settings-header {
  margin-bottom: 2rem;
}

#cc-window-settings .cc-window-settings-footer {
  margin-top: 2rem;
}

#cc-window-settings .cc-window-settings-cookie {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid var(--settingsSeparatorColor, #eee);
  gap: 3rem;
  padding: 16px 0;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-content {
  width: 100%;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-title {
  font-size: var(--settingsTitleSize, 14px);
  font-weight: var(--settingsTitleWidth, 600);
  margin-bottom: 0.5rem;
  user-select: none;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-title-dropdown {
  cursor: pointer;
  display: flex;
  gap: 1rem;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc {
  width: 100%;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc * {
  font-size: var(--settingsFontSize, 14px);
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc p {
  margin-bottom: 0.5rem;
}

/* Buttons */
.cc-window .cc-window-buttons,
.cc-modal-window .cc-window-settings-buttons {
  text-align: var(--buttonsAlign, center);
  padding: var(--buttonsPadding, 10px 10px);
}

.cc-window .cc-window-buttons button,
.cc-modal-window .cc-window-settings-buttons button {
  display: initial !important;
  font-size: var(--btnFontSize, 12px);
  font-weight: var(--btnFontWeight, 600);
  line-height: 1;
  margin: var(--btnMargin, 10px 2px 0 2px);
  padding: var(--btnPadding, 12px 12px 8px);
  border-radius: var(--btnRadius, 5px);
  cursor: pointer;
  outline: none;
  letter-spacing: 0;
}

.cc-window .cc-window-buttons button.cc-btn-accept {
  background-color: var(--btnAcceptBg, #000);
  color: var(--btnAcceptTextColor, #ffffff);
  border: var(--btnAcceptBorder, 0);
}

.cc-window .cc-window-buttons button.cc-btn-accept:hover {
  background-color: var(--btnAcceptBgHover, #f6f6f6);
  color: var(--btnAcceptTextColorHover, #333);
}

.cc-window .cc-window-buttons button.cc-btn-reject {
  background-color: var(--btnRejectBg, #ffffff);
  color: var(--btnRejectTextColor, #333);
  border: var(--btnRejectBorder, 0);
}

.cc-window .cc-window-buttons button.cc-btn-reject:hover {
  background-color: var(--btnRejectBgHover, #f6f6f6);
  color: var(--btnRejectTextColorHover, #333);
}

.cc-window .cc-window-buttons button.cc-btn-info {
  background-color: var(--btnInfoBg, #000);
  color: var(--btnInfoTextColor, #ffffff);
  border: var(--btnInfoBorder, 0);
}

.cc-window .cc-window-buttons button.cc-btn-info:hover {
  background-color: var(--btnInfoBgHover, #f6f6f6);
  color: var(--btnInfoTextColorHover, #333);
}

.cc-window .cc-window-buttons button.cc-btn-settings {
  background-color: var(--btnSettingsBg, #9E9E9E);
  color: var(--btnSettingsTextColor, #ffffff);
  border: var(--btnSettingsBorder, 0);
}

.cc-window .cc-window-buttons button.cc-btn-settings:hover {
  background-color: var(--btnSettingsBgHover, #f6f6f6);
  color: var(--btnSettingsTextColorHover, #333);
}

.cc-window-settings-buttons button.cc-btn-settings-select {
  background-color: var(--btnSettingsSelectBg, transparent);
  color: var(--btnSettingsSelectTextColor, #424242);
  border: var(--btnSettingsSelectBorder, 0);
}

.cc-window-settings-buttons button.cc-btn-settings-select:hover {
  background-color: var(--btnSettingsSelectBgHover, #E0E0E0);
}

.cc-window-settings-buttons button.cc-btn-settings-accept {
  background-color: var(--btnSettingsAcceptBg);
  color: var(--btnSettingsAcceptTextColor, #ffffff);
  border: var(--btnSettingsAcceptBorder, 0);
}

.cc-window-settings-buttons button.cc-btn-settings-accept:hover {
  background-color: var(--btnSettingsAcceptBgHover, #1B5E20);
}

#cc-btn-dismiss {
  font-family: var(--fontFamily, "Open Sans", Arial, sans-serif);
  background-color: var(--btnDismissBg, #ddd);
  color: var(--btnDismissTextColor, #000);
  border: var(--btnDismissBorder, 0);
  font-size: var(--btnDismissFontSize, 12px);
  font-weight: var(--btnDismissFontWeight, 400);
  margin: 2rem 0.3rem 0 0.3rem;
  padding: var(--btnDismissPadding, 10px 12px);
  border-radius: var(--btnDismissRadius, 24px);
  cursor: pointer;
  outline: none;
  z-index: 99999;
  filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.2));
  opacity: 0.4;
}

#cc-btn-dismiss:hover {
  opacity: 1;
}

/* Modal https://www.w3schools.com/howto/howto_css_modals.asp */
/* The Modal (background) */
.cc-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.cc-modal-window {
  background-color: var(--popupBg, #fff);
  color: var(--popupTextColor, #333);
  margin: 10vh auto; /* 15% from the top and centered */
  border: var(--windowBorder, 0);
  filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.3));
  /*width: 80%;*/
  width: var(--popupWidth, 600px);
  border-radius: var(--popupRadius, 24px);
  padding: var(--windowPadding, 24px);
}

.cc-modal-content {
  color: var(--popupTextColor, #001D35);
  padding: var(--titlePadding, 0 24px 24px 24px);
  font-size: var(--messageFontSize, 12px);
  font-weight: var(--messageFontWeight, 400);
  line-height: var(--messageLineHeight, 1.2rem);
  margin-top: 24px;
  margin-bottom: 24px;
}

.cc-modal-window .cc-modal-content h2 {
  font-size: var(--titleFontSize, 16px);
  font-weight: var(--titleFontWeight, 600);
  color: var(--titleTextColor, #001D35);
  margin-bottom: 1rem;
}

.cc-modal-window .cc-modal-content p {
  padding: 0 0 0.5rem 0;
  font-size: var(--messageFontSize, 14px);
  line-height: var(--messageLineHeight, 1.2rem);
}

/* Switch https://www.w3schools.com/howto/howto_css_switch.asp */
.cc-modal-window .cc-modal-content .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
}

.cc-modal-window .cc-modal-content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-modal-window .cc-modal-content .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #C62828;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.cc-modal-window .cc-modal-content .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.cc-modal-window .cc-modal-content input:checked + .slider {
  background-color: #1b5e20;
}

.cc-modal-window .cc-modal-content input:disabled + .slider {
  background-color: #ccc;
}

.cc-modal-window .cc-modal-content input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

.cc-modal-window .cc-modal-content .slider.round {
  border-radius: 34px;
}

.cc-modal-window .cc-modal-content .slider.round:before {
  border-radius: 50%;
}

/* The Close Button */
.cc-modal-close {
  color: var(--btnCloseColor, #aaa);
  padding: 0 12px 12px 0;
  text-align: right;
  font-size: 22px;
  font-weight: bold;
}

.cc-modal-close:hover,
.cc-modal-close:focus {
  color: var(--btnCloseColorHover, #000);
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .cc-window.cc-pos-top-left,
  .cc-window.cc-pos-bottom-left,
  .cc-window.cc-pos-bottom,
  .cc-window.cc-pos-bottom-center,
  .cc-window.cc-pos-top-center {
    width: 100%;
    min-width: 100%;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .cc-window.cc-pos-top-right,
  .cc-window.cc-pos-bottom-right {
    width: min(var(--windowWidth, 500px), 100vw - 32px);
    min-width: 0;
    left: auto;
    right: var(--windowMarginRight, 16px);
  }
  .cc-window.cc-pos-top-left,
  .cc-window.cc-pos-top-center {
    top: 0;
    --windowMarginTop: 0;
  }
  .cc-window.cc-pos-top-right {
    top: var(--windowMarginTop, 16px);
  }
  .cc-window.cc-pos-bottom-left,
  .cc-window.cc-pos-bottom-center {
    bottom: 0;
    --windowMarginBottom: 0;
  }
  .cc-window.cc-pos-bottom-right {
    bottom: var(--windowMarginBottom, 16px);
  }
  .cc-modal-window {
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 0;
  }
}
/* Animations */
@keyframes cc-window-animation-in-top {
  from {
    top: -80vh;
    visibility: visible;
  }
  to {
    top: var(--windowMarginTop, 24px);
    visibility: visible;
  }
}
@keyframes cc-window-animation-out-top {
  from {
    top: var(--windowMarginTop, 24px);
  }
  to {
    top: -120vh;
  }
}
@keyframes cc-window-animation-in-bottom {
  from {
    bottom: -80vh;
    visibility: visible;
  }
  to {
    bottom: var(--windowMarginBottom, 24px);
    visibility: visible;
  }
}
@keyframes cc-window-animation-out-bottom {
  from {
    bottom: var(--windowMarginBottom, 24px);
  }
  to {
    bottom: -120vh;
  }
}
.cc-window.cc-animation-in.cc-pos-top,
.cc-window.cc-animation-in.cc-pos-top-left,
.cc-window.cc-animation-in.cc-pos-top-right,
.cc-window.cc-animation-in.cc-pos-top-center {
  animation-name: cc-window-animation-in-top;
  visibility: hidden;
  animation-duration: var(--animationDuration, 1s);
  animation-delay: var(--animationDelay, 0.1s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.cc-window.cc-animation-out.cc-pos-top,
.cc-window.cc-animation-out.cc-pos-top-left,
.cc-window.cc-animation-out.cc-pos-top-right,
.cc-window.cc-animation-out.cc-pos-top-center {
  animation-name: cc-window-animation-out-top;
  animation-duration: var(--animationDuration, 1s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.cc-window.cc-animation-in.cc-pos-bottom,
.cc-window.cc-animation-in.cc-pos-bottom-left,
.cc-window.cc-animation-in.cc-pos-bottom-right,
.cc-window.cc-animation-in.cc-pos-bottom-center {
  animation-name: cc-window-animation-in-bottom;
  visibility: hidden;
  animation-duration: var(--animationDuration, 1s);
  animation-delay: var(--animationDelay, 0.1s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.cc-window.cc-animation-out.cc-pos-bottom,
.cc-window.cc-animation-out.cc-pos-bottom-left,
.cc-window.cc-animation-out.cc-pos-bottom-right,
.cc-window.cc-animation-out.cc-pos-bottom-center {
  animation-name: cc-window-animation-out-bottom;
  animation-duration: var(--animationDuration, 1s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

:root {
  --bs-primary: #ca9f70;
  --body-bg: #fff;
  --body-page-bg: #f4f2f3;
  --menu-border: 888, 888, 888;
  --section-bg: #f8f9fa;
  --footer-bg: #ffffff;
  --footer-bg2: #ca9f70;
  --filter-border: #e5e5e5;
  --windowBg: #111111;
  --titleTextColor: #111111;
  --messageTextColor: rgba(255, 255, 255, 0.92);
  --messageLinkColor: #ca9f70;
  --messageLinkColorHover: rgb(83.5422168868%, 70.1896758703%, 55.5950380152%);
  --settingsSeparatorColor: rgba(255, 255, 255, 0.18);
  --settingsTitleColor: #111111;
  --settingsFontColor: #2a2a2a;
  --btnAcceptBg: #ca9f70;
  --btnAcceptTextColor: #ffffff;
  --btnAcceptBgHover: #a8845d;
  --btnAcceptTextColorHover: #ffffff;
  --btnRejectBg: #ffffff;
  --btnRejectTextColor: #111111;
  --btnRejectBgHover: #f8f9fa;
  --btnRejectTextColorHover: #111111;
  --btnSettingsBg: rgba(255, 255, 255, 0.14);
  --btnSettingsTextColor: #ffffff;
  --btnSettingsBgHover: rgba(255, 255, 255, 0.24);
  --btnSettingsTextColorHover: #ffffff;
  --btnSettingsSelectTextColor: #2a2a2a;
  --btnSettingsSelectBgHover: #f8f9fa;
  --btnSettingsAcceptBg: #ca9f70;
  --btnSettingsAcceptBgHover: #a8845d;
  --btnSettingsAcceptTextColor: #ffffff;
  --btnDismissBg: #ffffff;
  --btnDismissTextColor: #111111;
  --btnDismissBgHover: #ca9f70;
  --btnDismissTextColorHover: #ffffff;
  --popupBg: #ffffff;
  --popupTextColor: #2a2a2a;
  --popupTitleColor: #111111;
  --btnCloseColor: #999999;
  --btnCloseColorHover: #111111;
  --header-height: 105px;
  --header-height-sticky: 77px;
  --ko-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ko-duration: 0.45s;
  --ko-duration-fast: 0.3s;
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  :root {
    --header-height: 96px;
    --header-height-sticky: 72px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --header-height: 80px;
    --header-height-sticky: 80px;
  }
}
html {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  font-size: 1rem;
  background-color: var(--body-bg);
  color: #2a2a2a;
  height: 100%;
}
body.nav-open {
  overflow: hidden;
}

a,
button,
.nav-link,
.dropdown-item,
.home-link-arrow,
.ko-link {
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
main {
  overflow: hidden;
}
@media (max-width: 991.98px) {
  main {
    overflow-x: clip;
    overflow-y: visible;
  }
}

@media (min-width: 1400px) {
  .container, .footer__bottom, .footer__top {
    max-width: 86vw !important;
  }
}
@media (max-width: 1599.98px) {
  .container, .footer__bottom, .footer__top {
    max-width: 94vw !important;
  }
}
@media (max-width: 575.98px) {
  .container, .footer__bottom, .footer__top {
    max-width: calc(100% - 32px) !important;
    padding-left: 0;
    padding-right: 0;
  }
}
.home-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.home-link-arrow i {
  font-size: 12px;
  color: #ca9f70;
}
.home-link-arrow:hover {
  color: #ca9f70;
}

.ko-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
}
.ko-link i {
  color: #ca9f70;
  font-size: 12px;
}
.ko-link:hover {
  color: #ca9f70;
}

header,
.site-nav {
  padding: 28px 0 !important;
  width: 100%;
  z-index: 1030;
  background: #ffffff !important;
  -webkit-transition: padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, , ;
  -moz-transition: padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, , ;
  -ms-transition: padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, , ;
  -o-transition: padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, , ;
  transition: padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, , ;
}
.sticky header,
.sticky .site-nav {
  padding: 14px 0 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 991.98px) {
  header,
  .site-nav {
    padding: 14px 0 !important;
    background: #ffffff !important;
  }
  .sticky header,
  .sticky .site-nav {
    padding: 14px 0 !important;
  }
}
header,
.site-nav {
  overflow: visible;
}
header .navbar-toggler,
.site-nav .navbar-toggler {
  border-color: rgba(17, 17, 17, 0.18);
  padding: 0.5rem 0.625rem;
}
header .navbar-toggler:focus,
.site-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.1875rem rgba(202, 159, 112, 0.15);
}
header .navbar-toggler .navbar-toggler-icon,
.site-nav .navbar-toggler .navbar-toggler-icon {
  width: 1.375rem;
  height: 1.375rem;
}
header .logo,
.site-nav .logo {
  display: inline-block;
  width: 216px;
  min-width: 0;
  color: #111111;
  line-height: 0;
  -webkit-transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  -moz-transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  -ms-transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  -o-transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
}
@media (max-width: 991.98px) {
  header .logo,
  .site-nav .logo {
    width: 140px;
  }
}
header .logo img,
header .logo svg,
.site-nav .logo img,
.site-nav .logo svg {
  display: block;
  width: 100% !important;
  height: auto;
}
header .nav-row,
.site-nav .nav-row {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  header .nav-row,
  .site-nav .nav-row {
    position: static;
    flex-wrap: nowrap;
    align-items: center !important;
  }
}
header .nav-row .collapse,
header .nav-row .collapsing,
.site-nav .nav-row .collapse,
.site-nav .nav-row .collapsing {
  margin-left: 4vw;
}
@media (max-width: 1199.98px) {
  header .nav-row .collapse,
  header .nav-row .collapsing,
  .site-nav .nav-row .collapse,
  .site-nav .nav-row .collapsing {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  header .nav-row .collapse,
  header .nav-row .collapsing,
  .site-nav .nav-row .collapse,
  .site-nav .nav-row .collapsing {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    flex-basis: auto;
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(17, 17, 17, 0.1);
    z-index: 1031;
    overflow: hidden;
    box-sizing: border-box;
  }
}
@media (max-width: 991.98px) {
  header .nav-row .navbar-nav,
  .site-nav .nav-row .navbar-nav {
    padding: 8px calc(3vw + var(--bs-gutter-x, 1.5rem) / 2);
    margin: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid #e8e8e8;
    box-sizing: border-box;
  }
}
header .nav-row .navbar-nav .nav-item,
.site-nav .nav-row .navbar-nav .nav-item {
  margin: 0 0.9rem;
}
@media (max-width: 1599.98px) {
  header .nav-row .navbar-nav .nav-item,
  .site-nav .nav-row .navbar-nav .nav-item {
    margin: 0 0.5rem;
  }
}
@media (max-width: 991.98px) {
  header .nav-row .navbar-nav .nav-item,
  .site-nav .nav-row .navbar-nav .nav-item {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(232, 232, 232, 0.9);
  }
  header .nav-row .navbar-nav .nav-item:last-child,
  .site-nav .nav-row .navbar-nav .nav-item:last-child {
    border-bottom: 0;
  }
}
header .nav-row .navbar-nav .nav-link,
.site-nav .nav-row .navbar-nav .nav-link {
  font-size: 1rem;
  color: #111111;
  padding: 0 0.1em;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  header .nav-row .navbar-nav .nav-link,
  .site-nav .nav-row .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    font-size: 0.875rem;
  }
}
header .nav-row .navbar-nav .nav-link.dropdown-toggle::after,
.site-nav .nav-row .navbar-nav .nav-link.dropdown-toggle::after {
  font-family: "ko-icon", sans-serif;
  content: "\e80b";
  border: none;
  vertical-align: middle;
  font-size: 0.625rem;
  margin-left: 0.375rem;
}
header .nav-row .navbar-nav .nav-link:hover, header .nav-row .navbar-nav .nav-link.show, header .nav-row .navbar-nav .nav-link.active,
.site-nav .nav-row .navbar-nav .nav-link:hover,
.site-nav .nav-row .navbar-nav .nav-link.show,
.site-nav .nav-row .navbar-nav .nav-link.active {
  color: #ca9f70;
}
header .nav-row .navbar-nav .dropdown-menu,
.site-nav .nav-row .navbar-nav .dropdown-menu {
  padding: 1rem;
  border: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
header .nav-row .navbar-nav .dropdown-menu .dropdown-item,
.site-nav .nav-row .navbar-nav .dropdown-menu .dropdown-item {
  font-size: 0.875rem;
  padding: 0.45rem 0.75rem;
  color: #111111;
}
header .nav-row .navbar-nav .dropdown-menu .dropdown-item:hover,
.site-nav .nav-row .navbar-nav .dropdown-menu .dropdown-item:hover {
  color: #ca9f70;
  background: transparent;
}
@media (max-width: 991.98px) {
  header .nav-row .navbar-nav .dropdown-menu,
  .site-nav .nav-row .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    margin: 0 0 8px;
    padding: 4px 0 12px 12px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
}
header .nav-row .mini-nav,
.site-nav .nav-row .mini-nav {
  margin-left: auto;
  gap: 4px;
}
@media (max-width: 991.98px) {
  header .nav-row .mini-nav,
  .site-nav .nav-row .mini-nav {
    margin-left: 0;
    padding: 12px calc(3vw + var(--bs-gutter-x, 1.5rem) / 2) 20px;
    border-top: 1px solid #e8e8e8;
  }
}
header .nav-row .mini-nav .nav-link,
.site-nav .nav-row .mini-nav .nav-link {
  font-size: 1.125rem;
  color: #111111;
  padding: 0.35rem;
}
header .nav-row .mini-nav .nav-link:hover,
.site-nav .nav-row .mini-nav .nav-link:hover {
  color: #ca9f70;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease, , ;
  -moz-transition: all 0.3s ease, , ;
  -ms-transition: all 0.3s ease, , ;
  -o-transition: all 0.3s ease, , ;
  transition: all 0.3s ease, , ;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-overlay .close-search {
  position: absolute;
  top: 32px;
  right: 32px;
}
@media (max-width: 767.98px) {
  .search-overlay .close-search {
    top: 1.25rem;
    right: 1.25rem;
  }
}
.search-overlay .close-search {
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, , ;
  -moz-transition: color 0.3s ease, , ;
  -ms-transition: color 0.3s ease, , ;
  -o-transition: color 0.3s ease, , ;
  transition: color 0.3s ease, , ;
}
.search-overlay .close-search:hover {
  color: #ca9f70;
}
.search-overlay .search-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 32px;
}
@media (max-width: 575.98px) {
  .search-overlay .search-content {
    padding: 1.5rem 1rem;
  }
}
.search-overlay .search-content .search-form {
  width: 100%;
  max-width: 600px;
  position: relative;
}
.search-overlay .search-content .search-form input {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1.5rem;
}
@media (max-width: 767.98px) {
  .search-overlay .search-content .search-form input {
    font-size: 1.125rem;
    padding: 0.75rem 2.5rem 0.75rem 0;
  }
}
@media (max-width: 575.98px) {
  .search-overlay .search-content .search-form input {
    font-size: 16px;
  }
}
.search-overlay .search-content .search-form input {
  -webkit-transition: all 0.3s ease, , ;
  -moz-transition: all 0.3s ease, , ;
  -ms-transition: all 0.3s ease, , ;
  -o-transition: all 0.3s ease, , ;
  transition: all 0.3s ease, , ;
}
.search-overlay .search-content .search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-content .search-form input:focus {
  outline: none;
  border-bottom-color: #ca9f70;
}
.search-overlay .search-content .search-form button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 1.5rem;
  -webkit-transition: color 0.3s ease, , ;
  -moz-transition: color 0.3s ease, , ;
  -ms-transition: color 0.3s ease, , ;
  -o-transition: color 0.3s ease, , ;
  transition: color 0.3s ease, , ;
}
@media (max-width: 575.98px) {
  .search-overlay .search-content .search-form button {
    font-size: 1.25rem;
  }
}
.search-overlay .search-content .search-form button:hover {
  color: #ca9f70;
}

.footer {
  background: #ffffff;
}
.footer__top {
  padding: 56px 0 10px;
  display: grid;
  grid-template-columns: minmax(0, 350px) repeat(5, minmax(0, 1fr));
  gap: 28px 24px;
}
@media (max-width: 1199.98px) {
  .footer__top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 2.5rem 0 2rem;
  }
}
@media (max-width: 991.98px) {
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 1199.98px) {
  .footer__brand {
    grid-column: 1/-1;
  }
}
.footer__brand .footer__logo {
  display: block;
  width: 160px;
  margin-bottom: 28px;
}
.footer__brand .footer__logo img {
  width: 100%;
  height: auto;
}
.footer__follow-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 12px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #111111;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: background 0.25s ease, , ;
  -moz-transition: background 0.25s ease, , ;
  -ms-transition: background 0.25s ease, , ;
  -o-transition: background 0.25s ease, , ;
  transition: background 0.25s ease, , ;
}
.footer__social a:hover {
  background: #ca9f70;
  border-color: #ca9f70;
  color: #ffffff;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ca9f70;
  margin: 0 0 16px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  text-decoration: none;
  margin-bottom: 6px;
  -webkit-transition: color 0.2s ease, , ;
  -moz-transition: color 0.2s ease, , ;
  -ms-transition: color 0.2s ease, , ;
  -o-transition: color 0.2s ease, , ;
  transition: color 0.2s ease, , ;
}
.footer__col a:hover {
  color: #ca9f70;
}
.footer__middle {
  padding: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.footer__middle-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 575.98px) {
  .footer__middle-right {
    align-items: flex-start;
    width: 100%;
  }
}
.footer__bottom {
  border-top: 1px solid #e8e8e8;
  padding: 22px 0 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__bottom > span {
  font-size: 13px;
  color: #999999;
}
.footer__bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 575.98px) {
  .footer__bottom-right {
    align-items: flex-start;
    width: 100%;
  }
}
.footer__parent {
  display: block;
  width: 120px;
}
.footer__parent img {
  width: 100%;
  height: auto;
}
.footer__bottom-links {
  font-size: 13px;
  color: #999999;
}
.footer__bottom-links a {
  color: #999999;
  text-decoration: none;
}
.footer__bottom-links a:hover {
  color: #ca9f70;
}

.ko-breadcrumb {
  background-color: #f8f9fa;
  padding: 14px 0;
}
.ko-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #999999;
}
.ko-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ko-breadcrumb__item a {
  color: #999999;
  text-decoration: none;
}
.ko-breadcrumb__item a:hover {
  color: #ca9f70;
}
.ko-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: #999999;
  margin-left: 2px;
}
.ko-breadcrumb__item.is-current {
  color: #666666;
}

.page-intro {
  background: #f4f2f3;
  padding: 28px 0 32px;
  position: relative;
}
.page-intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(28px, 3.2vw, 48px);
  background: #ca9f70;
}
@media (max-width: 767.98px) {
  .page-intro::before {
    width: 8px;
  }
}
@media (max-width: 767.98px) {
  .page-intro .container, .page-intro .footer__top, .page-intro .footer__bottom {
    padding-left: 12px;
  }
}
.page-intro__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ca9f70;
  margin: 0 0 10px;
  line-height: 1.15;
}
.page-intro__lead {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  max-width: 720px;
}

.page-content {
  padding: 3rem 0 4.5rem;
}

.sidebar-page {
  background-color: #f8f9fa;
}

.sidebar-page__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(40px, 5vw, 56px) 0 clamp(64px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 991.98px) {
  .sidebar-page__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.sidebar-page__aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.sticky .sidebar-page__aside {
  top: calc(var(--header-height-sticky) + 24px);
}
@media (max-width: 991.98px) {
  .sidebar-page__aside {
    position: static;
  }
}

.sidebar-page__toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 12px;
  padding: 14px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 991.98px) {
  .sidebar-page__toggle {
    display: flex;
  }
}

.sidebar-page__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .sidebar-page__menu {
    display: none;
  }
  .sidebar-page__aside.is-open .sidebar-page__menu {
    display: block;
  }
}

.sidebar-page__menu-link {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #666666;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease, , ;
  -moz-transition: color 0.2s ease, border-color 0.2s ease, , ;
  -ms-transition: color 0.2s ease, border-color 0.2s ease, , ;
  -o-transition: color 0.2s ease, border-color 0.2s ease, , ;
  transition: color 0.2s ease, border-color 0.2s ease, , ;
}
.sidebar-page__menu-link:hover {
  color: #111111;
}
.sidebar-page__menu-link.is-active {
  color: #111111;
  font-weight: 700;
  border-bottom-color: #ca9f70;
}

.sidebar-page__main {
  min-width: 0;
}

.sidebar-page__block + .sidebar-page__block {
  margin-top: clamp(48px, 6vw, 72px);
  scroll-margin-top: calc(var(--header-height-sticky, 72px) + 16px);
}

.sidebar-page__heading,
.sidebar-page__title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: #111111;
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  line-height: 1.2;
}

.sidebar-page__body {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}
.sidebar-page__body > h1,
.sidebar-page__body > h2,
.sidebar-page__body > h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}
.sidebar-page__body > p {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}

.sidebar-page__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 767.98px) {
  .sidebar-page__split {
    grid-template-columns: 1fr;
  }
}

.sidebar-page__media {
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}
.sidebar-page__media img {
  width: 100%;
  height: auto;
  display: block;
}

.content-block {
  margin: 0;
}
.content-block--hero .content-block__figure, .content-block--figure .content-block__figure {
  justify-content: stretch;
}
.content-block--hero .content-block__figure img, .content-block--figure .content-block__figure img {
  max-width: none;
  width: 100%;
}
.content-block--hero img, .content-block--figure img {
  width: 100%;
  display: block;
}
.content-block--media-right {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
@media (max-width: 991.98px) {
  .content-block--media-right {
    grid-template-columns: 1fr;
  }
  .content-block--media-right .content-block__figure {
    justify-content: center;
  }
  .content-block--media-right .content-block__figure img {
    max-width: 100%;
  }
}
.content-block--media-left {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 3fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
.content-block--media-left .content-block__figure {
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .content-block--media-left {
    grid-template-columns: 1fr;
  }
}
.content-block__content h1,
.content-block__content h2,
.content-block__content h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: #111111;
  margin: 0 0 12px;
  line-height: 1.3;
}
.content-block__content p {
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #111111;
  margin: 0 0 16px;
}
.content-block__content p:last-child {
  margin-bottom: 0;
}
.content-block__content ul,
.content-block__content ol {
  margin: 0 0 16px;
  padding-left: 20px;
}
.content-block__content ul:last-child,
.content-block__content ol:last-child {
  margin-bottom: 0;
}
.content-block__content ul {
  list-style: disc;
  list-style-position: outside;
}
.content-block__content ol {
  list-style: decimal;
  list-style-position: outside;
}
.content-block__content li {
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #111111;
  margin-bottom: 8px;
  display: list-item;
}
.content-block__content li:last-child {
  margin-bottom: 0;
}
.content-block__content a {
  color: #ca9f70;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.content-block__content a:hover, .content-block__content a:focus-visible {
  color: #a8845d;
  outline: none;
}
.content-block__content strong {
  font-weight: 700;
  color: #111111;
}
.content-block__content img {
  max-width: 100%;
  height: auto;
  display: block;
}
.content-block--text h1,
.content-block--text h2,
.content-block--text h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: #111111;
  margin: 0 0 12px;
  line-height: 1.3;
}
.content-block--text p {
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #111111;
  margin: 0 0 16px;
}
.content-block--text p:last-child {
  margin-bottom: 0;
}
.content-block--text ul,
.content-block--text ol {
  margin: 0 0 16px;
  padding-left: 20px;
}
.content-block--text ul:last-child,
.content-block--text ol:last-child {
  margin-bottom: 0;
}
.content-block--text ul {
  list-style: disc;
  list-style-position: outside;
}
.content-block--text ol {
  list-style: decimal;
  list-style-position: outside;
}
.content-block--text li {
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #111111;
  margin-bottom: 8px;
  display: list-item;
}
.content-block--text li:last-child {
  margin-bottom: 0;
}
.content-block--text a {
  color: #ca9f70;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.content-block--text a:hover, .content-block--text a:focus-visible {
  color: #a8845d;
  outline: none;
}
.content-block--text strong {
  font-weight: 700;
  color: #111111;
}
.content-block--text img {
  max-width: 100%;
  height: auto;
  display: block;
}
.content-block__figure {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
.content-block__figure img {
  width: 100%;
  max-width: 742px;
  height: auto;
  display: block;
  border-radius: 4px;
}
.content-block--square-media {
  align-items: start;
}
.content-block--square-media .content-block__figure {
  width: min(100%, 420px);
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  justify-content: stretch;
}
.content-block--square-media .content-block__figure img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991.98px) {
  .content-block--square-media .content-block__figure {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}

.content-block .page-scope,
.content-block .page-brands {
  margin: 16px 0 8px;
}

.page-scope {
  margin: -30px 0 0;
}
@media (max-width: 767.98px) {
  .page-scope {
    margin: -10px 0 0;
  }
}
.page-scope__title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 18px;
}
.page-scope__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 575.98px) {
  .page-scope__grid {
    grid-template-columns: 1fr;
  }
}
.page-scope__card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 22px 20px;
  border-radius: 6px;
}
.page-scope__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ca9f70;
  margin: 0 0 8px;
}
.page-scope__card p {
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #111111;
  margin: 0;
}

.page-brands {
  margin: -30px 0 0;
}
@media (max-width: 767.98px) {
  .page-brands {
    margin: -10px 0 0;
  }
}
.page-brands__title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 18px;
}
.page-brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767.98px) {
  .page-brands__grid {
    grid-template-columns: 1fr;
  }
}
.page-brands__card {
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 22px 20px;
}
.page-brands__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ca9f70;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.page-brands__card p {
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #111111;
  margin: 0 0 14px;
}

.home-services--compact {
  padding: 70px 0 90px !important;
  background: #f3f3f3 !important;
}
.home-services--compact .home-services__title {
  font-size: clamp(20px, 1.6vw, 24px);
  color: #ca9f70;
}

.management-grid {
  margin-top: 0.5rem;
}
.management-grid--leadership .management-chairman {
  display: flex;
  justify-content: center;
  max-width: 25rem;
  margin: 0 auto 2.5rem;
}
@media (max-width: 767.98px) {
  .management-grid--leadership .management-chairman {
    margin-bottom: 1.75rem;
  }
}
.management-grid--leadership .management-members {
  max-width: 78.75rem;
  margin: 0 auto;
}

.management-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0.375rem 1.5rem rgba(17, 17, 17, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.management-card:hover, .management-card:focus-visible {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2rem rgba(17, 17, 17, 0.1);
  outline: none;
}
.management-card:focus-visible {
  outline: 2px solid #ca9f70;
  outline-offset: 0.25rem;
}
.management-card__photo {
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #f8f9fa;
}
.management-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.management-card:hover .management-card__photo img, .management-card:focus-visible .management-card__photo img {
  transform: scale(1.03);
}
.management-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1.25rem 1.125rem 1.5rem;
}
.management-card__name {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.25;
}
.management-card__role {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999999;
  margin: 0;
}
.management-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #666666;
  transition: color 0.25s ease;
}
.management-card__link i {
  font-size: 0.6875rem;
}
.management-card:hover .management-card__link, .management-card:focus-visible .management-card__link {
  color: #ca9f70;
}
.management-card--chairman .management-card__name {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}
.management-card--chairman .management-card__body {
  padding: 1.5rem 1.25rem 1.75rem;
}
.management-card--static {
  cursor: default;
}
.management-card--static:hover, .management-card--static:focus-visible {
  transform: none;
  box-shadow: 0 0.375rem 1.5rem rgba(17, 17, 17, 0.06);
}
.management-card--static:hover .management-card--static__photo img, .management-card--static:focus-visible .management-card--static__photo img {
  transform: none;
}

.page-management-modal .modal-dialog {
  max-width: 60rem;
}
.page-management-modal .modal-content {
  border: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem rgba(17, 17, 17, 0.14);
}
.page-management-modal .modal-header {
  align-items: flex-start;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background-color: #ffffff;
}
.page-management-modal .modal-title {
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.2;
}
.page-management-modal .management-modal__role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
  margin: 0 0 0.375rem;
}
.page-management-modal .btn-close {
  margin-top: 0.25rem;
}
.page-management-modal .modal-body {
  padding: 1.5rem;
  background-color: #ffffff;
}
.page-management-modal .management-modal__photo {
  margin: 0 0 1.25rem;
  max-width: 15rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #f8f9fa;
  aspect-ratio: 3/4;
}
.page-management-modal .management-modal__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.page-management-modal .management-modal__bio p {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #666666;
  line-height: 1.75;
  margin: 0 0 0.875rem;
}
.page-management-modal .management-modal__bio p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .page-management-modal .modal-body {
    display: grid;
    grid-template-columns: 12.5rem 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .page-management-modal .management-modal__photo {
    margin-bottom: 0;
    max-width: none;
    width: 100%;
  }
}

.milestones-timeline {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5rem 0 0.5rem;
}
.milestones-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e8e8e8;
  transform: translateX(-50%);
  pointer-events: none;
}
.milestones-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.milestones-timeline__item:last-child {
  margin-bottom: 0;
}
.milestones-timeline__content {
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 0.375rem 1.5rem rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.08);
  overflow: hidden;
}
.milestones-timeline__content--has-media {
  padding: 0;
}
.milestones-timeline__media {
  margin: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #f8f9fa;
}
.milestones-timeline__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.milestones-timeline__body {
  padding: 1.125rem 1.375rem 1.375rem;
}
.milestones-timeline__year {
  display: block;
  font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: #111111;
  line-height: 1;
  margin-bottom: 0.625rem;
}
.milestones-timeline__text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.55;
  color: #666666;
}
.milestones-timeline__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.milestones-timeline__dot {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: #ca9f70;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(202, 159, 112, 0.35);
}
.milestones-timeline__item--left .milestones-timeline__content {
  grid-column: 1;
  text-align: right;
}
.milestones-timeline__item--right .milestones-timeline__content {
  grid-column: 2;
  text-align: left;
}
@media (max-width: 767.98px) {
  .milestones-timeline {
    padding-left: 0.25rem;
  }
  .milestones-timeline::before {
    left: 1.4375rem;
  }
  .milestones-timeline__item {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    padding-left: 3rem;
    margin-bottom: 2.25rem;
  }
  .milestones-timeline__marker {
    left: 1.4375rem;
    transform: translate(-50%, -50%);
  }
  .milestones-timeline__item--left .milestones-timeline__content, .milestones-timeline__item--right .milestones-timeline__content {
    grid-column: 1;
    text-align: left;
  }
}

.history-today {
  margin-top: 1rem;
  padding: 1.75rem 2rem;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.5rem;
  box-shadow: 0 0.375rem 1.5rem rgba(17, 17, 17, 0.06);
}
.history-today .sidebar-page__title {
  margin-bottom: 12px;
}
.history-today__title {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #111111;
  margin: 0 0 12px;
  line-height: 1.2;
}
.history-today__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #666666;
  max-width: 42rem;
}

.ko-accordion {
  --bs-accordion-bg: #ffffff;
  --bs-accordion-border-color: #e8e8e8;
  --bs-accordion-border-radius: 8px;
  --bs-accordion-inner-border-radius: 7px;
  --bs-accordion-btn-color: #111111;
  --bs-accordion-btn-bg: #ffffff;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-active-color: #111111;
  --bs-accordion-active-bg: #f4f2f3;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(202, 159, 112, 0.15);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1.15rem;
}
.ko-accordion .accordion-item {
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height-sticky, 72px) + 16px);
}
.ko-accordion .accordion-button {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  line-height: 1.35;
}
.ko-accordion .accordion-button:not(.collapsed) {
  box-shadow: inset 3px 0 0 #ca9f70;
}
.ko-accordion .accordion-button:focus {
  border-color: #e8e8e8;
}
.ko-accordion .accordion-button::after {
  background-size: 1rem;
}
.ko-accordion .accordion-body {
  font-size: 15px;
  line-height: 1.75;
  color: #666666;
}
.ko-accordion .accordion-body h4 {
  margin: 1.25rem 0 0.5rem;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
}
.ko-accordion .accordion-body h4:first-child {
  margin-top: 0;
}
.ko-accordion .accordion-body p {
  margin: 0 0 0.85rem;
}
.ko-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}
.ko-accordion .accordion-body ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25em;
}
.ko-accordion .accordion-body ul:last-child {
  margin-bottom: 0;
}
.ko-accordion .accordion-body ul li {
  margin: 0.35rem 0;
}
.ko-accordion .accordion-body strong {
  color: #111111;
  font-weight: 600;
}
.ko-accordion .accordion-body a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ko-accordion .accordion-body a:hover {
  color: #ca9f70;
}

.page__certs {
  margin-top: 0.5rem;
}

.cert-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0.375rem 1.5rem rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cert-card:hover, .cert-card:focus-visible {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2rem rgba(17, 17, 17, 0.1);
  border-color: rgba(202, 159, 112, 0.35);
  outline: none;
}
.cert-card:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 0.25rem;
}
.cert-card__media {
  margin: 0;
  aspect-ratio: 210/297;
  background: #f8f9fa;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}
.cert-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  transition: transform 0.35s ease;
}
.cert-card:hover .cert-card__media img, .cert-card:focus-visible .cert-card__media img {
  transform: scale(1.02);
}
.cert-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.125rem 1rem 1.25rem;
  text-align: center;
  flex: 1;
}
.cert-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
}
.cert-card__desc {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
}
.cert-card__view {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #999999;
  transition: color 0.25s ease;
}
.cert-card:hover .cert-card__view, .cert-card:focus-visible .cert-card__view {
  color: #ca9f70;
}

.brands-page {
  padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 88px);
}
.brands-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 991.98px) {
  .brands-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .brands-page__grid {
    grid-template-columns: 1fr;
  }
}
.brands-page__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(120px, 16vw, 160px);
  padding: clamp(20px, 3vw, 32px);
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.brands-page__item img {
  max-width: 88%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.brands-page__item .brands-page__name {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: #111111;
}
.brands-page__item:hover, .brands-page__item:focus-visible {
  border-color: #ca9f70;
  box-shadow: 0 0.5rem 1.5rem rgba(17, 17, 17, 0.06);
  transform: translateY(-0.125rem);
  outline: none;
}
.brands-page__item:hover img, .brands-page__item:focus-visible img {
  filter: none;
  opacity: 1;
}

.hr-page {
  padding: 0;
}
.hr-page__policy {
  padding: clamp(36px, 4vw, 56px) 0;
}
.hr-page__form-section {
  padding: clamp(40px, 5vw, 64px) 0;
  background: #f4f2f3;
  border-top: 1px solid #e8e8e8;
}
.hr-page__form-head {
  margin: 0 0 clamp(24px, 3vw, 32px);
  max-width: 45rem;
}
.hr-page__form-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}
.hr-page__form-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #666666;
}

.hr-form {
  max-width: none;
  width: 100%;
  padding: clamp(24px, 3vw, 36px);
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}
.hr-form .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
}
.hr-form .form-control,
.hr-form .form-select {
  min-height: 44px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 14px;
  color: #2a2a2a;
}
.hr-form .form-control:focus,
.hr-form .form-select:focus {
  border-color: #ca9f70;
  box-shadow: 0 0 0 0.2rem rgba(202, 159, 112, 0.12);
}
.hr-form textarea.form-control {
  min-height: 110px;
  resize: vertical;
}
.hr-form input[type=file].form-control {
  min-height: 44px;
  padding: 0;
  line-height: 1;
  overflow: hidden;
}
.hr-form input[type=file].form-control::file-selector-button {
  height: 44px;
  margin: 0;
  margin-inline-end: 12px;
  padding: 0 16px;
  border: 0;
  border-right: 1px solid #e8e8e8;
  border-radius: 0;
  background: #f4f2f3;
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  line-height: 44px;
  cursor: pointer;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.hr-form input[type=file].form-control:hover::file-selector-button {
  background: #e8e8e8;
}
.hr-form__file-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #999999;
}
.hr-form .form-check-input:checked {
  background-color: #ca9f70;
  border-color: #ca9f70;
}
.hr-form .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(202, 159, 112, 0.12);
}
.hr-form .form-check-label {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}
.hr-form .form-check-label a {
  color: #ca9f70;
  text-decoration: underline;
}
.hr-form__submit {
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: #ca9f70;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.hr-form__submit:hover {
  background: #a8845d;
  color: #ffffff;
}

.campaigns-page {
  padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 88px);
}
.campaigns-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}
@media (max-width: 991.98px) {
  .campaigns-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .campaigns-page__grid {
    grid-template-columns: 1fr;
  }
}
.campaigns-page__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.campaigns-page__card:hover, .campaigns-page__card:focus-visible {
  border-color: rgba(202, 159, 112, 0.35);
  box-shadow: 0 0.625rem 1.75rem rgba(17, 17, 17, 0.08);
  transform: translateY(-0.1875rem);
  outline: none;
}
.campaigns-page__card:hover .campaigns-page__media img, .campaigns-page__card:focus-visible .campaigns-page__media img {
  transform: scale(1.04);
}
.campaigns-page__card:hover .campaigns-page__link, .campaigns-page__card:focus-visible .campaigns-page__link {
  color: #ca9f70;
}
.campaigns-page__media {
  margin: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f4f2f3;
}
.campaigns-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.campaigns-page__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}
.campaigns-page__brand {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ca9f70;
}
.campaigns-page__date {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999999;
}
.campaigns-page__title {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
}
.campaigns-page__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  flex: 1;
}
.campaigns-page__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.campaigns-page__link i {
  font-size: 11px;
}

.page__news-detail {
  padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 88px);
}

.news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999999;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-detail__back:hover, .news-detail__back:focus-visible {
  color: #ca9f70;
  outline: none;
}
.news-detail__back .icon-left {
  font-size: 0.6875rem;
}
.news-detail__meta {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
}
.news-detail__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
}
.news-detail__figure {
  margin: 0 0 1.75rem;
  max-width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.75rem rgba(17, 17, 17, 0.08);
}
.news-detail__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.news-detail__body {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
}
.news-detail__body h2 {
  margin: 2rem 0 0.875rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
}
.news-detail__body h2:first-child {
  margin-top: 0;
}
.news-detail__body p {
  margin: 0 0 1rem;
}
.news-detail__body p:last-child {
  margin-bottom: 0;
}
.news-detail__body ul {
  margin: 0 0 1rem;
  padding-left: 1.25em;
}
.news-detail__body ul li {
  margin: 0.5rem 0;
}
.news-detail__body a {
  color: #ca9f70;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.news-detail__body a:hover, .news-detail__body a:focus-visible {
  color: #111111;
}
.news-detail__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  background: #ca9f70;
  color: #111111 !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-detail__cta:hover, .news-detail__cta:focus-visible {
  background: #111111;
  color: #ffffff !important;
  outline: none;
}
.news-detail__cta .icon-right {
  font-size: 0.75rem;
}
.news-detail__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
}
@media (max-width: 575.98px) {
  .news-detail__gallery {
    grid-template-columns: 1fr;
  }
}
.news-detail__gallery figure {
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #f4f2f3;
}
.news-detail__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

@media (min-width: 992px) {
  .news-aside {
    position: sticky;
    top: calc(var(--header-height, 80px) + 1.25rem);
    align-self: flex-start;
  }
  .sticky .news-aside {
    top: calc(var(--header-height-sticky, 64px) + 1.25rem);
  }
}
.news-aside__title {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
}
@media (max-width: 991.98px) {
  .news-aside__title {
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid #e8e8e8;
  }
}
.news-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-aside__item {
  margin: 0 0 1.125rem;
}
.news-aside__item:last-child {
  margin-bottom: 0;
}
.news-aside__link {
  display: flex;
  gap: 0.875rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-aside__link:hover, .news-aside__link:focus-visible {
  opacity: 0.85;
  outline: none;
}
.news-aside__link:hover .news-aside__heading, .news-aside__link:focus-visible .news-aside__heading {
  color: #ca9f70;
}
.news-aside__thumb {
  flex: 0 0 5.5rem;
  width: 5.5rem;
  height: 4rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #f8f9fa;
}
.news-aside__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-aside__content {
  flex: 1;
  min-width: 0;
}
.news-aside__date {
  display: block;
  margin: 0 0 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999999;
}
.news-aside__heading {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.page__catalogs {
  padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 88px);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0.375rem 1.5rem rgba(17, 17, 17, 0.06);
  border: 1px solid #e8e8e8;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.catalog-card:hover, .catalog-card:focus-visible {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2rem rgba(17, 17, 17, 0.1);
  border-color: rgba(202, 159, 112, 0.35);
  outline: none;
}
.catalog-card:hover .catalog-card__action, .catalog-card:focus-visible .catalog-card__action {
  color: #111111;
}
.catalog-card__media {
  margin: 0;
  aspect-ratio: 3/4;
  background: #f4f2f3;
  overflow: hidden;
  border-bottom: 1px solid #e8e8e8;
}
.catalog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f4f2f3;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.catalog-card:hover .catalog-card__media img, .catalog-card:focus-visible .catalog-card__media img {
  transform: scale(1.03);
}
.catalog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.125rem 1.375rem;
  flex: 1;
}
.catalog-card__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
}
.catalog-card__desc {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: #666666;
  flex: 1;
}
.catalog-card__meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999999;
}
.catalog-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ca9f70;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.catalog-card__action .icon-right {
  font-size: 0.75rem;
}

.contact-page {
  padding: 0 0 clamp(56px, 7vw, 88px);
}
.contact-page__info {
  padding: clamp(36px, 4vw, 56px) 0;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}
@media (max-width: 991.98px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
  }
}
.contact-page__item {
  padding: 0;
  border: 0;
  background: transparent;
}
.contact-page__label {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999999;
}
.contact-page__value {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  line-height: 1.55;
  color: #111111;
  font-style: normal;
}
.contact-page__value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-page__value a:hover, .contact-page__value a:focus-visible {
  color: #ca9f70;
  outline: none;
}
.contact-page__hours {
  padding: clamp(8px, 2vw, 16px) 0 clamp(40px, 5vw, 56px);
  border-top: 1px solid #e8e8e8;
}
.contact-page__hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}
@media (max-width: 767.98px) {
  .contact-page__hours-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.contact-page__hours-block h2 {
  margin: 0 0 14px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
}
.contact-page__hours-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-page__hours-block li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 14px;
  line-height: 1.45;
  color: #2a2a2a;
}
.contact-page__hours-block li:last-child {
  border-bottom: 0;
}
.contact-page__hours-block li span:last-child {
  font-weight: 600;
  color: #111111;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .contact-page__hours-block li span:last-child {
    white-space: normal;
    text-align: left;
    width: 100%;
  }
}
.contact-page__form-section {
  padding: clamp(40px, 5vw, 64px) 0;
  background: #f4f2f3;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  scroll-margin-top: calc(var(--header-height-sticky, 72px) + 16px);
}
.contact-page__form-head {
  margin: 0 0 clamp(24px, 3vw, 32px);
  max-width: 45rem;
}
.contact-page__form-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}
.contact-page__form-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #666666;
}
.contact-page__map-section {
  padding: clamp(40px, 5vw, 64px) 0 0;
  scroll-margin-top: calc(var(--header-height-sticky, 72px) + 16px);
}
.contact-page__map-head {
  margin: 0 0 20px;
}
.contact-page__map-head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}
.contact-page__map-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #666666;
}
.contact-page__map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background: #f8f9fa;
}
.contact-page__map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  border: 0;
}

.contact-form {
  width: 100%;
  padding: clamp(24px, 3vw, 36px);
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}
.contact-form .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
}
.contact-form .form-control,
.contact-form .form-select {
  min-height: 44px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 14px;
  color: #2a2a2a;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #ca9f70;
  box-shadow: 0 0 0 0.2rem rgba(202, 159, 112, 0.12);
}
.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-form .form-check-label {
  font-size: 13px;
  color: #2a2a2a;
  line-height: 1.45;
}
.contact-form .form-check-label a {
  color: #ca9f70;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.contact-form .form-check-input:checked {
  background-color: #ca9f70;
  border-color: #ca9f70;
}
.contact-form__submit {
  margin-top: 4px;
  min-height: 48px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #ca9f70;
  border: 1px solid #ca9f70;
  border-radius: 4px;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-form__submit:hover, .contact-form__submit:focus-visible {
  background: #a8845d;
  border-color: #a8845d;
  outline: none;
}

.lead-quote {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid #e8e8e8;
}
.lead-quote__title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #111111;
  margin: 0 0 8px;
}
.lead-quote__lead {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 20px;
  max-width: 640px;
}

.page-404 {
  padding: clamp(64px, 10vw, 120px) 0 clamp(72px, 10vw, 140px);
  text-align: center;
}
.page-404__code {
  margin: 0 0 12px;
  font-size: clamp(72px, 14vw, 140px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ca9f70;
}
.page-404__title {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
}
.page-404__text {
  margin: 0 auto 32px;
  max-width: 30rem;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
}
.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.page-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-404__btn--primary {
  color: #ffffff;
  background: #ca9f70;
  border: 1px solid #ca9f70;
}
.page-404__btn--primary:hover, .page-404__btn--primary:focus-visible {
  background: #a8845d;
  border-color: #a8845d;
  outline: none;
}
.page-404__btn--ghost {
  color: #111111;
  background: transparent;
  border: 1px solid #e8e8e8;
}
.page-404__btn--ghost:hover, .page-404__btn--ghost:focus-visible {
  border-color: #ca9f70;
  color: #ca9f70;
  outline: none;
}

.search-page {
  padding: clamp(36px, 5vw, 56px) 0 clamp(56px, 7vw, 88px);
}
.search-page__bar {
  padding: 0 0 clamp(28px, 4vw, 40px);
}
.search-page__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 40rem;
}
.search-page__form input[type=search] {
  flex: 1 1 200px;
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 15px;
  color: #2a2a2a;
  background: #ffffff;
}
.search-page__form input[type=search]:focus {
  outline: none;
  border-color: #ca9f70;
  box-shadow: 0 0 0 0.2rem rgba(202, 159, 112, 0.12);
}
.search-page__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #ca9f70;
  border: 1px solid #ca9f70;
  border-radius: 4px;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 575.98px) {
  .search-page__form button {
    flex: 1 1 100%;
    width: 100%;
  }
}
.search-page__form button:hover, .search-page__form button:focus-visible {
  background: #a8845d;
  border-color: #a8845d;
  outline: none;
}
.search-page__form button i {
  font-size: 14px;
}
.search-page__summary {
  margin: 0 0 clamp(24px, 3vw, 32px);
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
}
.search-page__summary strong {
  color: #111111;
  font-weight: 600;
}
.search-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.search-page__item a {
  display: block;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.search-page__item a:hover, .search-page__item a:focus-visible {
  border-color: rgba(202, 159, 112, 0.35);
  box-shadow: 0 0.5rem 1.5rem rgba(17, 17, 17, 0.06);
  transform: translateY(-0.125rem);
  outline: none;
}
.search-page__item a:hover .search-page__item-title, .search-page__item a:focus-visible .search-page__item-title {
  color: #ca9f70;
}
.search-page__item-type {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999999;
}
.search-page__item-title {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.search-page__item-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
}
.search-page__empty {
  padding: clamp(28px, 4vw, 40px) 0;
  text-align: left;
}
.search-page__empty p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
}
.search-page__suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-page__suggest a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background: #ffffff;
  transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.search-page__suggest a:hover, .search-page__suggest a:focus-visible {
  border-color: #ca9f70;
  color: #ca9f70;
  outline: none;
}

.home-services {
  padding: 72px 0 56px;
  background: #ffffff;
}
.home-services__title {
  text-align: center;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ca9f70;
  margin: 0 0 40px;
}
.home-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1199.98px) {
  .home-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .home-services__grid {
    grid-template-columns: 1fr;
  }
}
.home-services__card {
  position: relative;
  display: block;
  aspect-ratio: 3/4.2;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
}
.home-services__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-services__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.home-services__card:hover img {
  transform: scale(1.06);
}
.home-services__card:hover .home-services__card-title {
  transform: translate(-50%, calc(-50% - 6px));
}
.home-services__card:hover .home-services__card-arrow {
  transform: translateX(4px);
}
.home-services__card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: calc(100% - 32px);
  text-align: center;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.35;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-services__card-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ca9f70;
  font-size: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-services__more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.ko-form-modal .modal-dialog {
  max-width: 560px;
}
.ko-form-modal .modal-content {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
}
.ko-form-modal .modal-header {
  padding: 22px 24px 16px;
  border-bottom: 1px solid #e8e8e8;
  align-items: flex-start;
}
.ko-form-modal .modal-header .modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}
.ko-form-modal .modal-header .btn-close {
  margin-top: 4px;
}
.ko-form-modal .modal-body {
  padding: 20px 24px 8px;
}
.ko-form-modal .modal-footer {
  padding: 12px 24px 24px;
  border-top: 0;
  justify-content: stretch;
}
.ko-form-modal__hint {
  font-size: 13px;
  color: #666666;
  margin: 6px 0 0;
  font-weight: 400;
}
.ko-form-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 575.98px) {
  .ko-form-modal__grid {
    grid-template-columns: 1fr;
  }
}
.ko-form-modal__full {
  grid-column: 1/-1;
}
.ko-form-modal .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
}
.ko-form-modal .form-control,
.ko-form-modal .form-select {
  min-height: 44px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 14px;
  color: #2a2a2a;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  -moz-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  -ms-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  -o-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
}
.ko-form-modal .form-control:focus,
.ko-form-modal .form-select:focus {
  border-color: #ca9f70;
  box-shadow: 0 0 0 0.2rem rgba(202, 159, 112, 0.12);
}
.ko-form-modal textarea.form-control {
  min-height: 96px;
  resize: vertical;
}
.ko-form-modal .form-check {
  margin-top: 4px;
}
.ko-form-modal .form-check .form-check-input {
  margin-top: 0.3em;
}
.ko-form-modal .form-check .form-check-input:checked {
  background-color: #ca9f70;
  border-color: #ca9f70;
}
.ko-form-modal .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(202, 159, 112, 0.12);
}
.ko-form-modal .form-check .form-check-label {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}
.ko-form-modal .form-check .form-check-label a {
  color: #ca9f70;
  text-decoration: underline;
}
.ko-form-modal__submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  background: #ca9f70;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  -moz-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  -ms-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  -o-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), , ;
}
.ko-form-modal__submit:hover {
  background: #a8845d;
  color: #ffffff;
}

.swal2-confirm.custom-primary {
  background: #ca9f70 !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 4px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
}

.ko-quick {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}
.ko-quick__item {
  pointer-events: auto;
  display: flex;
  align-items: center;
  align-self: flex-end;
  flex: 0 0 auto;
  gap: 0;
  height: 52px;
  width: 52px;
  padding: 0 0 0 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), gap 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ko-quick__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #ca9f70;
}
.ko-quick__item i {
  flex: 0 0 auto;
  width: 28px;
  font-size: 24px;
  color: #ca9f70;
  text-align: center;
  line-height: 1;
}
.ko-quick__label {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), margin 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ko-quick__item:hover, .ko-quick__item:focus-visible {
  width: 196px;
  gap: 12px;
  padding: 0 18px 0 14px;
  background: #ffffff;
  outline: none;
}
.ko-quick__item:hover .ko-quick__label, .ko-quick__item:focus-visible .ko-quick__label {
  max-width: 140px;
  opacity: 1;
  margin-right: 4px;
}
@media (max-width: 767.98px) {
  .ko-quick {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    width: 100%;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    border-top: 3px solid #ca9f70;
    padding-bottom: env(safe-area-inset-bottom, 0);
    min-height: calc(64px + env(safe-area-inset-bottom, 0px));
  }
  .ko-quick__item {
    flex: 1 1 0;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: auto;
    height: auto;
    min-height: 58px;
    padding: 8px 6px;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    white-space: normal;
    text-align: center;
    font-size: 11px;
    line-height: 1.2;
  }
  .ko-quick__item::after {
    display: none;
  }
  .ko-quick__item i {
    width: auto;
    font-size: 22px;
  }
  .ko-quick__label {
    display: block;
    max-width: 100%;
    opacity: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ko-quick__item:hover, .ko-quick__item:focus-visible {
    width: auto;
    gap: 4px;
    padding: 8px 6px;
    background: rgba(202, 159, 112, 0.06);
  }
  .ko-quick__item:hover .ko-quick__label, .ko-quick__item:focus-visible .ko-quick__label {
    max-width: 100%;
    opacity: 1;
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .footer__bottom {
    padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  }
}
main {
  padding-top: var(--header-height);
  overflow: visible;
  background-color: #f8f9fa;
  -webkit-transition: all 0.5s ease-in-out, , ;
  -moz-transition: all 0.5s ease-in-out, , ;
  -ms-transition: all 0.5s ease-in-out, , ;
  -o-transition: all 0.5s ease-in-out, , ;
  transition: all 0.5s ease-in-out, , ;
}
.sticky main {
  padding-top: var(--header-height-sticky);
}

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