/* Colors variables */

:root {
    --color-font: #353535;
    --color-bg-light: #FFFFFF;
    --color-bg-dark: #D9F2FF;
    --color-fancy: #3B96FF;
    --color-fancy-hover: #1381FF;
    --color-fancy-special: #45E3E3;
    --color-fancy-special-hover: #3FBBBB;
    --opacity-banner: 0.5;
}


.btn {
  border-width: 2px;
  font-family: Inter;
}
body {
  font-family: Jost !important;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem !important;
  line-height: 1.5;
}
.display-6 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem ;
  line-height: 1.5;
  }
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-6 {
    font-size: 1.50rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: var(--color-fancy) !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: var(--color-fancy) !important;
  border-color: var(--color-fancy) !important;
  color: var(--color-bg-light) !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: var(--color-bg-light) !important;
  background-color: var(--color-fancy-hover) !important;
  border-color: var(--color-fancy-hover) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: var(--color-bg-light) !important;
  background-color: var(--color-fancy-hover) !important;
  border-color: var(--color-fancy-hover) !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: var(--color-fancy-special) !important;
  border-color: var(--color-fancy-special) !important;
  color: var(--color-bg-light) !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: var(--color-bg-light) !important;
  background-color: var(--color-fancy-special-hover) !important;
  border-color: var(--color-fancy-special-hover) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: var(--color-bg-light) !important;
  background-color: var(--color-fancy-special-hover) !important;
  border-color: var(--color-fancy-special-hover) !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: var(--color-bg-light) !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: var(--color-bg-light) !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: var(--color-bg-light) !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: var(--color-bg-light) !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: var(--color-bg-light) !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: var(--color-bg-light) !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: var(--color-bg-light) !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: var(--color-bg-light) !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: var(--color-bg-light) !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: var(--color-bg-light) !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: var(--color-bg-light) !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: var(--color-bg-light) !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: var(--color-fancy);
  color: var(--color-fancy);
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: var(--color-fancy-hover) !important;
  background-color: transparent!important;
  border-color: var(--color-fancy-hover) !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: var(--color-bg-light) !important;
  background-color: var(--color-fancy) !important;
  border-color: var(--color-fancy) !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: var(--color-fancy-special);
  color: var(--color-fancy-special);
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: var(--color-fancy-special-hover) !important;
  background-color: transparent!important;
  border-color: var(--color-fancy-special-hover) !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: var(--color-bg-light) !important;
  background-color: var(--color-fancy-special) !important;
  border-color: var(--color-fancy-special) !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: var(--color-bg-light) !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: var(--color-bg-light) !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: var(--color-bg-light) !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: var(--color-bg-light) !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: var(--color-fancy) !important;
}
.text-secondary {
  color: var(--color-font) !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: var(--color-fancy-hover) !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: var(--color-fancy-hover) !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: var(--color-fancy);
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: var(--color-fancy);
  border-color: var(--color-fancy);
  color: var(--color-bg-light);
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: var(--color-fancy);
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d4af9a;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: var(--color-bg-light);
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: var(--color-bg-light);
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: var(--color-bg-light);
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: var(--color-fancy) !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: var(--color-fancy);
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: var(--color-fancy);
  color: var(--color-bg-light);
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: var(--color-fancy);
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: var(--color-font);
  border-bottom-color: var(--color-font);
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: var(--color-fancy);
  border-bottom-color: var(--color-fancy);
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: var(--color-bg-light) !important;
  background-color: var(--color-fancy) !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: var(--color-fancy-special) !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23a86947' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.clHeader {
  z-index: 1000;
  width: 100%;
}
.clHeader nav.navbar {
  position: fixed;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.clHeader .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.clHeader .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.clHeader .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.clHeader .dropdown-item:hover,
.clHeader .dropdown-item:focus {
  background: var(--color-fancy) !important;
  color: white !important;
}
.clHeader .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.clHeader .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.clHeader .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.clHeader .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.clHeader .nav-link {
  position: relative;
}
.clHeader .container {
  display: flex;
  margin: auto;
}
.clHeader .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.clHeader .dropdown-menu,
.clHeader .navbar.opened {
  background: var(--color-bg-dark) !important;
}
.clHeader .nav-item:focus,
.clHeader .nav-link:focus {
  outline: none;
}
.clHeader .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.clHeader .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.clHeader .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.clHeader .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.clHeader .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.clHeader .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.clHeader .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: var(--color-bg-light);
}
.clHeader .navbar.opened {
  transition: all 0.3s;
}
.clHeader .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.clHeader .navbar .navbar-logo img {
  width: auto;
}
.clHeader .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.clHeader .navbar.collapsed {
  justify-content: center;
}
.clHeader .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.clHeader .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.clHeader .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.clHeader .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.clHeader .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.clHeader .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.clHeader .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.clHeader .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .clHeader .navbar .nav-item .nav-link::before {
    display: none;
  }
  .clHeader .navbar.opened .dropdown-menu {
    top: 0;
  }
  .clHeader .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .clHeader .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .clHeader .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .clHeader .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .clHeader .navbar ul.navbar-nav li {
    margin: auto;
  }
  .clHeader .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .clHeader .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .clHeader .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .clHeader .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.clHeader .navbar.navbar-short {
  min-height: 60px;
}
.clHeader .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.clHeader .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.clHeader .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.clHeader .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.clHeader .navbar-brand .navbar-logo a {
  outline: none;
}
.clHeader .dropdown-item.active,
.clHeader .dropdown-item:active {
  background-color: transparent;
}
.clHeader .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.clHeader .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.clHeader .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.clHeader .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: var(--color-bg-dark);
}
.clHeader .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.clHeader .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.clHeader ul.navbar-nav {
  flex-wrap: wrap;
}
.clHeader .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.clHeader button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.clHeader button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.clHeader button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.clHeader button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.clHeader button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.clHeader button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.clHeader nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.clHeader nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.clHeader nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.clHeader nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.clHeader .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.clHeader a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clHeader .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .clHeader .navbar {
    height: 70px;
  }
  .clHeader .navbar.opened {
    height: auto;
  }
  .clHeader .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.clBanner {
  padding-top: 16rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1231.jpeg");
}
.clBanner .mbr-section-title {
  color: var(--color-fancy);
  text-align: center;
}
.clBanner .mbr-text,
.clBanner .mbr-section-btn {
  color: var(--color-font);
  text-align: center;
}
.clBannerCompact {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1231.jpeg");
}
.clBannerCompact .mbr-section-title {
  color: var(--color-fancy);
  text-align: center;
}
.clBannerCompact .mbr-text,
.clBannerCompact .mbr-section-btn {
  color: var(--color-font);
  text-align: center;
}

.clAbout {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: var(--color-bg-dark);
}
.clAbout .content-wrapper {
  background: var(--color-bg-light);
}
@media (max-width: 991px) {
  .clAbout .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .clAbout .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .clAbout .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .clAbout .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .clAbout .content-wrapper {
    padding: 5rem 3rem;
  }
  .clAbout .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.clAbout .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.clAbout .card-title {
  color: var(--color-fancy);
}
.clAbout .mbr-text,
.clAbout .mbr-section-btn {
  color: var(--color-font);
  text-align: justify;
}
.clBlogView {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--color-bg-dark);
}
.clBlogView img,
.clBlogView .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.clBlogView .item:focus,
.clBlogView span:focus {
  outline: none;
}
.clBlogView .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.clBlogView .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: var(--color-bg-light);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}

/*.item-content p{
    text-align: justify !important;
}*/



@media (min-width: 992px) {
  .clBlogView .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .clBlogView .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .clBlogView .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .clBlogView .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.clBlogView .mbr-section-btn {
  margin-top: auto !important;
}
.clBlogView .mbr-section-title {
  color: var(--color-fancy);
}
.clBlogView .mbr-text,
.clBlogView .mbr-section-btn {
  text-align: left;
}
.clBlogView .item-title {
  text-align: left;
  color: var(--color-fancy);
}
.clBlogView .item-subtitle {
  text-align: left;
  color: #232323;
}
.clBlogView .mbr-section-subtitle {
  color: var(--color-font);
}
.cid-sFADQQfNeA {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: var(--color-bg-light);
}
.clFavDestinations .mbr-section-title {
  color: var(--color-fancy);
}
.clFavDestinations .mbr-section-subtitle {
  color: var(--color-font);
}
.clFavDestinations {
  padding-top: 5rem;
  padding-bottom: 0;
  background-color: var(--color-bg-light);
}
.clFavDestinations p {
    text-align: justify !important;
}
@media (max-width: 767px) {
  .clFavDestinations .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .clFavDestinations .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .clFavDestinations .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.clFavDestinations .card-wrapper {
  border-radius: 4px;
  background-color: var(--color-bg-dark);
}
.clFavDestinations .image-wrapper img {
  width: 100%;
  object-fit: cover;
  height: 300px;
}
.clFavDestinations .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.clFavDestinations .mbr-text {
  color: var(--color-font);
  text-align: left;
}
.clFavDestinations .card-title {
  color: var(--color-fancy);
}
.clFavDestinations .price {
  color: var(--color-fancy);
}
.cid-um100djfGy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--color-bg-light);
}
@media (min-width: 992px) {
  .cid-um100djfGy .carousel {
    min-height: 800px;
  }
  .cid-um100djfGy .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-um100djfGy .carousel {
    min-height: 520px;
  }
  .cid-um100djfGy .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-um100djfGy .carousel {
    min-height: 440px;
  }
  .cid-um100djfGy .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-um100djfGy .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-um100djfGy .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-um100djfGy .carousel,
.cid-um100djfGy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-um100djfGy .item-wrapper {
  width: 100%;
}
.cid-um100djfGy .carousel-caption {
  bottom: 40px;
}
.cid-um100djfGy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-um100djfGy .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-um100djfGy .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-um100djfGy .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-um100djfGy .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-um100djfGy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-um100djfGy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-um100djfGy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-um100djfGy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-um100djfGy .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-um100djfGy .carousel-indicators li.active,
.cid-um100djfGy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-um100djfGy .carousel-indicators li::after,
.cid-um100djfGy .carousel-indicators li::before {
  content: none;
}
.cid-um100djfGy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-um100djfGy .carousel-indicators {
    display: none !important;
  }
}
.cid-sFAQAQGsOD {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-color: var(--color-bg-dark);
}
.cid-sFAQAQGsOD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sFAQAQGsOD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sFAQAQGsOD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sFAQAQGsOD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sFAQAQGsOD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-bg-light);
  border-radius: 50%;
  opacity: 0;
  color: var(--color-bg-light);
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sFAQAQGsOD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sFAQAQGsOD .carousel-control,
.cid-sFAQAQGsOD .close {
  background: #1b1b1b;
}
.cid-sFAQAQGsOD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sFAQAQGsOD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control-next span {
  margin-left: 5px;
}
.cid-sFAQAQGsOD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sFAQAQGsOD .close::before {
  content: '\e91a';
}
.cid-sFAQAQGsOD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sFAQAQGsOD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sFAQAQGsOD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sFAQAQGsOD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sFAQAQGsOD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sFAQAQGsOD .carousel-indicators li.active,
.cid-sFAQAQGsOD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sFAQAQGsOD .carousel-indicators li::after,
.cid-sFAQAQGsOD .carousel-indicators li::before {
  content: none;
}
.cid-sFAQAQGsOD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    display: none;
  }
}
.cid-sFAQAQGsOD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sFAQAQGsOD .carousel-inner > .active {
  display: block;
}
.cid-sFAQAQGsOD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sFAQAQGsOD .carousel-control,
  .cid-sFAQAQGsOD .carousel-indicators,
  .cid-sFAQAQGsOD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sFAQAQGsOD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sFAQAQGsOD .carousel-indicators .active,
.cid-sFAQAQGsOD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sFAQAQGsOD .carousel-indicators .active {
  background: #fff;
}
.cid-sFAQAQGsOD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sFAQAQGsOD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sFAQAQGsOD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sFAQAQGsOD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sFAQAQGsOD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sFAQAQGsOD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sFAQAQGsOD .carousel {
  width: 100%;
}
.cid-sFAQAQGsOD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sFAQAQGsOD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sFAQAQGsOD .modal.fade .modal-dialog,
.cid-sFAQAQGsOD .modal.in .modal-dialog {
  transform: none;
}
.cid-sFAQAQGsOD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sFAQAQGsOD H6 {
  text-align: center;
}
.cid-sFAQAQGsOD H3 {
  color: var(--color-fancy);
}
.clContacts {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background: var(--color-bg-light);
}
@media (max-width: 767px) {
  .clContacts .row {
    flex-direction: column-reverse;
  }
  .clContacts .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.clContacts .google-map {
  height: 100%;
  position: relative;
}
.clContacts .google-map iframe {
  height: 100%;
  width: 100%;
}
.clContacts .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.clContacts .google-map[data-state] {
  background: #e9e5dc;
}
.clContacts .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.clContacts .image-wrapper {
  display: flex;
  align-items: center;
}
.clContacts .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: var(--color-bg-dark);
}
.clContacts .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .clContacts .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .clContacts .card-wrapper {
    padding: 2rem 4rem;
  }
}
.clContacts .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: var(--color-fancy);
}
.clContacts .mbr-section-title {
  color: var(--color-fancy);
}
.clContacts .mbr-section-subtitle {
  color: var(--color-fancy);
}
.clContacts .card-title {
  color: var(--color-fancy);
}
.clContacts P {
  color: #05386b;
}
.clFooter {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: var(--color-fancy);
}
.clFooter .row-links {
  width: 100%;
  justify-content: center;
}
.clFooter .social-row {
  width: 100%;
  justify-content: center;
}
.clFooter .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clFooter .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.clFooter .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.clFooter .media-container-row .foot-menu li p {
  margin: 0;
}
.clFooter .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.clFooter .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: var(--color-bg-light);
}
.clFooter .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.clFooter .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.clFooter .media-container-row .social-list a:hover {
  opacity: 1;
}
.clFooter p{
    font-family: Inter, sans-serif;
    
}
.clFooter a{
    color: var(--color-fancy-special);
}
@media (max-width: 767px) {
  .clFooter .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.clFooter .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.clFooter .media-container-row .row-copirayt p {
  width: 100%;
}
.clHeader {
  z-index: 1000;
  width: 100%;
}
.clHeader nav.navbar {
  position: fixed;
}
.clHeader .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.clHeader .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.clHeader .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.clHeader .dropdown-item:hover,
.clHeader .dropdown-item:focus {
  background: var(--color-fancy) !important;
  color: white !important;
}
.clHeader .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.clHeader .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.clHeader .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.clHeader .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.clHeader .nav-link {
  position: relative;
}
.clHeader .container {
  display: flex;
  margin: auto;
}
.clHeader .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.clHeader .dropdown-menu,
.clHeader .navbar.opened {
  background: var(--color-bg-dark) !important;
}
.clHeader .nav-item:focus,
.clHeader .nav-link:focus {
  outline: none;
}
.clHeader .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.clHeader .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.clHeader .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.clHeader .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.clHeader .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.clHeader .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.clHeader .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: var(--color-bg-light);
}
.clHeader .navbar.opened {
  transition: all 0.3s;
}
.clHeader .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.clHeader .navbar .navbar-logo img {
  width: auto;
}
.clHeader .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.clHeader .navbar.collapsed {
  justify-content: center;
}
.clHeader .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.clHeader .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.clHeader .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.clHeader .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.clHeader .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.clHeader .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.clHeader .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.clHeader .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .clHeader .navbar .nav-item .nav-link::before {
    display: none;
  }
  .clHeader .navbar.opened .dropdown-menu {
    top: 0;
  }
  .clHeader .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .clHeader .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .clHeader .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .clHeader .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .clHeader .navbar ul.navbar-nav li {
    margin: auto;
  }
  .clHeader .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .clHeader .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .clHeader .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .clHeader .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.clHeader .navbar.navbar-short {
  min-height: 60px;
}
.clHeader .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.clHeader .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.clHeader .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.clHeader .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.clHeader .navbar-brand .navbar-logo a {
  outline: none;
}
.clHeader .dropdown-item.active,
.clHeader .dropdown-item:active {
  background-color: transparent;
}
.clHeader .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.clHeader .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.clHeader .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.clHeader .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: var(--color-bg-dark);
}
.clHeader .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.clHeader .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.clHeader ul.navbar-nav {
  flex-wrap: wrap;
}
.clHeader .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.clHeader button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.clHeader button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.clHeader button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.clHeader button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.clHeader button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.clHeader button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.clHeader nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.clHeader nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.clHeader nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.clHeader nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.clHeader .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.clHeader a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clHeader .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .clHeader .navbar {
    height: 70px;
  }
  .clHeader .navbar.opened {
    height: auto;
  }
  .clHeader .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.clFooter {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: var(--color-fancy);
}
.clFooter .row-links {
  width: 100%;
  justify-content: center;
}
.clFooter .social-row {
  width: 100%;
  justify-content: center;
}
.clFooter .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clFooter .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.clFooter .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.clFooter .media-container-row .foot-menu li p {
  margin: 0;
}
.clFooter .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.clFooter .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: var(--color-bg-light);
}
.clFooter .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.clFooter .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.clFooter .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .clFooter .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.clFooter .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.clFooter .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-unw2uedr6J {
  z-index: 1000;
  width: 100%;
}
.cid-unw2uedr6J nav.navbar {
  position: fixed;
}
.cid-unw2uedr6J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unw2uedr6J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unw2uedr6J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-unw2uedr6J .dropdown-item:hover,
.cid-unw2uedr6J .dropdown-item:focus {
  background: var(--color-fancy) !important;
  color: white !important;
}
.cid-unw2uedr6J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unw2uedr6J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unw2uedr6J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unw2uedr6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unw2uedr6J .nav-link {
  position: relative;
}
.cid-unw2uedr6J .container {
  display: flex;
  margin: auto;
}
.cid-unw2uedr6J .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unw2uedr6J .dropdown-menu,
.cid-unw2uedr6J .navbar.opened {
  background: var(--color-bg-dark) !important;
}
.cid-unw2uedr6J .nav-item:focus,
.cid-unw2uedr6J .nav-link:focus {
  outline: none;
}
.cid-unw2uedr6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unw2uedr6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unw2uedr6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unw2uedr6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unw2uedr6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unw2uedr6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unw2uedr6J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(237, 245, 225, 0.8);
}
.cid-unw2uedr6J .navbar.opened {
  transition: all 0.3s;
}
.cid-unw2uedr6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unw2uedr6J .navbar .navbar-logo img {
  width: auto;
}
.cid-unw2uedr6J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-unw2uedr6J .navbar.collapsed {
  justify-content: center;
}
.cid-unw2uedr6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unw2uedr6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unw2uedr6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unw2uedr6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unw2uedr6J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-unw2uedr6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unw2uedr6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unw2uedr6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unw2uedr6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unw2uedr6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unw2uedr6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unw2uedr6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unw2uedr6J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-unw2uedr6J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unw2uedr6J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unw2uedr6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unw2uedr6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unw2uedr6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unw2uedr6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-unw2uedr6J .navbar.navbar-short {
  min-height: 60px;
}
.cid-unw2uedr6J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unw2uedr6J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unw2uedr6J .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unw2uedr6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unw2uedr6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unw2uedr6J .dropdown-item.active,
.cid-unw2uedr6J .dropdown-item:active {
  background-color: transparent;
}
.cid-unw2uedr6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unw2uedr6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unw2uedr6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unw2uedr6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: var(--color-bg-dark);
}
.cid-unw2uedr6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unw2uedr6J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unw2uedr6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unw2uedr6J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unw2uedr6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unw2uedr6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-unw2uedr6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unw2uedr6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unw2uedr6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unw2uedr6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unw2uedr6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unw2uedr6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unw2uedr6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unw2uedr6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unw2uedr6J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-unw2uedr6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unw2uedr6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unw2uedr6J .navbar {
    height: 70px;
  }
  .cid-unw2uedr6J .navbar.opened {
    height: auto;
  }
  .cid-unw2uedr6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unw2ueUpIQ {
  padding-top: 16rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1231.jpeg");
}
.cid-unw2ueUpIQ .mbr-section-title {
  color: var(--color-fancy);
  text-align: center;
}
.cid-unw2ueUpIQ .mbr-text,
.cid-unw2ueUpIQ .mbr-section-btn {
  color: var(--color-font);
  text-align: center;
}
.cid-unw2ufnqsB {
  padding-top: 9rem;
  padding-bottom: 8rem;
  background-color: var(--color-bg-dark);
}
.cid-unw2ufnqsB .content-wrapper {
  background: var(--color-bg-light);
}
@media (max-width: 991px) {
  .cid-unw2ufnqsB .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-unw2ufnqsB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unw2ufnqsB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-unw2ufnqsB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unw2ufnqsB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-unw2ufnqsB .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-unw2ufnqsB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-unw2ufnqsB .card-title {
  color: var(--color-fancy);
}
.cid-unw2ufnqsB .mbr-text,
.cid-unw2ufnqsB .mbr-section-btn {
  color: var(--color-font);
  text-align: left;
}
.cid-unw34AnNTF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1231.jpeg");
}
.cid-unw34AnNTF .mbr-section-title {
  color: var(--color-fancy);
  text-align: center;
}
.cid-unw34AnNTF .mbr-text,
.cid-unw34AnNTF .mbr-section-btn {
  color: var(--color-font);
  text-align: center;
}
.cid-unw2ufSqHs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--color-bg-dark);
}
.cid-unw2ufSqHs img,
.cid-unw2ufSqHs .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-unw2ufSqHs .item:focus,
.cid-unw2ufSqHs span:focus {
  outline: none;
}
.cid-unw2ufSqHs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-unw2ufSqHs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: var(--color-bg-light);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-unw2ufSqHs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-unw2ufSqHs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-unw2ufSqHs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-unw2ufSqHs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-unw2ufSqHs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-unw2ufSqHs .mbr-section-title {
  color: var(--color-fancy);
}
.cid-unw2ufSqHs .mbr-text,
.cid-unw2ufSqHs .mbr-section-btn {
  text-align: left;
}
.cid-unw2ufSqHs .item-title {
  text-align: left;
  color: var(--color-fancy);
}
.cid-unw2ufSqHs .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-unw2ufSqHs .mbr-section-subtitle {
  color: var(--color-font);
}
.cid-unw2ugGY6N {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: var(--color-bg-light);
}
.cid-unw2ugGY6N .mbr-section-title {
  color: var(--color-fancy);
}
.cid-unw2ugGY6N .mbr-section-subtitle {
  color: var(--color-font);
}
.cid-unw2uh9jAp {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-color: var(--color-bg-light);
}
@media (max-width: 767px) {
  .cid-unw2uh9jAp .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-unw2uh9jAp .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unw2uh9jAp .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-unw2uh9jAp .card-wrapper {
  border-radius: 4px;
  background-color: var(--color-bg-dark);
}
.cid-unw2uh9jAp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-unw2uh9jAp .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-unw2uh9jAp .mbr-text {
  color: var(--color-font);
  text-align: left;
}
.cid-unw2uh9jAp .card-title {
  color: var(--color-fancy);
}
.cid-unw2uh9jAp .price {
  color: var(--color-fancy);
}
.cid-unw2ui07hb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--color-bg-light);
}
@media (min-width: 992px) {
  .cid-unw2ui07hb .carousel {
    min-height: 800px;
  }
  .cid-unw2ui07hb .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unw2ui07hb .carousel {
    min-height: 520px;
  }
  .cid-unw2ui07hb .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-unw2ui07hb .carousel {
    min-height: 440px;
  }
  .cid-unw2ui07hb .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-unw2ui07hb .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-unw2ui07hb .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-unw2ui07hb .carousel,
.cid-unw2ui07hb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-unw2ui07hb .item-wrapper {
  width: 100%;
}
.cid-unw2ui07hb .carousel-caption {
  bottom: 40px;
}
.cid-unw2ui07hb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-unw2ui07hb .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-unw2ui07hb .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-unw2ui07hb .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-unw2ui07hb .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-unw2ui07hb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unw2ui07hb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unw2ui07hb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-unw2ui07hb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-unw2ui07hb .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-unw2ui07hb .carousel-indicators li.active,
.cid-unw2ui07hb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-unw2ui07hb .carousel-indicators li::after,
.cid-unw2ui07hb .carousel-indicators li::before {
  content: none;
}
.cid-unw2ui07hb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-unw2ui07hb .carousel-indicators {
    display: none !important;
  }
}
.cid-unw2uiDXZQ {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-color: var(--color-bg-dark);
}
.cid-unw2uiDXZQ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-unw2uiDXZQ .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-unw2uiDXZQ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-unw2uiDXZQ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-unw2uiDXZQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-bg-light);
  border-radius: 50%;
  opacity: 0;
  color: var(--color-bg-light);
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-unw2uiDXZQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-unw2uiDXZQ .carousel-control,
.cid-unw2uiDXZQ .close {
  background: #1b1b1b;
}
.cid-unw2uiDXZQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-unw2uiDXZQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-unw2uiDXZQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-unw2uiDXZQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-unw2uiDXZQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-unw2uiDXZQ .close::before {
  content: '\e91a';
}
.cid-unw2uiDXZQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-unw2uiDXZQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-unw2uiDXZQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unw2uiDXZQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unw2uiDXZQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-unw2uiDXZQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-unw2uiDXZQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-unw2uiDXZQ .carousel-indicators li.active,
.cid-unw2uiDXZQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-unw2uiDXZQ .carousel-indicators li::after,
.cid-unw2uiDXZQ .carousel-indicators li::before {
  content: none;
}
.cid-unw2uiDXZQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-unw2uiDXZQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-unw2uiDXZQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-unw2uiDXZQ .carousel-indicators {
    display: none;
  }
}
.cid-unw2uiDXZQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-unw2uiDXZQ .carousel-inner > .active {
  display: block;
}
.cid-unw2uiDXZQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unw2uiDXZQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-unw2uiDXZQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-unw2uiDXZQ .carousel-control,
  .cid-unw2uiDXZQ .carousel-indicators,
  .cid-unw2uiDXZQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-unw2uiDXZQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-unw2uiDXZQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-unw2uiDXZQ .carousel-indicators .active,
.cid-unw2uiDXZQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-unw2uiDXZQ .carousel-indicators .active {
  background: #fff;
}
.cid-unw2uiDXZQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-unw2uiDXZQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-unw2uiDXZQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-unw2uiDXZQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-unw2uiDXZQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-unw2uiDXZQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-unw2uiDXZQ .carousel {
  width: 100%;
}
.cid-unw2uiDXZQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-unw2uiDXZQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-unw2uiDXZQ .modal.fade .modal-dialog,
.cid-unw2uiDXZQ .modal.in .modal-dialog {
  transform: none;
}
.cid-unw2uiDXZQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-unw2uiDXZQ H6 {
  text-align: center;
}
.cid-unw2uiDXZQ H3 {
  color: var(--color-fancy);
}
.cid-unw2ujvSZZ {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background: #fafafa;
}
@media (max-width: 767px) {
  .cid-unw2ujvSZZ .row {
    flex-direction: column-reverse;
  }
  .cid-unw2ujvSZZ .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-unw2ujvSZZ .google-map {
  height: 100%;
  position: relative;
}
.cid-unw2ujvSZZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-unw2ujvSZZ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-unw2ujvSZZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-unw2ujvSZZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-unw2ujvSZZ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-unw2ujvSZZ .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: var(--color-bg-dark);
}
.cid-unw2ujvSZZ .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-unw2ujvSZZ .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unw2ujvSZZ .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-unw2ujvSZZ .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: var(--color-fancy);
}
.cid-unw2ujvSZZ .mbr-section-title {
  color: #05386b;
}
.cid-unw2ujvSZZ .mbr-section-subtitle {
  color: #05386b;
}
.cid-unw2ujvSZZ .card-title {
  color: #05386b;
}
.cid-unw2ujvSZZ P {
  color: #05386b;
}
.cid-unw2ukbmDo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #05386b;
}
.cid-unw2ukbmDo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-unw2ukbmDo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-unw2ukbmDo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-unw2ukbmDo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-unw2ukbmDo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-unw2ukbmDo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-unw2ukbmDo .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-unw2ukbmDo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: var(--color-bg-light);
}
.cid-unw2ukbmDo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-unw2ukbmDo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-unw2ukbmDo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-unw2ukbmDo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-unw2ukbmDo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-unw2ukbmDo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-unw2GfUyQU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--color-bg-light);
}
.cid-unw2GfUyQU .mbr-overlay {
  background-color: var(--color-bg-light);
  opacity: 0.4;
}
.cid-unw2GfUyQU form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-unw2GfUyQU form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-unw2GfUyQU form .mbr-section-btn .btn {
    width: 100%;
  }
}

/*---------------*/
/*   Destinace   */
/*---------------*/

/* Slider Main */
.sliderMain {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: var(--color-bg-light);
}
.sliderMain img,
.sliderMain .item-img {
  width: 100%;
}
.sliderMain .item-img{
    height: 270px;
    overflow: hidden;
}
.sliderMain .item:focus,
.sliderMain span:focus {
  outline: none;
}
.sliderMain .item-wrapper {
  position: relative;
}
.sliderMain .slide-content {
  position: relative;
  border-radius: 4px;
  background: var(--color-bg-dark);
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
  min-width: 400px;
}
.slide-content h5{
    font-size: clamp(20px, 2vw, 24px) !important;
}
.room-detail h5{
    /*max-width: 100% !important;*/
    font-size: clamp(18px, 1.7vw, 24px) !important;
    overflow-wrap: break-word !important;
}
.room-detail .cover-photo {
    height: 300px;
    overflow: hidden;   
}
.card-img-top{
    height: 100%;       /* obrázek vyplní výšku */
    width: auto;        /* šířka zůstane proporční */
    object-fit: cover;  /* zajistí oříznutí a vyplnění */
    object-position: center;
}
.price-block{
    background-color: var(--color-fancy-special-hover) !important;
}
@media (min-width: 992px) {
  .sliderMain .slide-content .item-content {
    padding: 2rem 1rem 0;
  }
  .sliderMain .slide-content .item-footer {
    padding: 0 1rem 2rem;
  }
  .room-detail h5{
    max-width: 100% !important;
    font-size: 18px !important;
}
}
@media (max-width: 991px) {
  .sliderMain .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .sliderMain .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
  
}

.sliderMain .mbr-section-btn {
  margin-top: auto !important;
}
.sliderMain .mbr-section-title {
  color: var(--color-fancy);
}
.sliderMain .mbr-text,
.sliderMain .mbr-section-btn {
  text-align: center;
  color: var(--color-font);
}
.sliderMain .item-title {
  text-align: center;
  color: var(--color-font);
  font-size: 1.5rem;
}
.sliderMain .item-subtitle {
  text-align: left;
}
.sliderMain .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .sliderMain .embla__slide {
    min-width: 350px;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.sliderMain .embla__button--next,
.sliderMain .embla__button--prev {
  display: flex;
}
.sliderMain .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sliderMain .embla__button:disabled {
  cursor: default;
  display: none;
}
.sliderMain .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.sliderMain .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.sliderMain .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .sliderMain .embla__button {
    top: auto;
  }
}
.sliderMain .embla {
  position: relative;
  width: 100%;
}
.sliderMain .embla__viewport {
  overflow-y: hidden;
  overflow-x: scroll;
  width: 100%;
}
.sliderMain .embla__viewport.is-draggable {
  cursor: grab;
}
.sliderMain .embla__viewport.is-dragging {
  cursor: grabbing;
}
.sliderMain .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Slider - Sub */
.sliderSub {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: var(--color-bg-dark);
}
.sliderSub img,
.sliderSub .item-img {
  width: 100%;
}
.sliderSub .item:focus,
.sliderSub span:focus {
  outline: none;
}
.sliderSub .item-wrapper {
  position: relative;
}
.sliderSub .slide-content {
  position: relative;
  border-radius: 4px;
  background: var(--color-bg-light);
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .sliderSub .slide-content .item-content {
    padding: 2rem 1rem 0;
  }
  .sliderSub .slide-content .item-footer {
    padding: 0.5rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .sliderSub .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .sliderSub .slide-content .item-footer {
    padding: 0.5rem 1rem 1rem !important;
  }
}
.room-detail{
    font-family: 'Inter', sans-serif !important;
}
.room-text{
    margin: auto 0;
    font-size: 1rem;
}
.sliderSub .mbr-section-btn {
  margin-top: auto !important;
}
.sliderSub .mbr-section-title {
  color: var(--color-fancy);
}
.sliderSub .mbr-text,
.sliderSub .mbr-section-btn {
  text-align: center;
  color: var(--color-font);
}
.sliderSub .item-title {
  text-align: center;
  color: var(--color-font);
}
.sliderSub .item-subtitle {
  text-align: left;
}
.sliderSub .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .sliderSub .embla__slide {
    min-width: 90%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.sliderSub .embla__button--next,
.sliderSub .embla__button--prev {
  display: flex;
}
.sliderSub .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sliderSub .embla__button:disabled {
  cursor: default;
  display: none;
}
.sliderSub .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.sliderSub .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.sliderSub .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .sliderSub .embla__button {
    top: auto;
  }
}
.sliderSub .embla {
  position: relative;
  width: 100%;
}
.sliderSub .embla__viewport {
  overflow-y: hidden;
  overflow-x: scroll;
  width: 100%;
}
.sliderSub .embla__viewport.is-draggable {
  cursor: grab;
}
.sliderSub .embla__viewport.is-dragging {
  cursor: grabbing;
}
.sliderSub .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ratingLabel{
    font-size: 13px;
    font-weight: bold;
    color: var(--color-fancy);
    font-family: 'Inter', sans-serif;
}


/* NamePanel Main */
.namePanel {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.namePanel .mbr-fallback-image.disabled {
  display: none;
}
.namePanel .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.namePanel .mbr-text,
.namePanel .mbr-section-btn {
  color: #232323;
}
.namePanel .card-title,
.namePanel .card-box {
  color: var(--color-font);
}
.namePanel .mbr-text,
.namePanel .link-wrap {
  color: var(--color-bg-light);
}

/* Panel - Základní info */

.infoPanel {
    padding-top: 4rem;
    padding-bottom: 2rem;
    background-color: var(--color-bg-light);
}
.infoPanel .mbr-fallback-image.disabled {
  display: none;
}
/*.infoPanel h4{
    text-align: center;
}*/
.infoPanel h5{
    font-weight: bold;
}
.infoPanel .container.main > .row:first-of-type{
    background: var(--color-bg-dark);
}
.infoPanel .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.infoPanel .card-wrapper {
    padding-right: 2rem;
}
.infoPanel p{
    text-align: justify;
}
.infoPanel ul{
    list-style-type: none;
}
.infoPanel li, .locationBreadCrumbsWrap{
    display: flex;            /* Aktivuje flexbox */
    align-items: center;      /* Vertikální zarovnání na střed */
}

.infoPanel li p{
    padding: 0;
    margin: 0;
}
.infoPanel li ul li{
    padding: 5px;
}
.locationBreadCrumbs{
    padding-left: 8px;
    font-weight: bold;
    color: var(--color-fancy);
}


@media (max-width: 992px) {
  .infoPanel .card {
    margin-bottom: 2rem!important;
  }
  .infoPanel .card-wrapper {
    padding: 0;
  }
  .infoPanel ul{
      padding-left: 0;
      padding-right: 0;
  }
}
@media (max-width: 767px) {
  .infoPanel .link-wrap {
    align-items: center;
  }
}
.infoPanel .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.infoPanel .card-title,
.infoPanel .card-box {
  color: var(--color-font);
}


/* Info Block */

.descriptionPanel {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: var(--color-bg-light);
}
.descriptionPanel p{
    text-align: justify;
}
.descriptionPanel ul li{
    /*text-align: justify;*/
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}
/* FotoGalerie */
.sliderGalerie {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: var(--color-bg-light);
}
@media (min-width: 992px) {
  .sliderGalerie .carousel {
    min-height: 600px;
  }
  .sliderGalerie .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .sliderGalerie .carousel {
    min-height: 390px;
  }
  .sliderGalerie .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .sliderGalerie .carousel {
    min-height: 330px;
  }
  .sliderGalerie .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .sliderGalerie .container .carousel-control {
    margin-bottom: 0;
  }
  .sliderGalerie .content-slider-wrap {
    width: 100% !important;
  }
}
.sliderGalerie .carousel,
.sliderGalerie .carousel-inner {
  display: flex;
  align-items: center;
}
.sliderGalerie .item-wrapper {
  width: 100%;
}
.sliderGalerie .carousel-caption {
  bottom: 40px;
}
.sliderGalerie .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.sliderGalerie .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.sliderGalerie .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.sliderGalerie .container .carousel-indicators {
  margin-bottom: 3px;
}
.sliderGalerie .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.sliderGalerie .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.sliderGalerie .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .sliderGalerie .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.sliderGalerie .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.sliderGalerie .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.sliderGalerie .carousel-indicators li.active,
.sliderGalerie .carousel-indicators li:hover {
  opacity: 0.9;
}
.sliderGalerie .carousel-indicators li::after,
.sliderGalerie .carousel-indicators li::before {
  content: none;
}
.sliderGalerie .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .sliderGalerie .carousel-indicators {
    display: none !important;
  }
}

/* DESTINACE - Maghic*/

/*-------------------*/
/*     Objednávky    */
/*-------------------*/

.filter option{
    font-family: 'Inter', sans-serif !important;
    
}

#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Polotransparentní overlay */
    z-index: 1000;
    display: none;
}

.spinner {
    border: 4px solid var(--color-bg-dark); /* Light grey */
    border-top: 4px solid var(--color-fancy); /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Polotransparentní overlay */
    z-index: 999;
}

/*-------------------*/
/*   Detail Pokoje   */
/*-------------------*/

.clPokoj h4{
    text-align: center;
}
.clPokoj .row{
    background-color: var(--color-bg-dark);
}
.adInfo{
    
}
.nabidkyTab {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: var(--color-bg-light);
}
.nabidkyTab .container, .filter .container{
    background-color: var(--color-bg-dark);
}
.offerTable{
    margin:0 2rem;
    align-items: center;
}
.offerTable div{
    margin: 0 auto;
}
.offerTable div p{
    text-align: center;
}
.bold{
    font-weight: bold;
}
.offerTable .navbar-buttons{
    text-align: center;
}
/* Formulářové prvky*/
.form-container {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

label {
    display: block;
    color: var(--color-fancy);
    margin-bottom: 5px;
    font-weight: bold;
    font-family: Inter;
    padding-left: 20px;
}

input[type="text"],
input[type="email"],
input[type="date"],
select {
    font-family: Inter;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--color-fancy);
    border-radius: 10px;
    background-color: white; /* Změna na bílé pozadí vstupů */
    color: #333;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
select:focus {
    outline: none;
    border-color: var(--color-fancy);
    box-shadow: 0 0 8px rgba(168, 105, 71, 0.5);
}
form button{
    font-family: Inter;
}
select {
    appearance: none;
    background-color: white;
}
select option{
    font-family: Inter !important;
}
/*Výpisová tabulka*/
.table-div {
    display: flex;
    flex-direction: column;
}

.table-header, .table-row {
    display: flex;
    flex-wrap: wrap;
}

.table-cell {
    padding: 10px;
    border: 1px solid #dee2e6;
    flex: 1; /* Dělí buňky rovnoměrně */
    min-width: 120px; /* Minimální šířka buňky pro lepší responsivitu */
    text-align: center;
    background-color: var(--color-bg-light);
}

.table-header .table-cell{
    background-color: var(--color-fancy)
}
.table-header {
    background-color: var(--color-fancy) !important;
    color: white;
    font-weight: bold;
}
.centered-div {
    display: flex;
    justify-content: center; /* Horizontální zarovnání */
    align-items: center;    /* Vertikální zarovnání */
    height: 100%;
}
.table-row .table-cell:last-child {
    display: flex;
    justify-content: space-around;
}

/* Objednávky - filtr, výpis */

.dark-color {
    color: var(--color-fancy);
}

.light-color {
    background-color: var(--color-bg-dark);
}

.text-color {
    color: var(--color-font);
}

.item-title {
    color: var(--color-fancy);
    font-weight: bold;
    font-size: 1.25rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.item-description, .item-description-text {
    color: var(--color-font);
    font-size: 0.9rem;
}
.item-description{
    list-style-type: none; 
    padding-left:0.5rem;
}
.item-description-text{
    height: 140px;
    list-style-type: disc;
}
.item-description li::marker{
    color: var(--color-fancy);
}

.item-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-bg-dark);
    transition: transform 0.2s ease;
    font-family: Inter;
    
}

.item-card:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-detail {
    background-color: var(--color-fancy);
    color: white;
}

.btn-detail:hover {
    background-color: var(--color-fancy-hover);
    color: white;
}

/* Kontakty*/

.contactForm .container{
    background-color: var(--color-bg-dark);
}

.success, .error {
    max-width: 400px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 5px;
    font-family: Inter, sans-serif;
}
.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Blogy z cest */
.blogPost{
    font-family: Inter,sans-serif;
}
.timeline {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    width: 80%;
}

/* Čára timeline */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-fancy);
    transform: translateX(-50%);
}

/* Bloky timeline */
.timeline-post {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: var(--color-bg-dark);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px; /* Vzdálenost mezi příspěvky */
    transition: transform 0.3s ease;
}
.timeline-post p{
    text-align: justify !important;
}
.timeline-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Levá strana */
.timeline-post-left {
    left: 0;
}

/* Pravá strana */
.timeline-post-right {
    left: 55%; /* Posun doprava od středu */
}

/* Čára vedoucí od příspěvku k časové ose */
.timeline-post::after {
    content: '';
    position: absolute;
    top: 50%; /* Umístění čáry na střed příspěvku */
    transform: translateY(-50%);
    width: 50px; /* Délka čáry k ose timeline */
    height: 3px; /* Šířka čáry */
    background-color: var(--color-fancy);
    z-index: -1; /* Umístění pod příspěvek */
}

/* Umístění čáry na správnou stranu */
.timeline-post-left::after {
    left: 100%; /* Na pravé straně */
}

.timeline-post-right::after {
    left: -11%; /* Na levé straně */
}

/* Obrázek uvnitř příspěvku */
.timeline-post img , .postCoverPic{
    /*width: 100%;
    height: auto;
    border-radius: 8px;*/
    width: auto;
    max-height: 400px;
    border-radius: 8px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.post-body {
    padding: 10px;
}

.post-title {
    font-size: 1.5rem;
    color: var(--color-fancy);
}

.post-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.post-subtitle {
    font-size: 1.2rem;
    color: var(--color-font);
    margin-bottom: 10px;
}

.post-text {
    color: var(--color-font);
    font-size: 1rem;
}

.read-more {
    color: var(--color-fancy);
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.blogDetail p {
    line-height: 1.5;
    font-size: 1.3rem;
    text-align: justify;
}


/* Tabulka HOTEL ORDERS  */
/* ======= KONTEJNERY ======= */

.table-row,
.table-header {
    display: flex;
    width: 100%;
    align-items: stretch;
    margin-bottom: 12px;
    gap: 12px;
}

/* levá strana – dvě řady pod sebou */
.left-group {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 6px;
}

/* pravá strana – tlačítko */
.order-cell {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ======= VNITŘNÍ ŘÁDKY ======= */

.row-first,
.row-second {
    display: flex;
    width: 100%;
    min-height: 48px;           /* ⭐ pevná výška = vždy zarovnané */
    align-items: center;
    justify-content: center;
}

.full-width {
    flex: 1;
}

/* 4 sloupce */
.row-second .table-cell {
    flex: 1;
}


/* ======= OBECNÉ BUŇKY ======= */

.table-cell {
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    word-break: break-word;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title-cell{
    color: var(--color-fancy);
}

/* ======= HLAVIČKA ======= */

.header-left {
    display: flex;
    flex-direction: column;
}

.header-row {
    display: flex;
}

.header-row .table-cell {
    font-weight: bold;
}


/* ===============================
        RESPONSIVE BREAKPOINT
   =============================== */

/* ⭐ Responzivní transformace pod 900px */
@media (max-width: 992px) {

    .table-row,
    .table-header {
        flex-direction: column;
        gap: 3px;
    }

    .left-group {
        flex: none;
        width: 100%;
    }

    /* oba řádky pod sebou na full width */
    .row-first,
    .row-second {
        min-height: unset;   
        flex-direction: column;
        gap: 0px;
        align-items: stretch;
    }

    .row-second .table-cell {
        flex: none;
        width: 100%;
    }

    /* tlačítko dolů, přes celou šířku */
    .order-cell {
        width: 100%;
        flex: none;
    }
}



/* Mobilní verze: sloupce se změní na plnou šířku */
@media (max-width: 768px) {
    .timeline-post {
        width: 100%;
        left: 0 !important;
        margin-bottom: 20px;
    }

    .timeline-post::after {
        left: 100%; /* Na pravé straně */
    }

    .timeline::before {
        left: 50%;
        width: 2px;
    }
}

/* FANCY Shit*/

/* Vlajka */
#flag {
    display: inline-block;
    width: 40px; /* Šířka spanu, přizpůsobte podle potřeby */
    height: 26px; /* Výška spanu, přizpůsobte podle potřeby */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid lightgrey;
}
.flag_carousel {
    display: inline-block;
    width: 40px; /* Šířka spanu, přizpůsobte podle potřeby */
    height: 26px; /* Výška spanu, přizpůsobte podle potřeby */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid lightgrey;
}
.flag_filter{
    display: inline-block;
    width: 40px; /* Šířka spanu, přizpůsobte podle potřeby */
    height: 26px; /* Výška spanu, přizpůsobte podle potřeby */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid lightgrey;
}
/* Hodnocení - procenta */
.progress-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(#1381FF calc(var(--progress) * 1%), #D9F2FF 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    --progress: 0; /* Výchozí hodnota */
}

.progress-circle::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: #fff;
}

.progress-text {
    font-size: 16px;
    font-weight: bold;
    color: #1381FF;
    z-index: 1; /* Text nad kruhem */
}
.btn-webcam{
    max-width: 175px;
    background-color: var(--color-bg-dark);
    margin: 1rem auto;
    padding: 1rem;
    transition: box-shadow 0.2s ease-in-out;
}
.btn-webcam:hover{
    box-shadow: 5px 5px 10px var(--color-fancy);
}
.btn-webcam .icon{
    margin: 0;
    margin-bottom: 0.5rem;
}

.filteredItems .card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.blogDetail{
    color: var(--color-font);
    font-family: 'Inter', sans-serif;
}
.blogDetail .list-group-item{
    border-color: var(--color-bg-dark);
}
.blogDetail h1, h2, h3, h4{
    color: var(--color-fancy);
}
.blogDetail h5{
    color: var(--color-bg-dark);
}
.blogDetail h2{
    font-weight: bold;
}
.youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Poměr stran 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: black;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.tabs-wrapper{
    font-family: Inter, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tabs-container {
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    border: solid 3px var(--color-bg-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    background: #f9f9f9;
}

.tab-link {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    border: none;
    background: #f9f9f9;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.tab-link:hover {
    background: #e0e0e0;
}

.tab-link.active {
    background: white;
    color: var(--color-fancy);
    border-bottom: 3px solid var(--color-fancy);
}

.tab-content {
    display: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    text-align: justify !important;
    color: var(--color-font);
}
.tab-content p{
    font-size: 1.2rem;
    line-height: 1.2;
}

.tab-content.active {
    display: block;
}
.info-text
{
    font-family: Inter, Sans serif;
    font-size: 14px;
    padding-left: 20px;
    color: gray;
}

.liDisc {
    list-style-type: none;
}
.liDisc::before{
    content: ''; /* Nemusíme vkládat text, použijeme čistý obsah */
    display: inline-block; /* Zobrazí pseudo-element jako blok */
    width: 8px; /* Velikost odrážky */
    height: 8px; /* Velikost odrážky */
    border: 2px solid var(--color-fancy); /* Barva diskové odrážky */
    border-radius: 50%; /* Umožní, aby odrážka byla kulatá (disk) */
    margin-right: 10px; /* Mezera mezi odrážkou a textem */
    margin-bottom: 5px; /* Zarovnání odrážky s textem */
    position: relative;
    top: 2px; /* Jemné nastavení vertikálního zarovnání */
}
.liNone {
    list-style-type: none;
}

.h-400px{
    height: 500px !important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Nastaví barvu šipek */
  border-radius: 50%; /* Volitelné: zaoblení šipek */
  padding: 25px;
}

/* Banery */
.fixed-banner {
    position: fixed; /* Umožní fixní pozici */
    top: 50%; /* Vertikální zarovnání na střed */
    right: 0; /* Připevnění k levé straně */
    transform: translateY(-50%); /* Vycentrování na základě středu */
    z-index: 1000; /* Zajištění viditelnosti nad jinými prvky */
    background-color: #fff; /* Přidání pozadí (volitelné) */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Jemný stín pro lepší vzhled */
    padding: 10px; /* Vnitřní okraj */
    border: 1px solid #ccc; /* Ohraničení (volitelné) */
}

.fixed-banner img {
    max-width: 100%; /* Zajistí, že bannerová grafika nepřeteče kontejner */
    height: auto; /* Zachování poměru stran */
}

/* Kontejner banneru */
.banner-container {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%); /* Zpočátku je banner mimo obrazovku */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: transform 0.3s ease; /* Plynulá animace transformace */
}

/* Obsah banneru */
.banner-content {
    background-color: #fff; /* Barva pozadí banneru */
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2); /* Stín pro lepší vzhled */
    border: 1px solid #ccc; /* Ohraničení */
    padding: 10px; /* Vnitřní okraj */
    display: none; /* Zpočátku skryté */
}

/* Záložka */
.banner-tab {
    background-color: var(--color-fancy-special); /* Barva záložky */
    color: #fff;
    cursor: pointer;
    padding: 50px 10px;
    font-size: 18px;
    margin-bottom:50px;
    border-radius: 5px 0 0 5px; /* Zakulacení levého okraje */
    position: absolute;
    left: -30px; /* Mírné předsunutí záložky ven */
    top: 50%;
    transform: translateY(-200%);
    display: none;
}

/* Animace a viditelnost při vysunutí */
.banner-container.open .banner-content {
    display: block;
}
.banner-container.open {
    transform: translate(0%, -50%); /* Banner se posune o 30 % šířky obrazovky */
}

@media (max-width: 1670px) {
    .fixed-banner {
        display: none; /* Skrytí na menších obrazovkách */
    }
    .banner-tab{
        display: block;
    }
}

/* IKONY */
.icon{
    margin-right: 10px;
    display: inline-block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.icon-16{ width: 16px; height: 16px;}
.icon-24{ width: 24px; height: 24px;}
.icon-32{ width: 32px; height: 32px;}
.icon-48{ width: 48px; height: 48px;}
.icon-64{ width: 64px; height: 64px;}

.iconLowP{ background-image: url('../../../assets/icons/down_32.png');}
.iconHighP{ background-image: url('../../../assets/icons/up_32.png');}
.iconAccom{ background-image: url('../../../assets/icons/accomo_32.png');}
.iconCabin{ background-image: url('../../../assets/icons/cabin_32.png');}
.iconCable{ background-image: url('../../../assets/icons/cable_32.png');}
.iconChair{ background-image: url('../../../assets/icons/chair_32.png');}
.iconRecom{ background-image: url('../../../assets/icons/recom_32.png');}
.iconSlopes{ background-image: url('../../../assets/icons/slopes_32.png');}
.iconSpa{ background-image: url('../../../assets/icons/spa_32.png');}
.iconValue{ background-image: url('../../../assets/icons/value_32.png');}
.iconWebcam{ background-image: url('../../../assets/icons/webcam_64.png');}
.iconResort{ background-image: url('../../../assets/icons/resort_32.png');}
.iconSkiResort{ background-image: url('../../../assets/icons/ski-resort_32.png');}
.iconHotel{ background-image: url('../../../assets/icons/hotel_32.png');}
.iconPerson{ background-image: url('../../../assets/icons/person_32.png');}
.iconFB{ background-image: url('../../../assets/icons/facebook_64.png');}
.iconFBW{ background-image: url('../../../assets/icons/facebook_w_32.png');}
.iconInsta{ background-image: url('../../../assets/icons/instagram_64.png');}
.iconInstaW{ background-image: url('../../../assets/icons/instagram_w_32.png');}
.iconPhoneW{ background-image: url('../../../assets/icons/telephone_w_32.png');}
.iconMailW{ background-image: url('../../../assets/icons/mail_w_32.png');}
.iconSlopesRed{ background-color: red;}
.iconSlopesBlue{ background-color: blue;}
.iconSlopesBlack{ background-color: black;}
