body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Caveat', handwriting;
  font-size: 4.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6rem;
}
.display-2 {
  font-family: 'Caveat', handwriting;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Karla', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Karla', 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: 3.84rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.33rem + (4.8 - 2.33) * ((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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: #633615 !important;
}
.bg-success {
  background-color: #bbbbbb !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #633615 !important;
  border-color: #633615 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #1b0f06 !important;
  border-color: #1b0f06 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1b0f06 !important;
  border-color: #1b0f06 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #633615 !important;
  border-color: #633615 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #1b0f06 !important;
  border-color: #1b0f06 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1b0f06 !important;
  border-color: #1b0f06 !important;
}
.btn-info,
.btn-info:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !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: #ffffff !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: #ffffff !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: #ffffff !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: #ffffff !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: #ffffff !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: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #633615;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1b0f06 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #633615 !important;
  border-color: #633615 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #633615;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1b0f06 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #633615 !important;
  border-color: #633615 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: #633615 !important;
}
.text-secondary {
  color: #633615 !important;
}
.text-success {
  color: #bbbbbb !important;
}
.text-info {
  color: #000000 !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: #0f0803 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0f0803 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #888888 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !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: #633615;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.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: #633615;
  border-color: #633615;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #633615;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cc6f2b;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #633615 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #633615;
}
/* 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: #633615;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #633615;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #633615;
  border-bottom-color: #633615;
}
.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: #ffffff !important;
  background-color: #633615 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #633615 !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='%23633615' %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;
}
.cid-tKx8YFL3An .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tKx8YFL3An .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tKx8YFL3An .nav-item:focus,
.cid-tKx8YFL3An .nav-link:focus {
  outline: none;
}
.cid-tKx8YFL3An .text-white:hover,
.cid-tKx8YFL3An .text-white:active,
.cid-tKx8YFL3An .text-white:focus {
  color: white!important;
}
.cid-tKx8YFL3An .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKx8YFL3An .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tKx8YFL3An .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKx8YFL3An .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tKx8YFL3An .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tKx8YFL3An .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKx8YFL3An .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tKx8YFL3An .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKx8YFL3An .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKx8YFL3An .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tKx8YFL3An .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKx8YFL3An .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKx8YFL3An .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tKx8YFL3An .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKx8YFL3An .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKx8YFL3An .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKx8YFL3An .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKx8YFL3An .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKx8YFL3An .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tKx8YFL3An .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKx8YFL3An .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKx8YFL3An .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKx8YFL3An .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tKx8YFL3An .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKx8YFL3An .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKx8YFL3An .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKx8YFL3An .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKx8YFL3An .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKx8YFL3An .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKx8YFL3An .section {
  position: relative;
  overflow: visible!important;
}
.cid-tKx8YFL3An .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tKx8YFL3An .dropdown-item:hover {
  color: black!important;
}
.cid-tKx8YFL3An .dropdown-menu {
  background-color: white!important;
}
.cid-tKx8YFL3An .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tKx8YFL3An .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tKx8YFL3An .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tKx8YFL3An .nav-item .nav-link {
    position: relative;
  }
}
.cid-tKx8YFL3An .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKx8YFL3An .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tKx8YFL3An .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tKx8YFL3An .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKx8YFL3An .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKx8YFL3An .collapsed {
  flex-direction: row!important;
}
.cid-tKx8YFL3An .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKx8YFL3An .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKx8YFL3An .navbar-caption {
  font-weight: 600!important;
}
.cid-tKx8YFL3An .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKx8YFL3An .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKx8YFL3An .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKx8YFL3An .dropdown-item.active,
.cid-tKx8YFL3An .dropdown-item:active {
  background-color: transparent;
}
.cid-tKx8YFL3An .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tKx8YFL3An .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKx8YFL3An .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKx8YFL3An .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKx8YFL3An .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKx8YFL3An ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKx8YFL3An .navbar-buttons {
  text-align: center;
}
.cid-tKx8YFL3An button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKx8YFL3An button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tKx8YFL3An button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKx8YFL3An button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKx8YFL3An button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKx8YFL3An button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKx8YFL3An nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKx8YFL3An nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKx8YFL3An nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKx8YFL3An nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKx8YFL3An .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKx8YFL3An .nav-link {
  font-weight: 600!important;
}
.cid-tKx8YFL3An a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKx8YFL3An .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tKx8YFL3An .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tKx8YFL3An .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKx8YFL3An .navbar {
    height: 77px;
  }
  .cid-tKx8YFL3An .navbar.opened {
    height: auto;
  }
  .cid-tKx8YFL3An .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKytygM1yT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tKytygM1yT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKytygM1yT .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tKytygM1yT .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #efefef;
  z-index: -1;
}
.cid-tKytygM1yT img {
  border-radius: 1rem;
}
.cid-tKytygM1yT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKytygM1yT .row {
  flex-direction: row-reverse;
}
.cid-tKytygM1yT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tKytygM1yT .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tKytygM1yT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tKytygM1yT .mbr-section-title {
  color: #442916;
}
.cid-tKytygM1yT .mbr-section-subtitle,
.cid-tKytygM1yT .subtitle-wrap {
  color: #633615;
}
.cid-tKytygM1yT .mbr-text,
.cid-tKytygM1yT .mbr-section-btn {
  color: #19303d;
}
.cid-tKxoR4rhlD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1470x980.jpg");
}
.cid-tKxoR4rhlD .mbr-overlay {
  background: #fafafa;
  opacity: 0.9;
}
.cid-tKxoR4rhlD .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tKxoR4rhlD .item-content {
  background: #442916;
  transition: all 0.3s;
  border: 2px solid #633615;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tKxoR4rhlD .item-content:hover {
  background: #101511;
  border-color: #101511;
}
@media (max-width: 767px) {
  .cid-tKxoR4rhlD .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tKxoR4rhlD .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #101511;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #777777;
}
@media (max-width: 767px) {
  .cid-tKxoR4rhlD .img-text {
    left: 1rem;
  }
}
.cid-tKxoR4rhlD img,
.cid-tKxoR4rhlD .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-tKxoR4rhlD .item:focus,
.cid-tKxoR4rhlD span:focus {
  outline: none;
}
.cid-tKxoR4rhlD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKxoR4rhlD .mbr-section-title {
  color: #633615;
  text-align: right;
}
.cid-tKxoR4rhlD .mbr-text,
.cid-tKxoR4rhlD .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-tKxoR4rhlD .item-title {
  text-align: left;
  color: #1b2026;
}
.cid-tKxoR4rhlD .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tKxoR4rhlD .mbr-section-subtitle {
  color: #633615;
}
.cid-tZobEuOGEU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/horombo-hut-800x533.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-tZobEuOGEU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZobEuOGEU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZobEuOGEU .mbr-section-head {
  margin-bottom: 2rem;
  width: 100%;
}
.cid-tZobEuOGEU .mbr-section-title {
  color: #442916;
  text-align: right;
}
.cid-tZobEuOGEU .mbr-section-subtitle {
  color: #181817;
  margin-top: 1rem;
}
.cid-tZobEuOGEU .card-row {
  align-items: stretch;
}
.cid-tZobEuOGEU .item {
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tZobEuOGEU .item {
    width: 20% !important;
  }
}
.cid-tZobEuOGEU .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  padding-top: 20px;
  min-height: 235px;
}
@media (max-width: 991px) {
  .cid-tZobEuOGEU .item-wrapper {
    min-height: 180px;
  }
}
.cid-tZobEuOGEU .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-tZobEuOGEU .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tZobEuOGEU .card-box {
  position: relative;
  z-index: 3;
  padding: 8rem 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(24, 24, 23, 0), rgba(24, 24, 23, 0.9) 65%);
  transition: 0.4s all;
  opacity: 1;
}
.cid-tZobEuOGEU .card-title {
  color: #f6f6ef;
  margin-bottom: 0.6rem;
}
.cid-tZobEuOGEU .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
  margin-top: 0 !important;
  text-align: center;
}
.cid-tZobEuOGEU .card-text {
  color: #f6f6ef;
  margin-bottom: 0;
}
.cid-tZobEuOGEU .card-text-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}
.cid-tZobEuOGEU .iconfont-wrapper {
  margin-right: 18px;
}
.cid-tZobEuOGEU .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #f6f6ef;
  width: fit-content;
}
.cid-tZobEuOGEU .bg-overlay {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cid-tZobEuOGEU .bg-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181817;
  opacity: 0;
  z-index: 5;
  transition: 0.4s all;
}
.cid-tZobEuOGEU .mbr-section-btn {
  position: relative;
  z-index: 6;
  transform: translateY(2rem);
  transition: 0.4s all;
  opacity: 0;
  padding: 0 1rem;
}
.cid-tZobEuOGEU .mbr-section-btn .btn {
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-tZobEuOGEU .mbr-section-btn {
    width: auto;
  }
  .cid-tZobEuOGEU .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-u0dSyHll5D {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u0dSyHll5D .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0dSyHll5D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0dSyHll5D .container {
  max-width: 1280px;
}
.cid-u0dSyHll5D .row {
  justify-content: center;
}
.cid-u0dSyHll5D .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #442916;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u0dSyHll5D .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-u0dSyHll5D .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-u0dSyHll5D .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-u0dSyHll5D .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-u0dSyHll5D .text-wrapper {
    width: 100%;
  }
}
.cid-u0dSyHll5D .mbr-section-title {
  color: #FFFFFF;
  text-align: right;
}
.cid-u0dSyHll5D .mbr-section-subtitle {
  color: #ffffff;
  opacity: 0.8;
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0dSyHll5D .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-u0dSyHll5D .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-u0dSyHll5D .link {
  text-decoration: underline !important;
}
.cid-u0dSyHll5D .col-video {
  position: relative;
  display: flex;
  width: 60%;
  left: -8rem;
}
@media (max-width: 1599px) {
  .cid-u0dSyHll5D .col-video {
    left: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-u0dSyHll5D .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-u0dSyHll5D .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-u0dSyHll5D .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
}
.cid-u0dSyHll5D .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-u0dSyHll5D .col-video .link {
  margin-right: 1rem;
}
.cid-u0dSyHll5D .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-u0dSyHll5D .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-u0dSyHll5D .mbr-media {
  position: relative;
}
.cid-u0dSyHll5D .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0dSyHll5D .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-u0dSyHll5D .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-u0dSyHll5D .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0dSyHll5D .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0dSyHll5D .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0dSyHll5D .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0dSyHll5D .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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0dSyHll5D .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0dSyHll5D a:hover {
  text-decoration-line: none !important;
}
.cid-tZPlHnZggp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/leonard-von-bibra-l4-bdd01wmm-unsplash-929x619.jpg");
}
.cid-tZPlHnZggp .mbr-overlay {
  background: #fafafa;
  opacity: 0.8;
}
.cid-tZPlHnZggp img,
.cid-tZPlHnZggp .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tZPlHnZggp .item:focus,
.cid-tZPlHnZggp span:focus {
  outline: none;
}
.cid-tZPlHnZggp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZPlHnZggp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZPlHnZggp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tZPlHnZggp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZPlHnZggp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tZPlHnZggp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tZPlHnZggp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZPlHnZggp .mbr-section-title {
  color: #442916;
}
.cid-tZPlHnZggp .mbr-text,
.cid-tZPlHnZggp .mbr-section-btn {
  text-align: left;
}
.cid-tZPlHnZggp .item-title {
  text-align: left;
  color: #633615;
}
.cid-tZPlHnZggp .item-subtitle {
  text-align: left;
  color: #442916;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tL0mXnb1Rj .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tL0mXnb1Rj .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tL0mXnb1Rj .nav-item:focus,
.cid-tL0mXnb1Rj .nav-link:focus {
  outline: none;
}
.cid-tL0mXnb1Rj .text-white:hover,
.cid-tL0mXnb1Rj .text-white:active,
.cid-tL0mXnb1Rj .text-white:focus {
  color: white!important;
}
.cid-tL0mXnb1Rj .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tL0mXnb1Rj .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tL0mXnb1Rj .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tL0mXnb1Rj .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tL0mXnb1Rj .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tL0mXnb1Rj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tL0mXnb1Rj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tL0mXnb1Rj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tL0mXnb1Rj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tL0mXnb1Rj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tL0mXnb1Rj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tL0mXnb1Rj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tL0mXnb1Rj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tL0mXnb1Rj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tL0mXnb1Rj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tL0mXnb1Rj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tL0mXnb1Rj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tL0mXnb1Rj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tL0mXnb1Rj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tL0mXnb1Rj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tL0mXnb1Rj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tL0mXnb1Rj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tL0mXnb1Rj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tL0mXnb1Rj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tL0mXnb1Rj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tL0mXnb1Rj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tL0mXnb1Rj .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tL0mXnb1Rj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tL0mXnb1Rj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tL0mXnb1Rj .section {
  position: relative;
  overflow: visible!important;
}
.cid-tL0mXnb1Rj .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tL0mXnb1Rj .dropdown-item:hover {
  color: black!important;
}
.cid-tL0mXnb1Rj .dropdown-menu {
  background-color: white!important;
}
.cid-tL0mXnb1Rj .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tL0mXnb1Rj .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tL0mXnb1Rj .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tL0mXnb1Rj .nav-item .nav-link {
    position: relative;
  }
}
.cid-tL0mXnb1Rj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tL0mXnb1Rj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tL0mXnb1Rj .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tL0mXnb1Rj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tL0mXnb1Rj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tL0mXnb1Rj .collapsed {
  flex-direction: row!important;
}
.cid-tL0mXnb1Rj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tL0mXnb1Rj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tL0mXnb1Rj .navbar-caption {
  font-weight: 600!important;
}
.cid-tL0mXnb1Rj .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tL0mXnb1Rj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tL0mXnb1Rj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tL0mXnb1Rj .dropdown-item.active,
.cid-tL0mXnb1Rj .dropdown-item:active {
  background-color: transparent;
}
.cid-tL0mXnb1Rj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tL0mXnb1Rj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tL0mXnb1Rj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tL0mXnb1Rj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tL0mXnb1Rj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tL0mXnb1Rj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tL0mXnb1Rj .navbar-buttons {
  text-align: center;
}
.cid-tL0mXnb1Rj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tL0mXnb1Rj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tL0mXnb1Rj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tL0mXnb1Rj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tL0mXnb1Rj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tL0mXnb1Rj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tL0mXnb1Rj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tL0mXnb1Rj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tL0mXnb1Rj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tL0mXnb1Rj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tL0mXnb1Rj .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tL0mXnb1Rj .nav-link {
  font-weight: 600!important;
}
.cid-tL0mXnb1Rj a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tL0mXnb1Rj .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tL0mXnb1Rj .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tL0mXnb1Rj .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tL0mXnb1Rj .navbar {
    height: 77px;
  }
  .cid-tL0mXnb1Rj .navbar.opened {
    height: auto;
  }
  .cid-tL0mXnb1Rj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tL0q52fiVA {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231013-81420-2000x1125.jpg");
}
.cid-tL0q52fiVA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL0q52fiVA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tL0q52fiVA .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZomH6zilT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tP45QXQRN5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1470x980.jpg");
}
.cid-tP45QXQRN5 .mbr-overlay {
  background: #fafafa;
  opacity: 0.9;
}
.cid-tP45QXQRN5 .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tP45QXQRN5 .item-content {
  background: #442916;
  transition: all 0.3s;
  border: 2px solid #442916;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tP45QXQRN5 .item-content:hover {
  background: #000000;
  border-color: #000000;
}
@media (max-width: 767px) {
  .cid-tP45QXQRN5 .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tP45QXQRN5 .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #000000;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #777777;
}
@media (max-width: 767px) {
  .cid-tP45QXQRN5 .img-text {
    left: 1rem;
  }
}
.cid-tP45QXQRN5 img,
.cid-tP45QXQRN5 .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-tP45QXQRN5 .item:focus,
.cid-tP45QXQRN5 span:focus {
  outline: none;
}
.cid-tP45QXQRN5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tP45QXQRN5 .mbr-section-title {
  color: #232323;
}
.cid-tP45QXQRN5 .mbr-text,
.cid-tP45QXQRN5 .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-tP45QXQRN5 .item-title {
  text-align: left;
  color: #1b2026;
}
.cid-tP45QXQRN5 .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tP45QXQRN5 .mbr-section-subtitle {
  color: #633615;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tL0HPOcJZm .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tL0HPOcJZm .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tL0HPOcJZm .nav-item:focus,
.cid-tL0HPOcJZm .nav-link:focus {
  outline: none;
}
.cid-tL0HPOcJZm .text-white:hover,
.cid-tL0HPOcJZm .text-white:active,
.cid-tL0HPOcJZm .text-white:focus {
  color: white!important;
}
.cid-tL0HPOcJZm .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tL0HPOcJZm .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tL0HPOcJZm .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tL0HPOcJZm .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tL0HPOcJZm .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tL0HPOcJZm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tL0HPOcJZm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tL0HPOcJZm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tL0HPOcJZm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tL0HPOcJZm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tL0HPOcJZm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tL0HPOcJZm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tL0HPOcJZm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tL0HPOcJZm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tL0HPOcJZm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tL0HPOcJZm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tL0HPOcJZm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tL0HPOcJZm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tL0HPOcJZm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tL0HPOcJZm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tL0HPOcJZm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tL0HPOcJZm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tL0HPOcJZm .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tL0HPOcJZm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tL0HPOcJZm .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tL0HPOcJZm .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tL0HPOcJZm .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tL0HPOcJZm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tL0HPOcJZm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tL0HPOcJZm .section {
  position: relative;
  overflow: visible!important;
}
.cid-tL0HPOcJZm .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tL0HPOcJZm .dropdown-item:hover {
  color: black!important;
}
.cid-tL0HPOcJZm .dropdown-menu {
  background-color: white!important;
}
.cid-tL0HPOcJZm .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tL0HPOcJZm .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tL0HPOcJZm .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tL0HPOcJZm .nav-item .nav-link {
    position: relative;
  }
}
.cid-tL0HPOcJZm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tL0HPOcJZm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tL0HPOcJZm .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tL0HPOcJZm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tL0HPOcJZm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tL0HPOcJZm .collapsed {
  flex-direction: row!important;
}
.cid-tL0HPOcJZm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tL0HPOcJZm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tL0HPOcJZm .navbar-caption {
  font-weight: 600!important;
}
.cid-tL0HPOcJZm .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tL0HPOcJZm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tL0HPOcJZm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tL0HPOcJZm .dropdown-item.active,
.cid-tL0HPOcJZm .dropdown-item:active {
  background-color: transparent;
}
.cid-tL0HPOcJZm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tL0HPOcJZm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tL0HPOcJZm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tL0HPOcJZm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tL0HPOcJZm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tL0HPOcJZm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tL0HPOcJZm .navbar-buttons {
  text-align: center;
}
.cid-tL0HPOcJZm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tL0HPOcJZm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tL0HPOcJZm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tL0HPOcJZm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tL0HPOcJZm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tL0HPOcJZm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tL0HPOcJZm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tL0HPOcJZm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tL0HPOcJZm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tL0HPOcJZm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tL0HPOcJZm .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tL0HPOcJZm .nav-link {
  font-weight: 600!important;
}
.cid-tL0HPOcJZm a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tL0HPOcJZm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tL0HPOcJZm .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tL0HPOcJZm .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tL0HPOcJZm .navbar {
    height: 77px;
  }
  .cid-tL0HPOcJZm .navbar.opened {
    height: auto;
  }
  .cid-tL0HPOcJZm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tL0HPQa1Os {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231023-85618-2000x1125.jpg");
}
.cid-tL0HPQa1Os .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL0HPQa1Os .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tL0HPQa1Os .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZtUJyK9l3 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tL0TxHpjsO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL0TxHpjsO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL0TxHpjsO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tL0TxHpjsO .mbr-section-title,
.cid-tL0TxHpjsO .mbr-section-subtitle {
  text-align: center;
}
.cid-tL0TxHpjsO .cost {
  word-break: normal;
}
.cid-tL0TxHpjsO .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tL0TxHpjsO .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tL0TxHpjsO .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tL0TxHpjsO .card-wrapper {
    padding: 1rem;
  }
}
.cid-tL19d91Uuc {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tL19d91Uuc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tL19d91Uuc .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tL19d91Uuc textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tL19d91Uuc .form-row {
    flex-direction: column;
  }
}
.cid-tL19d91Uuc h4 {
  margin-bottom: 2rem;
}
.cid-tL19d91Uuc .form-control,
.cid-tL19d91Uuc .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tL19d91Uuc .form-control,
.cid-tL19d91Uuc .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tL19d91Uuc .form-control::-webkit-input-placeholder,
.cid-tL19d91Uuc .field-input::-webkit-input-placeholder,
.cid-tL19d91Uuc .form-control::-webkit-input-placeholder,
.cid-tL19d91Uuc .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tL19d91Uuc .form-control:-moz-placeholder,
.cid-tL19d91Uuc .field-input:-moz-placeholder,
.cid-tL19d91Uuc .form-control:-moz-placeholder,
.cid-tL19d91Uuc .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tL19d91Uuc .form-control:hover,
.cid-tL19d91Uuc .field-input:hover,
.cid-tL19d91Uuc .form-control:focus,
.cid-tL19d91Uuc .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tL19d91Uuc .form-control:hover::-webkit-input-placeholder,
.cid-tL19d91Uuc .field-input:hover::-webkit-input-placeholder,
.cid-tL19d91Uuc .form-control:focus::-webkit-input-placeholder,
.cid-tL19d91Uuc .field-input:focus::-webkit-input-placeholder,
.cid-tL19d91Uuc .form-control:hover::-webkit-input-placeholder,
.cid-tL19d91Uuc .field-input:hover::-webkit-input-placeholder,
.cid-tL19d91Uuc .form-control:focus::-webkit-input-placeholder,
.cid-tL19d91Uuc .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tL19d91Uuc .form-control:hover:-moz-placeholder,
.cid-tL19d91Uuc .field-input:hover:-moz-placeholder,
.cid-tL19d91Uuc .form-control:focus:-moz-placeholder,
.cid-tL19d91Uuc .field-input:focus:-moz-placeholder,
.cid-tL19d91Uuc .form-control:hover:-moz-placeholder,
.cid-tL19d91Uuc .field-input:hover:-moz-placeholder,
.cid-tL19d91Uuc .form-control:focus:-moz-placeholder,
.cid-tL19d91Uuc .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tL19d91Uuc .jq-number__spin:hover,
.cid-tL19d91Uuc .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tL19d91Uuc .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tL19d91Uuc .jq-selectbox li,
.cid-tL19d91Uuc .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tL19d91Uuc .jq-selectbox li:hover,
.cid-tL19d91Uuc .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tL19d91Uuc .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tL19d91Uuc .jq-number__spin.minus:hover:after,
.cid-tL19d91Uuc .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tL19d91Uuc .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tL19d91Uuc .jq-number__spin.minus:after,
.cid-tL19d91Uuc .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tL19d91Uuc input::-webkit-clear-button {
  display: none;
}
.cid-tL19d91Uuc input::-webkit-inner-spin-button {
  display: none;
}
.cid-tL19d91Uuc input::-webkit-outer-spin-button {
  display: none;
}
.cid-tL19d91Uuc input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tL19d91Uuc H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLj6iVm94w .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLj6iVm94w .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLj6iVm94w .nav-item:focus,
.cid-tLj6iVm94w .nav-link:focus {
  outline: none;
}
.cid-tLj6iVm94w .text-white:hover,
.cid-tLj6iVm94w .text-white:active,
.cid-tLj6iVm94w .text-white:focus {
  color: white!important;
}
.cid-tLj6iVm94w .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLj6iVm94w .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLj6iVm94w .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLj6iVm94w .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLj6iVm94w .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLj6iVm94w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLj6iVm94w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLj6iVm94w .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLj6iVm94w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLj6iVm94w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLj6iVm94w .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLj6iVm94w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLj6iVm94w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLj6iVm94w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLj6iVm94w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLj6iVm94w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLj6iVm94w .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLj6iVm94w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLj6iVm94w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLj6iVm94w .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLj6iVm94w .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLj6iVm94w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLj6iVm94w .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLj6iVm94w .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLj6iVm94w .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLj6iVm94w .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLj6iVm94w .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLj6iVm94w .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLj6iVm94w .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLj6iVm94w .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLj6iVm94w .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLj6iVm94w .dropdown-item:hover {
  color: black!important;
}
.cid-tLj6iVm94w .dropdown-menu {
  background-color: white!important;
}
.cid-tLj6iVm94w .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLj6iVm94w .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLj6iVm94w .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLj6iVm94w .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLj6iVm94w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLj6iVm94w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLj6iVm94w .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLj6iVm94w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLj6iVm94w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLj6iVm94w .collapsed {
  flex-direction: row!important;
}
.cid-tLj6iVm94w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLj6iVm94w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLj6iVm94w .navbar-caption {
  font-weight: 600!important;
}
.cid-tLj6iVm94w .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLj6iVm94w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLj6iVm94w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLj6iVm94w .dropdown-item.active,
.cid-tLj6iVm94w .dropdown-item:active {
  background-color: transparent;
}
.cid-tLj6iVm94w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLj6iVm94w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLj6iVm94w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLj6iVm94w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLj6iVm94w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLj6iVm94w ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLj6iVm94w .navbar-buttons {
  text-align: center;
}
.cid-tLj6iVm94w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLj6iVm94w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLj6iVm94w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLj6iVm94w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLj6iVm94w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLj6iVm94w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLj6iVm94w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLj6iVm94w nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLj6iVm94w nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLj6iVm94w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLj6iVm94w .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLj6iVm94w .nav-link {
  font-weight: 600!important;
}
.cid-tLj6iVm94w a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLj6iVm94w .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLj6iVm94w .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLj6iVm94w .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLj6iVm94w .navbar {
    height: 77px;
  }
  .cid-tLj6iVm94w .navbar.opened {
    height: auto;
  }
  .cid-tLj6iVm94w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLj6iWOdCl {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231024-92458-2000x900.jpg");
}
.cid-tLj6iWOdCl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLj6iWOdCl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLj6iWOdCl .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZtVQFSbDN {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tLj6iYPOBQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLj6iYPOBQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLj6iYPOBQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLj6iYPOBQ .mbr-section-title,
.cid-tLj6iYPOBQ .mbr-section-subtitle {
  text-align: center;
}
.cid-tLj6iYPOBQ .cost {
  word-break: normal;
}
.cid-tLj6iYPOBQ .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLj6iYPOBQ .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLj6iYPOBQ .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLj6iYPOBQ .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAVW5lqMi {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAVW5lqMi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAVW5lqMi .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAVW5lqMi textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAVW5lqMi .form-row {
    flex-direction: column;
  }
}
.cid-tQAVW5lqMi h4 {
  margin-bottom: 2rem;
}
.cid-tQAVW5lqMi .form-control,
.cid-tQAVW5lqMi .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAVW5lqMi .form-control,
.cid-tQAVW5lqMi .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAVW5lqMi .form-control::-webkit-input-placeholder,
.cid-tQAVW5lqMi .field-input::-webkit-input-placeholder,
.cid-tQAVW5lqMi .form-control::-webkit-input-placeholder,
.cid-tQAVW5lqMi .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAVW5lqMi .form-control:-moz-placeholder,
.cid-tQAVW5lqMi .field-input:-moz-placeholder,
.cid-tQAVW5lqMi .form-control:-moz-placeholder,
.cid-tQAVW5lqMi .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAVW5lqMi .form-control:hover,
.cid-tQAVW5lqMi .field-input:hover,
.cid-tQAVW5lqMi .form-control:focus,
.cid-tQAVW5lqMi .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAVW5lqMi .form-control:hover::-webkit-input-placeholder,
.cid-tQAVW5lqMi .field-input:hover::-webkit-input-placeholder,
.cid-tQAVW5lqMi .form-control:focus::-webkit-input-placeholder,
.cid-tQAVW5lqMi .field-input:focus::-webkit-input-placeholder,
.cid-tQAVW5lqMi .form-control:hover::-webkit-input-placeholder,
.cid-tQAVW5lqMi .field-input:hover::-webkit-input-placeholder,
.cid-tQAVW5lqMi .form-control:focus::-webkit-input-placeholder,
.cid-tQAVW5lqMi .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAVW5lqMi .form-control:hover:-moz-placeholder,
.cid-tQAVW5lqMi .field-input:hover:-moz-placeholder,
.cid-tQAVW5lqMi .form-control:focus:-moz-placeholder,
.cid-tQAVW5lqMi .field-input:focus:-moz-placeholder,
.cid-tQAVW5lqMi .form-control:hover:-moz-placeholder,
.cid-tQAVW5lqMi .field-input:hover:-moz-placeholder,
.cid-tQAVW5lqMi .form-control:focus:-moz-placeholder,
.cid-tQAVW5lqMi .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAVW5lqMi .jq-number__spin:hover,
.cid-tQAVW5lqMi .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAVW5lqMi .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAVW5lqMi .jq-selectbox li,
.cid-tQAVW5lqMi .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAVW5lqMi .jq-selectbox li:hover,
.cid-tQAVW5lqMi .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAVW5lqMi .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAVW5lqMi .jq-number__spin.minus:hover:after,
.cid-tQAVW5lqMi .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAVW5lqMi .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAVW5lqMi .jq-number__spin.minus:after,
.cid-tQAVW5lqMi .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAVW5lqMi input::-webkit-clear-button {
  display: none;
}
.cid-tQAVW5lqMi input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAVW5lqMi input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAVW5lqMi input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAVW5lqMi H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLjd13QcX1 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLjd13QcX1 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLjd13QcX1 .nav-item:focus,
.cid-tLjd13QcX1 .nav-link:focus {
  outline: none;
}
.cid-tLjd13QcX1 .text-white:hover,
.cid-tLjd13QcX1 .text-white:active,
.cid-tLjd13QcX1 .text-white:focus {
  color: white!important;
}
.cid-tLjd13QcX1 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLjd13QcX1 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLjd13QcX1 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLjd13QcX1 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLjd13QcX1 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLjd13QcX1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLjd13QcX1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLjd13QcX1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLjd13QcX1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLjd13QcX1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLjd13QcX1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLjd13QcX1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLjd13QcX1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLjd13QcX1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLjd13QcX1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLjd13QcX1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLjd13QcX1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLjd13QcX1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLjd13QcX1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLjd13QcX1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLjd13QcX1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLjd13QcX1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLjd13QcX1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLjd13QcX1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLjd13QcX1 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLjd13QcX1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLjd13QcX1 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLjd13QcX1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLjd13QcX1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLjd13QcX1 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLjd13QcX1 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLjd13QcX1 .dropdown-item:hover {
  color: black!important;
}
.cid-tLjd13QcX1 .dropdown-menu {
  background-color: white!important;
}
.cid-tLjd13QcX1 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLjd13QcX1 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLjd13QcX1 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLjd13QcX1 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLjd13QcX1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLjd13QcX1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLjd13QcX1 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLjd13QcX1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLjd13QcX1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLjd13QcX1 .collapsed {
  flex-direction: row!important;
}
.cid-tLjd13QcX1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLjd13QcX1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLjd13QcX1 .navbar-caption {
  font-weight: 600!important;
}
.cid-tLjd13QcX1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLjd13QcX1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLjd13QcX1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLjd13QcX1 .dropdown-item.active,
.cid-tLjd13QcX1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tLjd13QcX1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLjd13QcX1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLjd13QcX1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLjd13QcX1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLjd13QcX1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLjd13QcX1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLjd13QcX1 .navbar-buttons {
  text-align: center;
}
.cid-tLjd13QcX1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLjd13QcX1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLjd13QcX1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLjd13QcX1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLjd13QcX1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLjd13QcX1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLjd13QcX1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLjd13QcX1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLjd13QcX1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLjd13QcX1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLjd13QcX1 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLjd13QcX1 .nav-link {
  font-weight: 600!important;
}
.cid-tLjd13QcX1 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLjd13QcX1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLjd13QcX1 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLjd13QcX1 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLjd13QcX1 .navbar {
    height: 77px;
  }
  .cid-tLjd13QcX1 .navbar.opened {
    height: auto;
  }
  .cid-tLjd13QcX1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLjd15uhhh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231025-64325-2000x1125.jpg");
}
.cid-tLjd15uhhh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLjd15uhhh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLjd15uhhh .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZtNwis5K1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLjd189rqS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLjd189rqS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLjd189rqS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLjd189rqS .mbr-section-title,
.cid-tLjd189rqS .mbr-section-subtitle {
  text-align: center;
}
.cid-tLjd189rqS .cost {
  word-break: normal;
}
.cid-tLjd189rqS .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLjd189rqS .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLjd189rqS .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLjd189rqS .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAWhIZebi {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAWhIZebi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAWhIZebi .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAWhIZebi textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAWhIZebi .form-row {
    flex-direction: column;
  }
}
.cid-tQAWhIZebi h4 {
  margin-bottom: 2rem;
}
.cid-tQAWhIZebi .form-control,
.cid-tQAWhIZebi .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAWhIZebi .form-control,
.cid-tQAWhIZebi .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAWhIZebi .form-control::-webkit-input-placeholder,
.cid-tQAWhIZebi .field-input::-webkit-input-placeholder,
.cid-tQAWhIZebi .form-control::-webkit-input-placeholder,
.cid-tQAWhIZebi .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAWhIZebi .form-control:-moz-placeholder,
.cid-tQAWhIZebi .field-input:-moz-placeholder,
.cid-tQAWhIZebi .form-control:-moz-placeholder,
.cid-tQAWhIZebi .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAWhIZebi .form-control:hover,
.cid-tQAWhIZebi .field-input:hover,
.cid-tQAWhIZebi .form-control:focus,
.cid-tQAWhIZebi .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAWhIZebi .form-control:hover::-webkit-input-placeholder,
.cid-tQAWhIZebi .field-input:hover::-webkit-input-placeholder,
.cid-tQAWhIZebi .form-control:focus::-webkit-input-placeholder,
.cid-tQAWhIZebi .field-input:focus::-webkit-input-placeholder,
.cid-tQAWhIZebi .form-control:hover::-webkit-input-placeholder,
.cid-tQAWhIZebi .field-input:hover::-webkit-input-placeholder,
.cid-tQAWhIZebi .form-control:focus::-webkit-input-placeholder,
.cid-tQAWhIZebi .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAWhIZebi .form-control:hover:-moz-placeholder,
.cid-tQAWhIZebi .field-input:hover:-moz-placeholder,
.cid-tQAWhIZebi .form-control:focus:-moz-placeholder,
.cid-tQAWhIZebi .field-input:focus:-moz-placeholder,
.cid-tQAWhIZebi .form-control:hover:-moz-placeholder,
.cid-tQAWhIZebi .field-input:hover:-moz-placeholder,
.cid-tQAWhIZebi .form-control:focus:-moz-placeholder,
.cid-tQAWhIZebi .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAWhIZebi .jq-number__spin:hover,
.cid-tQAWhIZebi .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAWhIZebi .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAWhIZebi .jq-selectbox li,
.cid-tQAWhIZebi .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAWhIZebi .jq-selectbox li:hover,
.cid-tQAWhIZebi .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAWhIZebi .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAWhIZebi .jq-number__spin.minus:hover:after,
.cid-tQAWhIZebi .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAWhIZebi .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAWhIZebi .jq-number__spin.minus:after,
.cid-tQAWhIZebi .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAWhIZebi input::-webkit-clear-button {
  display: none;
}
.cid-tQAWhIZebi input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAWhIZebi input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAWhIZebi input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAWhIZebi H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLjlQWFeqr .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLjlQWFeqr .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLjlQWFeqr .nav-item:focus,
.cid-tLjlQWFeqr .nav-link:focus {
  outline: none;
}
.cid-tLjlQWFeqr .text-white:hover,
.cid-tLjlQWFeqr .text-white:active,
.cid-tLjlQWFeqr .text-white:focus {
  color: white!important;
}
.cid-tLjlQWFeqr .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLjlQWFeqr .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLjlQWFeqr .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLjlQWFeqr .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLjlQWFeqr .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLjlQWFeqr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLjlQWFeqr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLjlQWFeqr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLjlQWFeqr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLjlQWFeqr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLjlQWFeqr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLjlQWFeqr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLjlQWFeqr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLjlQWFeqr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLjlQWFeqr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLjlQWFeqr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLjlQWFeqr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLjlQWFeqr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLjlQWFeqr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLjlQWFeqr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLjlQWFeqr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLjlQWFeqr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLjlQWFeqr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLjlQWFeqr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLjlQWFeqr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLjlQWFeqr .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLjlQWFeqr .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLjlQWFeqr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLjlQWFeqr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLjlQWFeqr .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLjlQWFeqr .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLjlQWFeqr .dropdown-item:hover {
  color: black!important;
}
.cid-tLjlQWFeqr .dropdown-menu {
  background-color: white!important;
}
.cid-tLjlQWFeqr .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLjlQWFeqr .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLjlQWFeqr .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLjlQWFeqr .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLjlQWFeqr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLjlQWFeqr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLjlQWFeqr .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLjlQWFeqr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLjlQWFeqr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLjlQWFeqr .collapsed {
  flex-direction: row!important;
}
.cid-tLjlQWFeqr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLjlQWFeqr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLjlQWFeqr .navbar-caption {
  font-weight: 600!important;
}
.cid-tLjlQWFeqr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLjlQWFeqr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLjlQWFeqr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLjlQWFeqr .dropdown-item.active,
.cid-tLjlQWFeqr .dropdown-item:active {
  background-color: transparent;
}
.cid-tLjlQWFeqr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLjlQWFeqr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLjlQWFeqr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLjlQWFeqr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLjlQWFeqr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLjlQWFeqr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLjlQWFeqr .navbar-buttons {
  text-align: center;
}
.cid-tLjlQWFeqr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLjlQWFeqr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLjlQWFeqr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLjlQWFeqr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLjlQWFeqr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLjlQWFeqr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLjlQWFeqr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLjlQWFeqr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLjlQWFeqr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLjlQWFeqr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLjlQWFeqr .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLjlQWFeqr .nav-link {
  font-weight: 600!important;
}
.cid-tLjlQWFeqr a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLjlQWFeqr .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLjlQWFeqr .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLjlQWFeqr .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLjlQWFeqr .navbar {
    height: 77px;
  }
  .cid-tLjlQWFeqr .navbar.opened {
    height: auto;
  }
  .cid-tLjlQWFeqr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLjlQZ9FZl {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231015-63113-2000x900.jpg");
}
.cid-tLjlQZ9FZl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLjlQZ9FZl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLjlQZ9FZl .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZuaRdGgHJ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tLjlR26lYv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLjlR26lYv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLjlR26lYv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLjlR26lYv .mbr-section-title,
.cid-tLjlR26lYv .mbr-section-subtitle {
  text-align: center;
}
.cid-tLjlR26lYv .cost {
  word-break: normal;
}
.cid-tLjlR26lYv .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLjlR26lYv .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLjlR26lYv .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLjlR26lYv .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAWvHa5Lm {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAWvHa5Lm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAWvHa5Lm .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAWvHa5Lm textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAWvHa5Lm .form-row {
    flex-direction: column;
  }
}
.cid-tQAWvHa5Lm h4 {
  margin-bottom: 2rem;
}
.cid-tQAWvHa5Lm .form-control,
.cid-tQAWvHa5Lm .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAWvHa5Lm .form-control,
.cid-tQAWvHa5Lm .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAWvHa5Lm .form-control::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .field-input::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .form-control::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAWvHa5Lm .form-control:-moz-placeholder,
.cid-tQAWvHa5Lm .field-input:-moz-placeholder,
.cid-tQAWvHa5Lm .form-control:-moz-placeholder,
.cid-tQAWvHa5Lm .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAWvHa5Lm .form-control:hover,
.cid-tQAWvHa5Lm .field-input:hover,
.cid-tQAWvHa5Lm .form-control:focus,
.cid-tQAWvHa5Lm .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAWvHa5Lm .form-control:hover::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .field-input:hover::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .form-control:focus::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .field-input:focus::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .form-control:hover::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .field-input:hover::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .form-control:focus::-webkit-input-placeholder,
.cid-tQAWvHa5Lm .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAWvHa5Lm .form-control:hover:-moz-placeholder,
.cid-tQAWvHa5Lm .field-input:hover:-moz-placeholder,
.cid-tQAWvHa5Lm .form-control:focus:-moz-placeholder,
.cid-tQAWvHa5Lm .field-input:focus:-moz-placeholder,
.cid-tQAWvHa5Lm .form-control:hover:-moz-placeholder,
.cid-tQAWvHa5Lm .field-input:hover:-moz-placeholder,
.cid-tQAWvHa5Lm .form-control:focus:-moz-placeholder,
.cid-tQAWvHa5Lm .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAWvHa5Lm .jq-number__spin:hover,
.cid-tQAWvHa5Lm .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAWvHa5Lm .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAWvHa5Lm .jq-selectbox li,
.cid-tQAWvHa5Lm .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAWvHa5Lm .jq-selectbox li:hover,
.cid-tQAWvHa5Lm .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAWvHa5Lm .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAWvHa5Lm .jq-number__spin.minus:hover:after,
.cid-tQAWvHa5Lm .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAWvHa5Lm .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAWvHa5Lm .jq-number__spin.minus:after,
.cid-tQAWvHa5Lm .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAWvHa5Lm input::-webkit-clear-button {
  display: none;
}
.cid-tQAWvHa5Lm input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAWvHa5Lm input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAWvHa5Lm input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAWvHa5Lm H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLwrtMZMRp .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwrtMZMRp .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLwrtMZMRp .nav-item:focus,
.cid-tLwrtMZMRp .nav-link:focus {
  outline: none;
}
.cid-tLwrtMZMRp .text-white:hover,
.cid-tLwrtMZMRp .text-white:active,
.cid-tLwrtMZMRp .text-white:focus {
  color: white!important;
}
.cid-tLwrtMZMRp .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLwrtMZMRp .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLwrtMZMRp .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLwrtMZMRp .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLwrtMZMRp .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLwrtMZMRp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLwrtMZMRp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLwrtMZMRp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLwrtMZMRp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLwrtMZMRp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLwrtMZMRp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLwrtMZMRp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLwrtMZMRp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLwrtMZMRp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLwrtMZMRp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLwrtMZMRp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLwrtMZMRp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLwrtMZMRp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLwrtMZMRp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLwrtMZMRp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLwrtMZMRp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLwrtMZMRp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLwrtMZMRp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLwrtMZMRp .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLwrtMZMRp .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLwrtMZMRp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLwrtMZMRp .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLwrtMZMRp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLwrtMZMRp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLwrtMZMRp .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLwrtMZMRp .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLwrtMZMRp .dropdown-item:hover {
  color: black!important;
}
.cid-tLwrtMZMRp .dropdown-menu {
  background-color: white!important;
}
.cid-tLwrtMZMRp .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLwrtMZMRp .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwrtMZMRp .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLwrtMZMRp .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLwrtMZMRp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwrtMZMRp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLwrtMZMRp .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLwrtMZMRp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLwrtMZMRp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwrtMZMRp .collapsed {
  flex-direction: row!important;
}
.cid-tLwrtMZMRp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLwrtMZMRp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLwrtMZMRp .navbar-caption {
  font-weight: 600!important;
}
.cid-tLwrtMZMRp .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLwrtMZMRp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLwrtMZMRp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLwrtMZMRp .dropdown-item.active,
.cid-tLwrtMZMRp .dropdown-item:active {
  background-color: transparent;
}
.cid-tLwrtMZMRp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLwrtMZMRp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLwrtMZMRp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLwrtMZMRp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLwrtMZMRp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLwrtMZMRp ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLwrtMZMRp .navbar-buttons {
  text-align: center;
}
.cid-tLwrtMZMRp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLwrtMZMRp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLwrtMZMRp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLwrtMZMRp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwrtMZMRp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwrtMZMRp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLwrtMZMRp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwrtMZMRp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLwrtMZMRp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLwrtMZMRp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwrtMZMRp .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLwrtMZMRp .nav-link {
  font-weight: 600!important;
}
.cid-tLwrtMZMRp a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLwrtMZMRp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLwrtMZMRp .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLwrtMZMRp .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLwrtMZMRp .navbar {
    height: 77px;
  }
  .cid-tLwrtMZMRp .navbar.opened {
    height: auto;
  }
  .cid-tLwrtMZMRp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLwrtNxeB7 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/img-20230728-115943-313-2000x1047.jpg");
}
.cid-tLwrtNxeB7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwrtNxeB7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwrtNxeB7 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZu0sS9IJI {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLwrtOI5GX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLwrtOI5GX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwrtOI5GX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwrtOI5GX .mbr-section-title,
.cid-tLwrtOI5GX .mbr-section-subtitle {
  text-align: center;
}
.cid-tLwrtOI5GX .cost {
  word-break: normal;
}
.cid-tLwrtOI5GX .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLwrtOI5GX .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLwrtOI5GX .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLwrtOI5GX .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAWJP77cx {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAWJP77cx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAWJP77cx .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAWJP77cx textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAWJP77cx .form-row {
    flex-direction: column;
  }
}
.cid-tQAWJP77cx h4 {
  margin-bottom: 2rem;
}
.cid-tQAWJP77cx .form-control,
.cid-tQAWJP77cx .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAWJP77cx .form-control,
.cid-tQAWJP77cx .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAWJP77cx .form-control::-webkit-input-placeholder,
.cid-tQAWJP77cx .field-input::-webkit-input-placeholder,
.cid-tQAWJP77cx .form-control::-webkit-input-placeholder,
.cid-tQAWJP77cx .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAWJP77cx .form-control:-moz-placeholder,
.cid-tQAWJP77cx .field-input:-moz-placeholder,
.cid-tQAWJP77cx .form-control:-moz-placeholder,
.cid-tQAWJP77cx .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAWJP77cx .form-control:hover,
.cid-tQAWJP77cx .field-input:hover,
.cid-tQAWJP77cx .form-control:focus,
.cid-tQAWJP77cx .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAWJP77cx .form-control:hover::-webkit-input-placeholder,
.cid-tQAWJP77cx .field-input:hover::-webkit-input-placeholder,
.cid-tQAWJP77cx .form-control:focus::-webkit-input-placeholder,
.cid-tQAWJP77cx .field-input:focus::-webkit-input-placeholder,
.cid-tQAWJP77cx .form-control:hover::-webkit-input-placeholder,
.cid-tQAWJP77cx .field-input:hover::-webkit-input-placeholder,
.cid-tQAWJP77cx .form-control:focus::-webkit-input-placeholder,
.cid-tQAWJP77cx .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAWJP77cx .form-control:hover:-moz-placeholder,
.cid-tQAWJP77cx .field-input:hover:-moz-placeholder,
.cid-tQAWJP77cx .form-control:focus:-moz-placeholder,
.cid-tQAWJP77cx .field-input:focus:-moz-placeholder,
.cid-tQAWJP77cx .form-control:hover:-moz-placeholder,
.cid-tQAWJP77cx .field-input:hover:-moz-placeholder,
.cid-tQAWJP77cx .form-control:focus:-moz-placeholder,
.cid-tQAWJP77cx .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAWJP77cx .jq-number__spin:hover,
.cid-tQAWJP77cx .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAWJP77cx .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAWJP77cx .jq-selectbox li,
.cid-tQAWJP77cx .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAWJP77cx .jq-selectbox li:hover,
.cid-tQAWJP77cx .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAWJP77cx .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAWJP77cx .jq-number__spin.minus:hover:after,
.cid-tQAWJP77cx .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAWJP77cx .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAWJP77cx .jq-number__spin.minus:after,
.cid-tQAWJP77cx .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAWJP77cx input::-webkit-clear-button {
  display: none;
}
.cid-tQAWJP77cx input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAWJP77cx input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAWJP77cx input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAWJP77cx H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLwtFOgjRF .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwtFOgjRF .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLwtFOgjRF .nav-item:focus,
.cid-tLwtFOgjRF .nav-link:focus {
  outline: none;
}
.cid-tLwtFOgjRF .text-white:hover,
.cid-tLwtFOgjRF .text-white:active,
.cid-tLwtFOgjRF .text-white:focus {
  color: white!important;
}
.cid-tLwtFOgjRF .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLwtFOgjRF .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLwtFOgjRF .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLwtFOgjRF .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLwtFOgjRF .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLwtFOgjRF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLwtFOgjRF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLwtFOgjRF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLwtFOgjRF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLwtFOgjRF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLwtFOgjRF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLwtFOgjRF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLwtFOgjRF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLwtFOgjRF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLwtFOgjRF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLwtFOgjRF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLwtFOgjRF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLwtFOgjRF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLwtFOgjRF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLwtFOgjRF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLwtFOgjRF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLwtFOgjRF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLwtFOgjRF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLwtFOgjRF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLwtFOgjRF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLwtFOgjRF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLwtFOgjRF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLwtFOgjRF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLwtFOgjRF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLwtFOgjRF .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLwtFOgjRF .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLwtFOgjRF .dropdown-item:hover {
  color: black!important;
}
.cid-tLwtFOgjRF .dropdown-menu {
  background-color: white!important;
}
.cid-tLwtFOgjRF .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLwtFOgjRF .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwtFOgjRF .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLwtFOgjRF .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLwtFOgjRF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwtFOgjRF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLwtFOgjRF .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLwtFOgjRF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLwtFOgjRF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwtFOgjRF .collapsed {
  flex-direction: row!important;
}
.cid-tLwtFOgjRF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLwtFOgjRF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLwtFOgjRF .navbar-caption {
  font-weight: 600!important;
}
.cid-tLwtFOgjRF .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLwtFOgjRF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLwtFOgjRF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLwtFOgjRF .dropdown-item.active,
.cid-tLwtFOgjRF .dropdown-item:active {
  background-color: transparent;
}
.cid-tLwtFOgjRF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLwtFOgjRF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLwtFOgjRF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLwtFOgjRF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLwtFOgjRF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLwtFOgjRF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLwtFOgjRF .navbar-buttons {
  text-align: center;
}
.cid-tLwtFOgjRF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLwtFOgjRF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLwtFOgjRF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLwtFOgjRF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwtFOgjRF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwtFOgjRF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLwtFOgjRF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwtFOgjRF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLwtFOgjRF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLwtFOgjRF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwtFOgjRF .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLwtFOgjRF .nav-link {
  font-weight: 600!important;
}
.cid-tLwtFOgjRF a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLwtFOgjRF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLwtFOgjRF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLwtFOgjRF .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLwtFOgjRF .navbar {
    height: 77px;
  }
  .cid-tLwtFOgjRF .navbar.opened {
    height: auto;
  }
  .cid-tLwtFOgjRF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLwtFPc7pQ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231010-122821-2000x900.jpg");
}
.cid-tLwtFPc7pQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwtFPc7pQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwtFPc7pQ .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZtYCM17xT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLwtFQXJsY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLwtFQXJsY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwtFQXJsY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwtFQXJsY .mbr-section-title,
.cid-tLwtFQXJsY .mbr-section-subtitle {
  text-align: center;
}
.cid-tLwtFQXJsY .cost {
  word-break: normal;
}
.cid-tLwtFQXJsY .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLwtFQXJsY .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLwtFQXJsY .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLwtFQXJsY .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAWVX5uwQ {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAWVX5uwQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAWVX5uwQ .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAWVX5uwQ textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAWVX5uwQ .form-row {
    flex-direction: column;
  }
}
.cid-tQAWVX5uwQ h4 {
  margin-bottom: 2rem;
}
.cid-tQAWVX5uwQ .form-control,
.cid-tQAWVX5uwQ .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAWVX5uwQ .form-control,
.cid-tQAWVX5uwQ .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAWVX5uwQ .form-control::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .field-input::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .form-control::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAWVX5uwQ .form-control:-moz-placeholder,
.cid-tQAWVX5uwQ .field-input:-moz-placeholder,
.cid-tQAWVX5uwQ .form-control:-moz-placeholder,
.cid-tQAWVX5uwQ .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAWVX5uwQ .form-control:hover,
.cid-tQAWVX5uwQ .field-input:hover,
.cid-tQAWVX5uwQ .form-control:focus,
.cid-tQAWVX5uwQ .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAWVX5uwQ .form-control:hover::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .field-input:hover::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .form-control:focus::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .field-input:focus::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .form-control:hover::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .field-input:hover::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .form-control:focus::-webkit-input-placeholder,
.cid-tQAWVX5uwQ .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAWVX5uwQ .form-control:hover:-moz-placeholder,
.cid-tQAWVX5uwQ .field-input:hover:-moz-placeholder,
.cid-tQAWVX5uwQ .form-control:focus:-moz-placeholder,
.cid-tQAWVX5uwQ .field-input:focus:-moz-placeholder,
.cid-tQAWVX5uwQ .form-control:hover:-moz-placeholder,
.cid-tQAWVX5uwQ .field-input:hover:-moz-placeholder,
.cid-tQAWVX5uwQ .form-control:focus:-moz-placeholder,
.cid-tQAWVX5uwQ .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAWVX5uwQ .jq-number__spin:hover,
.cid-tQAWVX5uwQ .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAWVX5uwQ .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAWVX5uwQ .jq-selectbox li,
.cid-tQAWVX5uwQ .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAWVX5uwQ .jq-selectbox li:hover,
.cid-tQAWVX5uwQ .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAWVX5uwQ .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAWVX5uwQ .jq-number__spin.minus:hover:after,
.cid-tQAWVX5uwQ .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAWVX5uwQ .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAWVX5uwQ .jq-number__spin.minus:after,
.cid-tQAWVX5uwQ .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAWVX5uwQ input::-webkit-clear-button {
  display: none;
}
.cid-tQAWVX5uwQ input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAWVX5uwQ input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAWVX5uwQ input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAWVX5uwQ H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLwwy12fbD .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwwy12fbD .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLwwy12fbD .nav-item:focus,
.cid-tLwwy12fbD .nav-link:focus {
  outline: none;
}
.cid-tLwwy12fbD .text-white:hover,
.cid-tLwwy12fbD .text-white:active,
.cid-tLwwy12fbD .text-white:focus {
  color: white!important;
}
.cid-tLwwy12fbD .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLwwy12fbD .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLwwy12fbD .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLwwy12fbD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLwwy12fbD .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLwwy12fbD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLwwy12fbD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLwwy12fbD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLwwy12fbD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLwwy12fbD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLwwy12fbD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLwwy12fbD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLwwy12fbD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLwwy12fbD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLwwy12fbD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLwwy12fbD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLwwy12fbD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLwwy12fbD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLwwy12fbD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLwwy12fbD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLwwy12fbD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLwwy12fbD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLwwy12fbD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLwwy12fbD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLwwy12fbD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLwwy12fbD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLwwy12fbD .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLwwy12fbD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLwwy12fbD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLwwy12fbD .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLwwy12fbD .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLwwy12fbD .dropdown-item:hover {
  color: black!important;
}
.cid-tLwwy12fbD .dropdown-menu {
  background-color: white!important;
}
.cid-tLwwy12fbD .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLwwy12fbD .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwwy12fbD .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLwwy12fbD .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLwwy12fbD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwwy12fbD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLwwy12fbD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLwwy12fbD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLwwy12fbD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwwy12fbD .collapsed {
  flex-direction: row!important;
}
.cid-tLwwy12fbD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLwwy12fbD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLwwy12fbD .navbar-caption {
  font-weight: 600!important;
}
.cid-tLwwy12fbD .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLwwy12fbD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLwwy12fbD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLwwy12fbD .dropdown-item.active,
.cid-tLwwy12fbD .dropdown-item:active {
  background-color: transparent;
}
.cid-tLwwy12fbD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLwwy12fbD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLwwy12fbD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLwwy12fbD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLwwy12fbD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLwwy12fbD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLwwy12fbD .navbar-buttons {
  text-align: center;
}
.cid-tLwwy12fbD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLwwy12fbD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLwwy12fbD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLwwy12fbD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwwy12fbD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwwy12fbD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLwwy12fbD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwwy12fbD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLwwy12fbD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLwwy12fbD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwwy12fbD .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLwwy12fbD .nav-link {
  font-weight: 600!important;
}
.cid-tLwwy12fbD a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLwwy12fbD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLwwy12fbD .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLwwy12fbD .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLwwy12fbD .navbar {
    height: 77px;
  }
  .cid-tLwwy12fbD .navbar.opened {
    height: auto;
  }
  .cid-tLwwy12fbD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLwwy2CWm4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231013-82633-2000x900.jpg");
}
.cid-tLwwy2CWm4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwwy2CWm4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwwy2CWm4 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZudqFyVTB {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLwwy5i1aI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLwwy5i1aI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwwy5i1aI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwwy5i1aI .mbr-section-title,
.cid-tLwwy5i1aI .mbr-section-subtitle {
  text-align: center;
}
.cid-tLwwy5i1aI .cost {
  word-break: normal;
}
.cid-tLwwy5i1aI .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLwwy5i1aI .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLwwy5i1aI .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLwwy5i1aI .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAXamD9sm {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAXamD9sm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAXamD9sm .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAXamD9sm textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAXamD9sm .form-row {
    flex-direction: column;
  }
}
.cid-tQAXamD9sm h4 {
  margin-bottom: 2rem;
}
.cid-tQAXamD9sm .form-control,
.cid-tQAXamD9sm .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAXamD9sm .form-control,
.cid-tQAXamD9sm .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAXamD9sm .form-control::-webkit-input-placeholder,
.cid-tQAXamD9sm .field-input::-webkit-input-placeholder,
.cid-tQAXamD9sm .form-control::-webkit-input-placeholder,
.cid-tQAXamD9sm .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAXamD9sm .form-control:-moz-placeholder,
.cid-tQAXamD9sm .field-input:-moz-placeholder,
.cid-tQAXamD9sm .form-control:-moz-placeholder,
.cid-tQAXamD9sm .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAXamD9sm .form-control:hover,
.cid-tQAXamD9sm .field-input:hover,
.cid-tQAXamD9sm .form-control:focus,
.cid-tQAXamD9sm .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAXamD9sm .form-control:hover::-webkit-input-placeholder,
.cid-tQAXamD9sm .field-input:hover::-webkit-input-placeholder,
.cid-tQAXamD9sm .form-control:focus::-webkit-input-placeholder,
.cid-tQAXamD9sm .field-input:focus::-webkit-input-placeholder,
.cid-tQAXamD9sm .form-control:hover::-webkit-input-placeholder,
.cid-tQAXamD9sm .field-input:hover::-webkit-input-placeholder,
.cid-tQAXamD9sm .form-control:focus::-webkit-input-placeholder,
.cid-tQAXamD9sm .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAXamD9sm .form-control:hover:-moz-placeholder,
.cid-tQAXamD9sm .field-input:hover:-moz-placeholder,
.cid-tQAXamD9sm .form-control:focus:-moz-placeholder,
.cid-tQAXamD9sm .field-input:focus:-moz-placeholder,
.cid-tQAXamD9sm .form-control:hover:-moz-placeholder,
.cid-tQAXamD9sm .field-input:hover:-moz-placeholder,
.cid-tQAXamD9sm .form-control:focus:-moz-placeholder,
.cid-tQAXamD9sm .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAXamD9sm .jq-number__spin:hover,
.cid-tQAXamD9sm .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAXamD9sm .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAXamD9sm .jq-selectbox li,
.cid-tQAXamD9sm .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAXamD9sm .jq-selectbox li:hover,
.cid-tQAXamD9sm .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAXamD9sm .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAXamD9sm .jq-number__spin.minus:hover:after,
.cid-tQAXamD9sm .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAXamD9sm .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAXamD9sm .jq-number__spin.minus:after,
.cid-tQAXamD9sm .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAXamD9sm input::-webkit-clear-button {
  display: none;
}
.cid-tQAXamD9sm input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAXamD9sm input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAXamD9sm input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAXamD9sm H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLwyNkP5ci .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwyNkP5ci .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLwyNkP5ci .nav-item:focus,
.cid-tLwyNkP5ci .nav-link:focus {
  outline: none;
}
.cid-tLwyNkP5ci .text-white:hover,
.cid-tLwyNkP5ci .text-white:active,
.cid-tLwyNkP5ci .text-white:focus {
  color: white!important;
}
.cid-tLwyNkP5ci .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLwyNkP5ci .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLwyNkP5ci .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLwyNkP5ci .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLwyNkP5ci .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLwyNkP5ci .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLwyNkP5ci .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLwyNkP5ci .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLwyNkP5ci .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLwyNkP5ci .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLwyNkP5ci .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLwyNkP5ci .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLwyNkP5ci .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLwyNkP5ci .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLwyNkP5ci .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLwyNkP5ci .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLwyNkP5ci .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLwyNkP5ci .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLwyNkP5ci .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLwyNkP5ci .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLwyNkP5ci .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLwyNkP5ci .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLwyNkP5ci .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLwyNkP5ci .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLwyNkP5ci .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLwyNkP5ci .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLwyNkP5ci .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLwyNkP5ci .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLwyNkP5ci .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLwyNkP5ci .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLwyNkP5ci .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLwyNkP5ci .dropdown-item:hover {
  color: black!important;
}
.cid-tLwyNkP5ci .dropdown-menu {
  background-color: white!important;
}
.cid-tLwyNkP5ci .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLwyNkP5ci .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwyNkP5ci .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLwyNkP5ci .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLwyNkP5ci .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwyNkP5ci .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLwyNkP5ci .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLwyNkP5ci .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLwyNkP5ci .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwyNkP5ci .collapsed {
  flex-direction: row!important;
}
.cid-tLwyNkP5ci .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLwyNkP5ci .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLwyNkP5ci .navbar-caption {
  font-weight: 600!important;
}
.cid-tLwyNkP5ci .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLwyNkP5ci .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLwyNkP5ci .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLwyNkP5ci .dropdown-item.active,
.cid-tLwyNkP5ci .dropdown-item:active {
  background-color: transparent;
}
.cid-tLwyNkP5ci .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLwyNkP5ci .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLwyNkP5ci .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLwyNkP5ci .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLwyNkP5ci .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLwyNkP5ci ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLwyNkP5ci .navbar-buttons {
  text-align: center;
}
.cid-tLwyNkP5ci button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLwyNkP5ci button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLwyNkP5ci button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLwyNkP5ci button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwyNkP5ci button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwyNkP5ci button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLwyNkP5ci nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwyNkP5ci nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLwyNkP5ci nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLwyNkP5ci nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwyNkP5ci .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLwyNkP5ci .nav-link {
  font-weight: 600!important;
}
.cid-tLwyNkP5ci a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLwyNkP5ci .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLwyNkP5ci .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLwyNkP5ci .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLwyNkP5ci .navbar {
    height: 77px;
  }
  .cid-tLwyNkP5ci .navbar.opened {
    height: auto;
  }
  .cid-tLwyNkP5ci .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLwyNmoMqD {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231013-81518-2000x900.jpg");
}
.cid-tLwyNmoMqD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwyNmoMqD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwyNmoMqD .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZu9eFegvq {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tLwyNp4tWf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLwyNp4tWf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwyNp4tWf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwyNp4tWf .mbr-section-title,
.cid-tLwyNp4tWf .mbr-section-subtitle {
  text-align: center;
}
.cid-tLwyNp4tWf .cost {
  word-break: normal;
}
.cid-tLwyNp4tWf .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLwyNp4tWf .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLwyNp4tWf .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLwyNp4tWf .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAXAo7he7 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAXAo7he7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAXAo7he7 .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAXAo7he7 textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAXAo7he7 .form-row {
    flex-direction: column;
  }
}
.cid-tQAXAo7he7 h4 {
  margin-bottom: 2rem;
}
.cid-tQAXAo7he7 .form-control,
.cid-tQAXAo7he7 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAXAo7he7 .form-control,
.cid-tQAXAo7he7 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAXAo7he7 .form-control::-webkit-input-placeholder,
.cid-tQAXAo7he7 .field-input::-webkit-input-placeholder,
.cid-tQAXAo7he7 .form-control::-webkit-input-placeholder,
.cid-tQAXAo7he7 .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAXAo7he7 .form-control:-moz-placeholder,
.cid-tQAXAo7he7 .field-input:-moz-placeholder,
.cid-tQAXAo7he7 .form-control:-moz-placeholder,
.cid-tQAXAo7he7 .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAXAo7he7 .form-control:hover,
.cid-tQAXAo7he7 .field-input:hover,
.cid-tQAXAo7he7 .form-control:focus,
.cid-tQAXAo7he7 .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAXAo7he7 .form-control:hover::-webkit-input-placeholder,
.cid-tQAXAo7he7 .field-input:hover::-webkit-input-placeholder,
.cid-tQAXAo7he7 .form-control:focus::-webkit-input-placeholder,
.cid-tQAXAo7he7 .field-input:focus::-webkit-input-placeholder,
.cid-tQAXAo7he7 .form-control:hover::-webkit-input-placeholder,
.cid-tQAXAo7he7 .field-input:hover::-webkit-input-placeholder,
.cid-tQAXAo7he7 .form-control:focus::-webkit-input-placeholder,
.cid-tQAXAo7he7 .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAXAo7he7 .form-control:hover:-moz-placeholder,
.cid-tQAXAo7he7 .field-input:hover:-moz-placeholder,
.cid-tQAXAo7he7 .form-control:focus:-moz-placeholder,
.cid-tQAXAo7he7 .field-input:focus:-moz-placeholder,
.cid-tQAXAo7he7 .form-control:hover:-moz-placeholder,
.cid-tQAXAo7he7 .field-input:hover:-moz-placeholder,
.cid-tQAXAo7he7 .form-control:focus:-moz-placeholder,
.cid-tQAXAo7he7 .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAXAo7he7 .jq-number__spin:hover,
.cid-tQAXAo7he7 .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAXAo7he7 .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAXAo7he7 .jq-selectbox li,
.cid-tQAXAo7he7 .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAXAo7he7 .jq-selectbox li:hover,
.cid-tQAXAo7he7 .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAXAo7he7 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAXAo7he7 .jq-number__spin.minus:hover:after,
.cid-tQAXAo7he7 .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAXAo7he7 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAXAo7he7 .jq-number__spin.minus:after,
.cid-tQAXAo7he7 .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAXAo7he7 input::-webkit-clear-button {
  display: none;
}
.cid-tQAXAo7he7 input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAXAo7he7 input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAXAo7he7 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAXAo7he7 H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLwESyin4D .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwESyin4D .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLwESyin4D .nav-item:focus,
.cid-tLwESyin4D .nav-link:focus {
  outline: none;
}
.cid-tLwESyin4D .text-white:hover,
.cid-tLwESyin4D .text-white:active,
.cid-tLwESyin4D .text-white:focus {
  color: white!important;
}
.cid-tLwESyin4D .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLwESyin4D .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLwESyin4D .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLwESyin4D .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLwESyin4D .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLwESyin4D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLwESyin4D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLwESyin4D .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLwESyin4D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLwESyin4D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLwESyin4D .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLwESyin4D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLwESyin4D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLwESyin4D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLwESyin4D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLwESyin4D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLwESyin4D .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLwESyin4D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLwESyin4D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLwESyin4D .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLwESyin4D .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLwESyin4D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLwESyin4D .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLwESyin4D .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLwESyin4D .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLwESyin4D .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLwESyin4D .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLwESyin4D .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLwESyin4D .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLwESyin4D .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLwESyin4D .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLwESyin4D .dropdown-item:hover {
  color: black!important;
}
.cid-tLwESyin4D .dropdown-menu {
  background-color: white!important;
}
.cid-tLwESyin4D .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLwESyin4D .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwESyin4D .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLwESyin4D .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLwESyin4D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwESyin4D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLwESyin4D .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLwESyin4D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLwESyin4D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwESyin4D .collapsed {
  flex-direction: row!important;
}
.cid-tLwESyin4D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLwESyin4D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLwESyin4D .navbar-caption {
  font-weight: 600!important;
}
.cid-tLwESyin4D .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLwESyin4D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLwESyin4D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLwESyin4D .dropdown-item.active,
.cid-tLwESyin4D .dropdown-item:active {
  background-color: transparent;
}
.cid-tLwESyin4D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLwESyin4D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLwESyin4D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLwESyin4D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLwESyin4D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLwESyin4D ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLwESyin4D .navbar-buttons {
  text-align: center;
}
.cid-tLwESyin4D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLwESyin4D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLwESyin4D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLwESyin4D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwESyin4D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwESyin4D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLwESyin4D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwESyin4D nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLwESyin4D nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLwESyin4D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwESyin4D .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLwESyin4D .nav-link {
  font-weight: 600!important;
}
.cid-tLwESyin4D a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLwESyin4D .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLwESyin4D .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLwESyin4D .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLwESyin4D .navbar {
    height: 77px;
  }
  .cid-tLwESyin4D .navbar.opened {
    height: auto;
  }
  .cid-tLwESyin4D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLwESzAoLo {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231021-165147-2000x1125.jpg");
}
.cid-tLwESzAoLo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwESzAoLo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwESzAoLo .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZu9v991Yg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLwESC59Sm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLwESC59Sm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwESC59Sm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwESC59Sm .mbr-section-title,
.cid-tLwESC59Sm .mbr-section-subtitle {
  text-align: center;
}
.cid-tLwESC59Sm .cost {
  word-break: normal;
}
.cid-tLwESC59Sm .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLwESC59Sm .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLwESC59Sm .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLwESC59Sm .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAXQ9ASYX {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAXQ9ASYX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAXQ9ASYX .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAXQ9ASYX textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAXQ9ASYX .form-row {
    flex-direction: column;
  }
}
.cid-tQAXQ9ASYX h4 {
  margin-bottom: 2rem;
}
.cid-tQAXQ9ASYX .form-control,
.cid-tQAXQ9ASYX .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAXQ9ASYX .form-control,
.cid-tQAXQ9ASYX .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAXQ9ASYX .form-control::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .field-input::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .form-control::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAXQ9ASYX .form-control:-moz-placeholder,
.cid-tQAXQ9ASYX .field-input:-moz-placeholder,
.cid-tQAXQ9ASYX .form-control:-moz-placeholder,
.cid-tQAXQ9ASYX .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAXQ9ASYX .form-control:hover,
.cid-tQAXQ9ASYX .field-input:hover,
.cid-tQAXQ9ASYX .form-control:focus,
.cid-tQAXQ9ASYX .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAXQ9ASYX .form-control:hover::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .field-input:hover::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .form-control:focus::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .field-input:focus::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .form-control:hover::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .field-input:hover::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .form-control:focus::-webkit-input-placeholder,
.cid-tQAXQ9ASYX .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAXQ9ASYX .form-control:hover:-moz-placeholder,
.cid-tQAXQ9ASYX .field-input:hover:-moz-placeholder,
.cid-tQAXQ9ASYX .form-control:focus:-moz-placeholder,
.cid-tQAXQ9ASYX .field-input:focus:-moz-placeholder,
.cid-tQAXQ9ASYX .form-control:hover:-moz-placeholder,
.cid-tQAXQ9ASYX .field-input:hover:-moz-placeholder,
.cid-tQAXQ9ASYX .form-control:focus:-moz-placeholder,
.cid-tQAXQ9ASYX .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAXQ9ASYX .jq-number__spin:hover,
.cid-tQAXQ9ASYX .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAXQ9ASYX .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAXQ9ASYX .jq-selectbox li,
.cid-tQAXQ9ASYX .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAXQ9ASYX .jq-selectbox li:hover,
.cid-tQAXQ9ASYX .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAXQ9ASYX .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAXQ9ASYX .jq-number__spin.minus:hover:after,
.cid-tQAXQ9ASYX .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAXQ9ASYX .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAXQ9ASYX .jq-number__spin.minus:after,
.cid-tQAXQ9ASYX .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAXQ9ASYX input::-webkit-clear-button {
  display: none;
}
.cid-tQAXQ9ASYX input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAXQ9ASYX input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAXQ9ASYX input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAXQ9ASYX H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLwHaf6UFZ .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwHaf6UFZ .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLwHaf6UFZ .nav-item:focus,
.cid-tLwHaf6UFZ .nav-link:focus {
  outline: none;
}
.cid-tLwHaf6UFZ .text-white:hover,
.cid-tLwHaf6UFZ .text-white:active,
.cid-tLwHaf6UFZ .text-white:focus {
  color: white!important;
}
.cid-tLwHaf6UFZ .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLwHaf6UFZ .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLwHaf6UFZ .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLwHaf6UFZ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLwHaf6UFZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLwHaf6UFZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLwHaf6UFZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLwHaf6UFZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLwHaf6UFZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLwHaf6UFZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLwHaf6UFZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLwHaf6UFZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLwHaf6UFZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLwHaf6UFZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLwHaf6UFZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLwHaf6UFZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLwHaf6UFZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLwHaf6UFZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLwHaf6UFZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLwHaf6UFZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLwHaf6UFZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLwHaf6UFZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLwHaf6UFZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLwHaf6UFZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLwHaf6UFZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLwHaf6UFZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLwHaf6UFZ .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLwHaf6UFZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLwHaf6UFZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLwHaf6UFZ .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLwHaf6UFZ .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLwHaf6UFZ .dropdown-item:hover {
  color: black!important;
}
.cid-tLwHaf6UFZ .dropdown-menu {
  background-color: white!important;
}
.cid-tLwHaf6UFZ .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLwHaf6UFZ .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLwHaf6UFZ .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLwHaf6UFZ .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLwHaf6UFZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwHaf6UFZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLwHaf6UFZ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLwHaf6UFZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLwHaf6UFZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLwHaf6UFZ .collapsed {
  flex-direction: row!important;
}
.cid-tLwHaf6UFZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLwHaf6UFZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLwHaf6UFZ .navbar-caption {
  font-weight: 600!important;
}
.cid-tLwHaf6UFZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLwHaf6UFZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLwHaf6UFZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLwHaf6UFZ .dropdown-item.active,
.cid-tLwHaf6UFZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tLwHaf6UFZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLwHaf6UFZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLwHaf6UFZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLwHaf6UFZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLwHaf6UFZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLwHaf6UFZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLwHaf6UFZ .navbar-buttons {
  text-align: center;
}
.cid-tLwHaf6UFZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLwHaf6UFZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLwHaf6UFZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLwHaf6UFZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwHaf6UFZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLwHaf6UFZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLwHaf6UFZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwHaf6UFZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLwHaf6UFZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLwHaf6UFZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLwHaf6UFZ .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLwHaf6UFZ .nav-link {
  font-weight: 600!important;
}
.cid-tLwHaf6UFZ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLwHaf6UFZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLwHaf6UFZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLwHaf6UFZ .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLwHaf6UFZ .navbar {
    height: 77px;
  }
  .cid-tLwHaf6UFZ .navbar.opened {
    height: auto;
  }
  .cid-tLwHaf6UFZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLwHagB7M4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231023-90445-2000x900.jpg");
}
.cid-tLwHagB7M4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwHagB7M4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwHagB7M4 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u0FbiKtrYW {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u0FbiKtrYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0FbiKtrYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0FbiKtrYW .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u0FbiKtrYW .mbr-section-subtitle {
  text-align: left;
}
.cid-tLwHajcUVs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLwHajcUVs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLwHajcUVs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLwHajcUVs .mbr-section-title,
.cid-tLwHajcUVs .mbr-section-subtitle {
  text-align: center;
}
.cid-tLwHajcUVs .cost {
  word-break: normal;
}
.cid-tLwHajcUVs .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLwHajcUVs .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLwHajcUVs .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLwHajcUVs .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAY6dt817 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAY6dt817 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAY6dt817 .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAY6dt817 textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAY6dt817 .form-row {
    flex-direction: column;
  }
}
.cid-tQAY6dt817 h4 {
  margin-bottom: 2rem;
}
.cid-tQAY6dt817 .form-control,
.cid-tQAY6dt817 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAY6dt817 .form-control,
.cid-tQAY6dt817 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAY6dt817 .form-control::-webkit-input-placeholder,
.cid-tQAY6dt817 .field-input::-webkit-input-placeholder,
.cid-tQAY6dt817 .form-control::-webkit-input-placeholder,
.cid-tQAY6dt817 .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAY6dt817 .form-control:-moz-placeholder,
.cid-tQAY6dt817 .field-input:-moz-placeholder,
.cid-tQAY6dt817 .form-control:-moz-placeholder,
.cid-tQAY6dt817 .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAY6dt817 .form-control:hover,
.cid-tQAY6dt817 .field-input:hover,
.cid-tQAY6dt817 .form-control:focus,
.cid-tQAY6dt817 .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAY6dt817 .form-control:hover::-webkit-input-placeholder,
.cid-tQAY6dt817 .field-input:hover::-webkit-input-placeholder,
.cid-tQAY6dt817 .form-control:focus::-webkit-input-placeholder,
.cid-tQAY6dt817 .field-input:focus::-webkit-input-placeholder,
.cid-tQAY6dt817 .form-control:hover::-webkit-input-placeholder,
.cid-tQAY6dt817 .field-input:hover::-webkit-input-placeholder,
.cid-tQAY6dt817 .form-control:focus::-webkit-input-placeholder,
.cid-tQAY6dt817 .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAY6dt817 .form-control:hover:-moz-placeholder,
.cid-tQAY6dt817 .field-input:hover:-moz-placeholder,
.cid-tQAY6dt817 .form-control:focus:-moz-placeholder,
.cid-tQAY6dt817 .field-input:focus:-moz-placeholder,
.cid-tQAY6dt817 .form-control:hover:-moz-placeholder,
.cid-tQAY6dt817 .field-input:hover:-moz-placeholder,
.cid-tQAY6dt817 .form-control:focus:-moz-placeholder,
.cid-tQAY6dt817 .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAY6dt817 .jq-number__spin:hover,
.cid-tQAY6dt817 .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAY6dt817 .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAY6dt817 .jq-selectbox li,
.cid-tQAY6dt817 .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAY6dt817 .jq-selectbox li:hover,
.cid-tQAY6dt817 .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAY6dt817 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAY6dt817 .jq-number__spin.minus:hover:after,
.cid-tQAY6dt817 .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAY6dt817 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAY6dt817 .jq-number__spin.minus:after,
.cid-tQAY6dt817 .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAY6dt817 input::-webkit-clear-button {
  display: none;
}
.cid-tQAY6dt817 input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAY6dt817 input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAY6dt817 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAY6dt817 H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLFBcM61y5 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLFBcM61y5 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLFBcM61y5 .nav-item:focus,
.cid-tLFBcM61y5 .nav-link:focus {
  outline: none;
}
.cid-tLFBcM61y5 .text-white:hover,
.cid-tLFBcM61y5 .text-white:active,
.cid-tLFBcM61y5 .text-white:focus {
  color: white!important;
}
.cid-tLFBcM61y5 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLFBcM61y5 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLFBcM61y5 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLFBcM61y5 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLFBcM61y5 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLFBcM61y5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLFBcM61y5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLFBcM61y5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLFBcM61y5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLFBcM61y5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLFBcM61y5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLFBcM61y5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLFBcM61y5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLFBcM61y5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLFBcM61y5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLFBcM61y5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLFBcM61y5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLFBcM61y5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLFBcM61y5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLFBcM61y5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLFBcM61y5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLFBcM61y5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLFBcM61y5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLFBcM61y5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLFBcM61y5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLFBcM61y5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLFBcM61y5 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLFBcM61y5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLFBcM61y5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLFBcM61y5 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLFBcM61y5 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLFBcM61y5 .dropdown-item:hover {
  color: black!important;
}
.cid-tLFBcM61y5 .dropdown-menu {
  background-color: white!important;
}
.cid-tLFBcM61y5 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLFBcM61y5 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLFBcM61y5 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLFBcM61y5 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLFBcM61y5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLFBcM61y5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLFBcM61y5 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLFBcM61y5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLFBcM61y5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLFBcM61y5 .collapsed {
  flex-direction: row!important;
}
.cid-tLFBcM61y5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLFBcM61y5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLFBcM61y5 .navbar-caption {
  font-weight: 600!important;
}
.cid-tLFBcM61y5 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLFBcM61y5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLFBcM61y5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLFBcM61y5 .dropdown-item.active,
.cid-tLFBcM61y5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tLFBcM61y5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLFBcM61y5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLFBcM61y5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLFBcM61y5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLFBcM61y5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLFBcM61y5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLFBcM61y5 .navbar-buttons {
  text-align: center;
}
.cid-tLFBcM61y5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLFBcM61y5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLFBcM61y5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLFBcM61y5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLFBcM61y5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLFBcM61y5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLFBcM61y5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLFBcM61y5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLFBcM61y5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLFBcM61y5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLFBcM61y5 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLFBcM61y5 .nav-link {
  font-weight: 600!important;
}
.cid-tLFBcM61y5 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLFBcM61y5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLFBcM61y5 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLFBcM61y5 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLFBcM61y5 .navbar {
    height: 77px;
  }
  .cid-tLFBcM61y5 .navbar.opened {
    height: auto;
  }
  .cid-tLFBcM61y5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLFBcO1gR5 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/meru-1920x1280.jpg");
}
.cid-tLFBcO1gR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLFBcO1gR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLFBcO1gR5 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZA4J4bfg6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLFBcQwms8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLFBcQwms8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLFBcQwms8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLFBcQwms8 .mbr-section-title,
.cid-tLFBcQwms8 .mbr-section-subtitle {
  text-align: center;
}
.cid-tLFBcQwms8 .cost {
  word-break: normal;
}
.cid-tLFBcQwms8 .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLFBcQwms8 .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLFBcQwms8 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLFBcQwms8 .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAYnjLgCa {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAYnjLgCa .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAYnjLgCa .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAYnjLgCa textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAYnjLgCa .form-row {
    flex-direction: column;
  }
}
.cid-tQAYnjLgCa h4 {
  margin-bottom: 2rem;
}
.cid-tQAYnjLgCa .form-control,
.cid-tQAYnjLgCa .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAYnjLgCa .form-control,
.cid-tQAYnjLgCa .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAYnjLgCa .form-control::-webkit-input-placeholder,
.cid-tQAYnjLgCa .field-input::-webkit-input-placeholder,
.cid-tQAYnjLgCa .form-control::-webkit-input-placeholder,
.cid-tQAYnjLgCa .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAYnjLgCa .form-control:-moz-placeholder,
.cid-tQAYnjLgCa .field-input:-moz-placeholder,
.cid-tQAYnjLgCa .form-control:-moz-placeholder,
.cid-tQAYnjLgCa .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAYnjLgCa .form-control:hover,
.cid-tQAYnjLgCa .field-input:hover,
.cid-tQAYnjLgCa .form-control:focus,
.cid-tQAYnjLgCa .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAYnjLgCa .form-control:hover::-webkit-input-placeholder,
.cid-tQAYnjLgCa .field-input:hover::-webkit-input-placeholder,
.cid-tQAYnjLgCa .form-control:focus::-webkit-input-placeholder,
.cid-tQAYnjLgCa .field-input:focus::-webkit-input-placeholder,
.cid-tQAYnjLgCa .form-control:hover::-webkit-input-placeholder,
.cid-tQAYnjLgCa .field-input:hover::-webkit-input-placeholder,
.cid-tQAYnjLgCa .form-control:focus::-webkit-input-placeholder,
.cid-tQAYnjLgCa .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAYnjLgCa .form-control:hover:-moz-placeholder,
.cid-tQAYnjLgCa .field-input:hover:-moz-placeholder,
.cid-tQAYnjLgCa .form-control:focus:-moz-placeholder,
.cid-tQAYnjLgCa .field-input:focus:-moz-placeholder,
.cid-tQAYnjLgCa .form-control:hover:-moz-placeholder,
.cid-tQAYnjLgCa .field-input:hover:-moz-placeholder,
.cid-tQAYnjLgCa .form-control:focus:-moz-placeholder,
.cid-tQAYnjLgCa .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAYnjLgCa .jq-number__spin:hover,
.cid-tQAYnjLgCa .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAYnjLgCa .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAYnjLgCa .jq-selectbox li,
.cid-tQAYnjLgCa .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAYnjLgCa .jq-selectbox li:hover,
.cid-tQAYnjLgCa .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAYnjLgCa .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAYnjLgCa .jq-number__spin.minus:hover:after,
.cid-tQAYnjLgCa .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAYnjLgCa .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAYnjLgCa .jq-number__spin.minus:after,
.cid-tQAYnjLgCa .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAYnjLgCa input::-webkit-clear-button {
  display: none;
}
.cid-tQAYnjLgCa input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAYnjLgCa input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAYnjLgCa input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAYnjLgCa H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLIiUt7jFz .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLIiUt7jFz .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLIiUt7jFz .nav-item:focus,
.cid-tLIiUt7jFz .nav-link:focus {
  outline: none;
}
.cid-tLIiUt7jFz .text-white:hover,
.cid-tLIiUt7jFz .text-white:active,
.cid-tLIiUt7jFz .text-white:focus {
  color: white!important;
}
.cid-tLIiUt7jFz .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLIiUt7jFz .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLIiUt7jFz .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLIiUt7jFz .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLIiUt7jFz .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLIiUt7jFz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLIiUt7jFz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLIiUt7jFz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLIiUt7jFz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLIiUt7jFz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLIiUt7jFz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLIiUt7jFz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLIiUt7jFz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLIiUt7jFz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLIiUt7jFz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLIiUt7jFz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLIiUt7jFz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLIiUt7jFz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLIiUt7jFz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLIiUt7jFz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLIiUt7jFz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLIiUt7jFz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLIiUt7jFz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLIiUt7jFz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLIiUt7jFz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLIiUt7jFz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLIiUt7jFz .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLIiUt7jFz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLIiUt7jFz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLIiUt7jFz .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLIiUt7jFz .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLIiUt7jFz .dropdown-item:hover {
  color: black!important;
}
.cid-tLIiUt7jFz .dropdown-menu {
  background-color: white!important;
}
.cid-tLIiUt7jFz .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLIiUt7jFz .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLIiUt7jFz .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLIiUt7jFz .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLIiUt7jFz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLIiUt7jFz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLIiUt7jFz .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLIiUt7jFz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLIiUt7jFz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLIiUt7jFz .collapsed {
  flex-direction: row!important;
}
.cid-tLIiUt7jFz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLIiUt7jFz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLIiUt7jFz .navbar-caption {
  font-weight: 600!important;
}
.cid-tLIiUt7jFz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLIiUt7jFz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLIiUt7jFz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLIiUt7jFz .dropdown-item.active,
.cid-tLIiUt7jFz .dropdown-item:active {
  background-color: transparent;
}
.cid-tLIiUt7jFz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLIiUt7jFz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLIiUt7jFz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLIiUt7jFz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLIiUt7jFz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLIiUt7jFz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLIiUt7jFz .navbar-buttons {
  text-align: center;
}
.cid-tLIiUt7jFz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLIiUt7jFz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLIiUt7jFz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLIiUt7jFz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLIiUt7jFz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLIiUt7jFz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLIiUt7jFz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLIiUt7jFz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLIiUt7jFz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLIiUt7jFz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLIiUt7jFz .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLIiUt7jFz .nav-link {
  font-weight: 600!important;
}
.cid-tLIiUt7jFz a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLIiUt7jFz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLIiUt7jFz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLIiUt7jFz .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLIiUt7jFz .navbar {
    height: 77px;
  }
  .cid-tLIiUt7jFz .navbar.opened {
    height: auto;
  }
  .cid-tLIiUt7jFz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLIiUxlrhW {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/meru2-1024x683.jpg");
}
.cid-tLIiUxlrhW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLIiUxlrhW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLIiUxlrhW .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZA6ApWE0v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLIiUAuP4E {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLIiUAuP4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLIiUAuP4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLIiUAuP4E .mbr-section-title,
.cid-tLIiUAuP4E .mbr-section-subtitle {
  text-align: center;
}
.cid-tLIiUAuP4E .cost {
  word-break: normal;
}
.cid-tLIiUAuP4E .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLIiUAuP4E .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLIiUAuP4E .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLIiUAuP4E .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAYz8PD8m {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAYz8PD8m .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAYz8PD8m .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAYz8PD8m textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAYz8PD8m .form-row {
    flex-direction: column;
  }
}
.cid-tQAYz8PD8m h4 {
  margin-bottom: 2rem;
}
.cid-tQAYz8PD8m .form-control,
.cid-tQAYz8PD8m .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAYz8PD8m .form-control,
.cid-tQAYz8PD8m .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAYz8PD8m .form-control::-webkit-input-placeholder,
.cid-tQAYz8PD8m .field-input::-webkit-input-placeholder,
.cid-tQAYz8PD8m .form-control::-webkit-input-placeholder,
.cid-tQAYz8PD8m .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAYz8PD8m .form-control:-moz-placeholder,
.cid-tQAYz8PD8m .field-input:-moz-placeholder,
.cid-tQAYz8PD8m .form-control:-moz-placeholder,
.cid-tQAYz8PD8m .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAYz8PD8m .form-control:hover,
.cid-tQAYz8PD8m .field-input:hover,
.cid-tQAYz8PD8m .form-control:focus,
.cid-tQAYz8PD8m .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAYz8PD8m .form-control:hover::-webkit-input-placeholder,
.cid-tQAYz8PD8m .field-input:hover::-webkit-input-placeholder,
.cid-tQAYz8PD8m .form-control:focus::-webkit-input-placeholder,
.cid-tQAYz8PD8m .field-input:focus::-webkit-input-placeholder,
.cid-tQAYz8PD8m .form-control:hover::-webkit-input-placeholder,
.cid-tQAYz8PD8m .field-input:hover::-webkit-input-placeholder,
.cid-tQAYz8PD8m .form-control:focus::-webkit-input-placeholder,
.cid-tQAYz8PD8m .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAYz8PD8m .form-control:hover:-moz-placeholder,
.cid-tQAYz8PD8m .field-input:hover:-moz-placeholder,
.cid-tQAYz8PD8m .form-control:focus:-moz-placeholder,
.cid-tQAYz8PD8m .field-input:focus:-moz-placeholder,
.cid-tQAYz8PD8m .form-control:hover:-moz-placeholder,
.cid-tQAYz8PD8m .field-input:hover:-moz-placeholder,
.cid-tQAYz8PD8m .form-control:focus:-moz-placeholder,
.cid-tQAYz8PD8m .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAYz8PD8m .jq-number__spin:hover,
.cid-tQAYz8PD8m .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAYz8PD8m .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAYz8PD8m .jq-selectbox li,
.cid-tQAYz8PD8m .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAYz8PD8m .jq-selectbox li:hover,
.cid-tQAYz8PD8m .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAYz8PD8m .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAYz8PD8m .jq-number__spin.minus:hover:after,
.cid-tQAYz8PD8m .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAYz8PD8m .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAYz8PD8m .jq-number__spin.minus:after,
.cid-tQAYz8PD8m .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAYz8PD8m input::-webkit-clear-button {
  display: none;
}
.cid-tQAYz8PD8m input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAYz8PD8m input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAYz8PD8m input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAYz8PD8m H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLIjJ36c0D .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLIjJ36c0D .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLIjJ36c0D .nav-item:focus,
.cid-tLIjJ36c0D .nav-link:focus {
  outline: none;
}
.cid-tLIjJ36c0D .text-white:hover,
.cid-tLIjJ36c0D .text-white:active,
.cid-tLIjJ36c0D .text-white:focus {
  color: white!important;
}
.cid-tLIjJ36c0D .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLIjJ36c0D .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLIjJ36c0D .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLIjJ36c0D .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLIjJ36c0D .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLIjJ36c0D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLIjJ36c0D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLIjJ36c0D .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLIjJ36c0D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLIjJ36c0D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLIjJ36c0D .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLIjJ36c0D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLIjJ36c0D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLIjJ36c0D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLIjJ36c0D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLIjJ36c0D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLIjJ36c0D .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLIjJ36c0D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLIjJ36c0D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLIjJ36c0D .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLIjJ36c0D .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLIjJ36c0D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLIjJ36c0D .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLIjJ36c0D .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLIjJ36c0D .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLIjJ36c0D .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLIjJ36c0D .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLIjJ36c0D .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLIjJ36c0D .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLIjJ36c0D .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLIjJ36c0D .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLIjJ36c0D .dropdown-item:hover {
  color: black!important;
}
.cid-tLIjJ36c0D .dropdown-menu {
  background-color: white!important;
}
.cid-tLIjJ36c0D .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLIjJ36c0D .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLIjJ36c0D .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLIjJ36c0D .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLIjJ36c0D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLIjJ36c0D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLIjJ36c0D .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLIjJ36c0D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLIjJ36c0D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLIjJ36c0D .collapsed {
  flex-direction: row!important;
}
.cid-tLIjJ36c0D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLIjJ36c0D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLIjJ36c0D .navbar-caption {
  font-weight: 600!important;
}
.cid-tLIjJ36c0D .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLIjJ36c0D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLIjJ36c0D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLIjJ36c0D .dropdown-item.active,
.cid-tLIjJ36c0D .dropdown-item:active {
  background-color: transparent;
}
.cid-tLIjJ36c0D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLIjJ36c0D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLIjJ36c0D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLIjJ36c0D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLIjJ36c0D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLIjJ36c0D ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLIjJ36c0D .navbar-buttons {
  text-align: center;
}
.cid-tLIjJ36c0D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLIjJ36c0D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLIjJ36c0D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLIjJ36c0D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLIjJ36c0D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLIjJ36c0D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLIjJ36c0D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLIjJ36c0D nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLIjJ36c0D nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLIjJ36c0D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLIjJ36c0D .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLIjJ36c0D .nav-link {
  font-weight: 600!important;
}
.cid-tLIjJ36c0D a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLIjJ36c0D .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLIjJ36c0D .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLIjJ36c0D .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLIjJ36c0D .navbar {
    height: 77px;
  }
  .cid-tLIjJ36c0D .navbar.opened {
    height: auto;
  }
  .cid-tLIjJ36c0D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLIjJ5pln3 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/ol-doinyo-lengai-tanzania.webp");
}
.cid-tLIjJ5pln3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLIjJ5pln3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLIjJ5pln3 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLIkw70m5N {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLIkw70m5N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLIkw70m5N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLIkw70m5N .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tLIkw70m5N .mbr-section-subtitle {
  text-align: left;
}
.cid-tLIkw70m5N .mbr-section-title {
  text-align: center;
}
.cid-tLIjJ8z4nS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLIjJ8z4nS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLIjJ8z4nS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLIjJ8z4nS .mbr-section-title,
.cid-tLIjJ8z4nS .mbr-section-subtitle {
  text-align: center;
}
.cid-tLIjJ8z4nS .cost {
  word-break: normal;
}
.cid-tLIjJ8z4nS .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLIjJ8z4nS .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLIjJ8z4nS .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLIjJ8z4nS .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAYLiY4sX {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAYLiY4sX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAYLiY4sX .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAYLiY4sX textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAYLiY4sX .form-row {
    flex-direction: column;
  }
}
.cid-tQAYLiY4sX h4 {
  margin-bottom: 2rem;
}
.cid-tQAYLiY4sX .form-control,
.cid-tQAYLiY4sX .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAYLiY4sX .form-control,
.cid-tQAYLiY4sX .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAYLiY4sX .form-control::-webkit-input-placeholder,
.cid-tQAYLiY4sX .field-input::-webkit-input-placeholder,
.cid-tQAYLiY4sX .form-control::-webkit-input-placeholder,
.cid-tQAYLiY4sX .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAYLiY4sX .form-control:-moz-placeholder,
.cid-tQAYLiY4sX .field-input:-moz-placeholder,
.cid-tQAYLiY4sX .form-control:-moz-placeholder,
.cid-tQAYLiY4sX .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAYLiY4sX .form-control:hover,
.cid-tQAYLiY4sX .field-input:hover,
.cid-tQAYLiY4sX .form-control:focus,
.cid-tQAYLiY4sX .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAYLiY4sX .form-control:hover::-webkit-input-placeholder,
.cid-tQAYLiY4sX .field-input:hover::-webkit-input-placeholder,
.cid-tQAYLiY4sX .form-control:focus::-webkit-input-placeholder,
.cid-tQAYLiY4sX .field-input:focus::-webkit-input-placeholder,
.cid-tQAYLiY4sX .form-control:hover::-webkit-input-placeholder,
.cid-tQAYLiY4sX .field-input:hover::-webkit-input-placeholder,
.cid-tQAYLiY4sX .form-control:focus::-webkit-input-placeholder,
.cid-tQAYLiY4sX .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAYLiY4sX .form-control:hover:-moz-placeholder,
.cid-tQAYLiY4sX .field-input:hover:-moz-placeholder,
.cid-tQAYLiY4sX .form-control:focus:-moz-placeholder,
.cid-tQAYLiY4sX .field-input:focus:-moz-placeholder,
.cid-tQAYLiY4sX .form-control:hover:-moz-placeholder,
.cid-tQAYLiY4sX .field-input:hover:-moz-placeholder,
.cid-tQAYLiY4sX .form-control:focus:-moz-placeholder,
.cid-tQAYLiY4sX .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAYLiY4sX .jq-number__spin:hover,
.cid-tQAYLiY4sX .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAYLiY4sX .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAYLiY4sX .jq-selectbox li,
.cid-tQAYLiY4sX .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAYLiY4sX .jq-selectbox li:hover,
.cid-tQAYLiY4sX .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAYLiY4sX .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAYLiY4sX .jq-number__spin.minus:hover:after,
.cid-tQAYLiY4sX .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAYLiY4sX .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAYLiY4sX .jq-number__spin.minus:after,
.cid-tQAYLiY4sX .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAYLiY4sX input::-webkit-clear-button {
  display: none;
}
.cid-tQAYLiY4sX input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAYLiY4sX input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAYLiY4sX input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAYLiY4sX H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLjkZ5D10 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLjkZ5D10 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLjkZ5D10 .nav-item:focus,
.cid-tLLjkZ5D10 .nav-link:focus {
  outline: none;
}
.cid-tLLjkZ5D10 .text-white:hover,
.cid-tLLjkZ5D10 .text-white:active,
.cid-tLLjkZ5D10 .text-white:focus {
  color: white!important;
}
.cid-tLLjkZ5D10 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLjkZ5D10 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLjkZ5D10 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLjkZ5D10 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLjkZ5D10 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLjkZ5D10 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLjkZ5D10 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLjkZ5D10 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLjkZ5D10 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLjkZ5D10 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLjkZ5D10 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLjkZ5D10 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLjkZ5D10 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLjkZ5D10 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLjkZ5D10 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLjkZ5D10 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLjkZ5D10 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLjkZ5D10 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLjkZ5D10 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLjkZ5D10 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLjkZ5D10 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLjkZ5D10 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLjkZ5D10 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLjkZ5D10 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLjkZ5D10 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLjkZ5D10 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLjkZ5D10 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLjkZ5D10 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLjkZ5D10 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLjkZ5D10 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLjkZ5D10 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLjkZ5D10 .dropdown-item:hover {
  color: black!important;
}
.cid-tLLjkZ5D10 .dropdown-menu {
  background-color: white!important;
}
.cid-tLLjkZ5D10 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLjkZ5D10 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLjkZ5D10 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLjkZ5D10 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLjkZ5D10 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLjkZ5D10 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLjkZ5D10 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLjkZ5D10 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLjkZ5D10 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLjkZ5D10 .collapsed {
  flex-direction: row!important;
}
.cid-tLLjkZ5D10 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLjkZ5D10 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLjkZ5D10 .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLjkZ5D10 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLjkZ5D10 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLjkZ5D10 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLjkZ5D10 .dropdown-item.active,
.cid-tLLjkZ5D10 .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLjkZ5D10 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLjkZ5D10 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLjkZ5D10 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLjkZ5D10 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLjkZ5D10 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLjkZ5D10 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLjkZ5D10 .navbar-buttons {
  text-align: center;
}
.cid-tLLjkZ5D10 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLjkZ5D10 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLjkZ5D10 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLjkZ5D10 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLjkZ5D10 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLjkZ5D10 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLjkZ5D10 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLjkZ5D10 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLjkZ5D10 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLjkZ5D10 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLjkZ5D10 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLjkZ5D10 .nav-link {
  font-weight: 600!important;
}
.cid-tLLjkZ5D10 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLjkZ5D10 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLjkZ5D10 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLjkZ5D10 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLjkZ5D10 .navbar {
    height: 77px;
  }
  .cid-tLLjkZ5D10 .navbar.opened {
    height: auto;
  }
  .cid-tLLjkZ5D10 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLjkZJ93v {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dominik-kiss-bvjpuaprjbo-unsplash-2000x3011.jpeg");
}
.cid-tLLjkZJ93v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLjkZJ93v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLjkZJ93v .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u0Ion5LiTm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0Ion5LiTm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0Ion5LiTm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0Ion5LiTm .mbr-section-subtitle {
  text-align: left;
}
.cid-tLLjl0BxKl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLjl0BxKl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLjl0BxKl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLjl0BxKl .mbr-section-title,
.cid-tLLjl0BxKl .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLjl0BxKl .cost {
  word-break: normal;
}
.cid-tLLjl0BxKl .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLjl0BxKl .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLjl0BxKl .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLjl0BxKl .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB0t5obpD {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB0t5obpD .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB0t5obpD .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB0t5obpD textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB0t5obpD .form-row {
    flex-direction: column;
  }
}
.cid-tQB0t5obpD h4 {
  margin-bottom: 2rem;
}
.cid-tQB0t5obpD .form-control,
.cid-tQB0t5obpD .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB0t5obpD .form-control,
.cid-tQB0t5obpD .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB0t5obpD .form-control::-webkit-input-placeholder,
.cid-tQB0t5obpD .field-input::-webkit-input-placeholder,
.cid-tQB0t5obpD .form-control::-webkit-input-placeholder,
.cid-tQB0t5obpD .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB0t5obpD .form-control:-moz-placeholder,
.cid-tQB0t5obpD .field-input:-moz-placeholder,
.cid-tQB0t5obpD .form-control:-moz-placeholder,
.cid-tQB0t5obpD .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB0t5obpD .form-control:hover,
.cid-tQB0t5obpD .field-input:hover,
.cid-tQB0t5obpD .form-control:focus,
.cid-tQB0t5obpD .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB0t5obpD .form-control:hover::-webkit-input-placeholder,
.cid-tQB0t5obpD .field-input:hover::-webkit-input-placeholder,
.cid-tQB0t5obpD .form-control:focus::-webkit-input-placeholder,
.cid-tQB0t5obpD .field-input:focus::-webkit-input-placeholder,
.cid-tQB0t5obpD .form-control:hover::-webkit-input-placeholder,
.cid-tQB0t5obpD .field-input:hover::-webkit-input-placeholder,
.cid-tQB0t5obpD .form-control:focus::-webkit-input-placeholder,
.cid-tQB0t5obpD .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB0t5obpD .form-control:hover:-moz-placeholder,
.cid-tQB0t5obpD .field-input:hover:-moz-placeholder,
.cid-tQB0t5obpD .form-control:focus:-moz-placeholder,
.cid-tQB0t5obpD .field-input:focus:-moz-placeholder,
.cid-tQB0t5obpD .form-control:hover:-moz-placeholder,
.cid-tQB0t5obpD .field-input:hover:-moz-placeholder,
.cid-tQB0t5obpD .form-control:focus:-moz-placeholder,
.cid-tQB0t5obpD .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB0t5obpD .jq-number__spin:hover,
.cid-tQB0t5obpD .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB0t5obpD .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB0t5obpD .jq-selectbox li,
.cid-tQB0t5obpD .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB0t5obpD .jq-selectbox li:hover,
.cid-tQB0t5obpD .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB0t5obpD .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB0t5obpD .jq-number__spin.minus:hover:after,
.cid-tQB0t5obpD .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB0t5obpD .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB0t5obpD .jq-number__spin.minus:after,
.cid-tQB0t5obpD .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB0t5obpD input::-webkit-clear-button {
  display: none;
}
.cid-tQB0t5obpD input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB0t5obpD input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB0t5obpD input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB0t5obpD H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLnSM1j5T .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLnSM1j5T .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLnSM1j5T .nav-item:focus,
.cid-tLLnSM1j5T .nav-link:focus {
  outline: none;
}
.cid-tLLnSM1j5T .text-white:hover,
.cid-tLLnSM1j5T .text-white:active,
.cid-tLLnSM1j5T .text-white:focus {
  color: white!important;
}
.cid-tLLnSM1j5T .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLnSM1j5T .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLnSM1j5T .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLnSM1j5T .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLnSM1j5T .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLnSM1j5T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLnSM1j5T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLnSM1j5T .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLnSM1j5T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLnSM1j5T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLnSM1j5T .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLnSM1j5T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLnSM1j5T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLnSM1j5T .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLnSM1j5T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLnSM1j5T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLnSM1j5T .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLnSM1j5T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLnSM1j5T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLnSM1j5T .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLnSM1j5T .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLnSM1j5T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLnSM1j5T .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLnSM1j5T .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLnSM1j5T .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLnSM1j5T .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLnSM1j5T .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLnSM1j5T .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLnSM1j5T .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLnSM1j5T .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLnSM1j5T .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLnSM1j5T .dropdown-item:hover {
  color: black!important;
}
.cid-tLLnSM1j5T .dropdown-menu {
  background-color: white!important;
}
.cid-tLLnSM1j5T .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLnSM1j5T .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLnSM1j5T .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLnSM1j5T .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLnSM1j5T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLnSM1j5T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLnSM1j5T .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLnSM1j5T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLnSM1j5T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLnSM1j5T .collapsed {
  flex-direction: row!important;
}
.cid-tLLnSM1j5T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLnSM1j5T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLnSM1j5T .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLnSM1j5T .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLnSM1j5T .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLnSM1j5T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLnSM1j5T .dropdown-item.active,
.cid-tLLnSM1j5T .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLnSM1j5T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLnSM1j5T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLnSM1j5T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLnSM1j5T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLnSM1j5T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLnSM1j5T ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLnSM1j5T .navbar-buttons {
  text-align: center;
}
.cid-tLLnSM1j5T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLnSM1j5T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLnSM1j5T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLnSM1j5T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLnSM1j5T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLnSM1j5T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLnSM1j5T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLnSM1j5T nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLnSM1j5T nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLnSM1j5T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLnSM1j5T .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLnSM1j5T .nav-link {
  font-weight: 600!important;
}
.cid-tLLnSM1j5T a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLnSM1j5T .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLnSM1j5T .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLnSM1j5T .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLnSM1j5T .navbar {
    height: 77px;
  }
  .cid-tLLnSM1j5T .navbar.opened {
    height: auto;
  }
  .cid-tLLnSM1j5T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLnSMTioU {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/javi-lorbada-nklfkicf3eq-unsplash-1920x1280.jpg");
}
.cid-tLLnSMTioU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLnSMTioU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLnSMTioU .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u0IoUEemc5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0IoUEemc5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0IoUEemc5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0IoUEemc5 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u0IoUEemc5 .mbr-section-subtitle {
  text-align: left;
}
.cid-tLLnSO5oqa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLnSO5oqa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLnSO5oqa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLnSO5oqa .mbr-section-title,
.cid-tLLnSO5oqa .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLnSO5oqa .cost {
  word-break: normal;
}
.cid-tLLnSO5oqa .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLnSO5oqa .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLnSO5oqa .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLnSO5oqa .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB0CNAr4L {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB0CNAr4L .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB0CNAr4L .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB0CNAr4L textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB0CNAr4L .form-row {
    flex-direction: column;
  }
}
.cid-tQB0CNAr4L h4 {
  margin-bottom: 2rem;
}
.cid-tQB0CNAr4L .form-control,
.cid-tQB0CNAr4L .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB0CNAr4L .form-control,
.cid-tQB0CNAr4L .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB0CNAr4L .form-control::-webkit-input-placeholder,
.cid-tQB0CNAr4L .field-input::-webkit-input-placeholder,
.cid-tQB0CNAr4L .form-control::-webkit-input-placeholder,
.cid-tQB0CNAr4L .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB0CNAr4L .form-control:-moz-placeholder,
.cid-tQB0CNAr4L .field-input:-moz-placeholder,
.cid-tQB0CNAr4L .form-control:-moz-placeholder,
.cid-tQB0CNAr4L .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB0CNAr4L .form-control:hover,
.cid-tQB0CNAr4L .field-input:hover,
.cid-tQB0CNAr4L .form-control:focus,
.cid-tQB0CNAr4L .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB0CNAr4L .form-control:hover::-webkit-input-placeholder,
.cid-tQB0CNAr4L .field-input:hover::-webkit-input-placeholder,
.cid-tQB0CNAr4L .form-control:focus::-webkit-input-placeholder,
.cid-tQB0CNAr4L .field-input:focus::-webkit-input-placeholder,
.cid-tQB0CNAr4L .form-control:hover::-webkit-input-placeholder,
.cid-tQB0CNAr4L .field-input:hover::-webkit-input-placeholder,
.cid-tQB0CNAr4L .form-control:focus::-webkit-input-placeholder,
.cid-tQB0CNAr4L .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB0CNAr4L .form-control:hover:-moz-placeholder,
.cid-tQB0CNAr4L .field-input:hover:-moz-placeholder,
.cid-tQB0CNAr4L .form-control:focus:-moz-placeholder,
.cid-tQB0CNAr4L .field-input:focus:-moz-placeholder,
.cid-tQB0CNAr4L .form-control:hover:-moz-placeholder,
.cid-tQB0CNAr4L .field-input:hover:-moz-placeholder,
.cid-tQB0CNAr4L .form-control:focus:-moz-placeholder,
.cid-tQB0CNAr4L .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB0CNAr4L .jq-number__spin:hover,
.cid-tQB0CNAr4L .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB0CNAr4L .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB0CNAr4L .jq-selectbox li,
.cid-tQB0CNAr4L .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB0CNAr4L .jq-selectbox li:hover,
.cid-tQB0CNAr4L .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB0CNAr4L .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB0CNAr4L .jq-number__spin.minus:hover:after,
.cid-tQB0CNAr4L .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB0CNAr4L .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB0CNAr4L .jq-number__spin.minus:after,
.cid-tQB0CNAr4L .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB0CNAr4L input::-webkit-clear-button {
  display: none;
}
.cid-tQB0CNAr4L input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB0CNAr4L input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB0CNAr4L input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB0CNAr4L H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLuz0PbVU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLuz0PbVU .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLuz0PbVU .nav-item:focus,
.cid-tLLuz0PbVU .nav-link:focus {
  outline: none;
}
.cid-tLLuz0PbVU .text-white:hover,
.cid-tLLuz0PbVU .text-white:active,
.cid-tLLuz0PbVU .text-white:focus {
  color: white!important;
}
.cid-tLLuz0PbVU .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLuz0PbVU .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLuz0PbVU .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLuz0PbVU .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLuz0PbVU .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLuz0PbVU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLuz0PbVU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLuz0PbVU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLuz0PbVU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLuz0PbVU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLuz0PbVU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLuz0PbVU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLuz0PbVU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLuz0PbVU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLuz0PbVU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLuz0PbVU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLuz0PbVU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLuz0PbVU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLuz0PbVU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLuz0PbVU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLuz0PbVU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLuz0PbVU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLuz0PbVU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLuz0PbVU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLuz0PbVU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLuz0PbVU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLuz0PbVU .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLuz0PbVU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLuz0PbVU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLuz0PbVU .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLuz0PbVU .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLuz0PbVU .dropdown-item:hover {
  color: black!important;
}
.cid-tLLuz0PbVU .dropdown-menu {
  background-color: white!important;
}
.cid-tLLuz0PbVU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLuz0PbVU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLuz0PbVU .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLuz0PbVU .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLuz0PbVU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLuz0PbVU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLuz0PbVU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLuz0PbVU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLuz0PbVU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLuz0PbVU .collapsed {
  flex-direction: row!important;
}
.cid-tLLuz0PbVU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLuz0PbVU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLuz0PbVU .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLuz0PbVU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLuz0PbVU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLuz0PbVU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLuz0PbVU .dropdown-item.active,
.cid-tLLuz0PbVU .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLuz0PbVU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLuz0PbVU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLuz0PbVU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLuz0PbVU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLuz0PbVU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLuz0PbVU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLuz0PbVU .navbar-buttons {
  text-align: center;
}
.cid-tLLuz0PbVU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLuz0PbVU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLuz0PbVU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLuz0PbVU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLuz0PbVU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLuz0PbVU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLuz0PbVU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLuz0PbVU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLuz0PbVU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLuz0PbVU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLuz0PbVU .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLuz0PbVU .nav-link {
  font-weight: 600!important;
}
.cid-tLLuz0PbVU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLuz0PbVU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLuz0PbVU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLuz0PbVU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLuz0PbVU .navbar {
    height: 77px;
  }
  .cid-tLLuz0PbVU .navbar.opened {
    height: auto;
  }
  .cid-tLLuz0PbVU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLuz1SdnE {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/camilla-frederiksen-ddbqwbv-nmk-unsplash-1920x1280.jpg");
}
.cid-tLLuz1SdnE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLuz1SdnE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLuz1SdnE .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u0IqaPO6XO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLuz3rCly {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLuz3rCly .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLuz3rCly .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLuz3rCly .mbr-section-title,
.cid-tLLuz3rCly .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLuz3rCly .cost {
  word-break: normal;
}
.cid-tLLuz3rCly .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLuz3rCly .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLuz3rCly .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLuz3rCly .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB10UiQlc {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB10UiQlc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB10UiQlc .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB10UiQlc textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB10UiQlc .form-row {
    flex-direction: column;
  }
}
.cid-tQB10UiQlc h4 {
  margin-bottom: 2rem;
}
.cid-tQB10UiQlc .form-control,
.cid-tQB10UiQlc .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB10UiQlc .form-control,
.cid-tQB10UiQlc .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB10UiQlc .form-control::-webkit-input-placeholder,
.cid-tQB10UiQlc .field-input::-webkit-input-placeholder,
.cid-tQB10UiQlc .form-control::-webkit-input-placeholder,
.cid-tQB10UiQlc .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB10UiQlc .form-control:-moz-placeholder,
.cid-tQB10UiQlc .field-input:-moz-placeholder,
.cid-tQB10UiQlc .form-control:-moz-placeholder,
.cid-tQB10UiQlc .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB10UiQlc .form-control:hover,
.cid-tQB10UiQlc .field-input:hover,
.cid-tQB10UiQlc .form-control:focus,
.cid-tQB10UiQlc .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB10UiQlc .form-control:hover::-webkit-input-placeholder,
.cid-tQB10UiQlc .field-input:hover::-webkit-input-placeholder,
.cid-tQB10UiQlc .form-control:focus::-webkit-input-placeholder,
.cid-tQB10UiQlc .field-input:focus::-webkit-input-placeholder,
.cid-tQB10UiQlc .form-control:hover::-webkit-input-placeholder,
.cid-tQB10UiQlc .field-input:hover::-webkit-input-placeholder,
.cid-tQB10UiQlc .form-control:focus::-webkit-input-placeholder,
.cid-tQB10UiQlc .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB10UiQlc .form-control:hover:-moz-placeholder,
.cid-tQB10UiQlc .field-input:hover:-moz-placeholder,
.cid-tQB10UiQlc .form-control:focus:-moz-placeholder,
.cid-tQB10UiQlc .field-input:focus:-moz-placeholder,
.cid-tQB10UiQlc .form-control:hover:-moz-placeholder,
.cid-tQB10UiQlc .field-input:hover:-moz-placeholder,
.cid-tQB10UiQlc .form-control:focus:-moz-placeholder,
.cid-tQB10UiQlc .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB10UiQlc .jq-number__spin:hover,
.cid-tQB10UiQlc .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB10UiQlc .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB10UiQlc .jq-selectbox li,
.cid-tQB10UiQlc .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB10UiQlc .jq-selectbox li:hover,
.cid-tQB10UiQlc .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB10UiQlc .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB10UiQlc .jq-number__spin.minus:hover:after,
.cid-tQB10UiQlc .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB10UiQlc .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB10UiQlc .jq-number__spin.minus:after,
.cid-tQB10UiQlc .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB10UiQlc input::-webkit-clear-button {
  display: none;
}
.cid-tQB10UiQlc input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB10UiQlc input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB10UiQlc input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB10UiQlc H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLvvNlqVy .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLvvNlqVy .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLvvNlqVy .nav-item:focus,
.cid-tLLvvNlqVy .nav-link:focus {
  outline: none;
}
.cid-tLLvvNlqVy .text-white:hover,
.cid-tLLvvNlqVy .text-white:active,
.cid-tLLvvNlqVy .text-white:focus {
  color: white!important;
}
.cid-tLLvvNlqVy .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLvvNlqVy .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLvvNlqVy .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLvvNlqVy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLvvNlqVy .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLvvNlqVy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLvvNlqVy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLvvNlqVy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLvvNlqVy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLvvNlqVy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLvvNlqVy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLvvNlqVy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLvvNlqVy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLvvNlqVy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLvvNlqVy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLvvNlqVy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLvvNlqVy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLvvNlqVy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLvvNlqVy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLvvNlqVy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLvvNlqVy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLvvNlqVy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLvvNlqVy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLvvNlqVy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLvvNlqVy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLvvNlqVy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLvvNlqVy .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLvvNlqVy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLvvNlqVy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLvvNlqVy .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLvvNlqVy .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLvvNlqVy .dropdown-item:hover {
  color: black!important;
}
.cid-tLLvvNlqVy .dropdown-menu {
  background-color: white!important;
}
.cid-tLLvvNlqVy .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLvvNlqVy .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLvvNlqVy .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLvvNlqVy .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLvvNlqVy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLvvNlqVy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLvvNlqVy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLvvNlqVy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLvvNlqVy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLvvNlqVy .collapsed {
  flex-direction: row!important;
}
.cid-tLLvvNlqVy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLvvNlqVy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLvvNlqVy .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLvvNlqVy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLvvNlqVy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLvvNlqVy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLvvNlqVy .dropdown-item.active,
.cid-tLLvvNlqVy .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLvvNlqVy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLvvNlqVy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLvvNlqVy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLvvNlqVy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLvvNlqVy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLvvNlqVy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLvvNlqVy .navbar-buttons {
  text-align: center;
}
.cid-tLLvvNlqVy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLvvNlqVy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLvvNlqVy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLvvNlqVy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLvvNlqVy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLvvNlqVy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLvvNlqVy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLvvNlqVy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLvvNlqVy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLvvNlqVy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLvvNlqVy .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLvvNlqVy .nav-link {
  font-weight: 600!important;
}
.cid-tLLvvNlqVy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLvvNlqVy .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLvvNlqVy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLvvNlqVy .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLvvNlqVy .navbar {
    height: 77px;
  }
  .cid-tLLvvNlqVy .navbar.opened {
    height: auto;
  }
  .cid-tLLvvNlqVy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLvvOlJUD {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dmitry-limonov-tey68pexqkm-unsplash-2000x2500.jpg");
}
.cid-tLLvvOlJUD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLvvOlJUD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLvvOlJUD .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u0IqYrjKlq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0IqYrjKlq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0IqYrjKlq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0IqYrjKlq .mbr-section-subtitle {
  text-align: left;
}
.cid-tLLvvPYckZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLvvPYckZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLvvPYckZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLvvPYckZ .mbr-section-title,
.cid-tLLvvPYckZ .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLvvPYckZ .cost {
  word-break: normal;
}
.cid-tLLvvPYckZ .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLvvPYckZ .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLvvPYckZ .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLvvPYckZ .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB1dqkmWy {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB1dqkmWy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB1dqkmWy .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB1dqkmWy textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB1dqkmWy .form-row {
    flex-direction: column;
  }
}
.cid-tQB1dqkmWy h4 {
  margin-bottom: 2rem;
}
.cid-tQB1dqkmWy .form-control,
.cid-tQB1dqkmWy .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB1dqkmWy .form-control,
.cid-tQB1dqkmWy .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB1dqkmWy .form-control::-webkit-input-placeholder,
.cid-tQB1dqkmWy .field-input::-webkit-input-placeholder,
.cid-tQB1dqkmWy .form-control::-webkit-input-placeholder,
.cid-tQB1dqkmWy .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB1dqkmWy .form-control:-moz-placeholder,
.cid-tQB1dqkmWy .field-input:-moz-placeholder,
.cid-tQB1dqkmWy .form-control:-moz-placeholder,
.cid-tQB1dqkmWy .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB1dqkmWy .form-control:hover,
.cid-tQB1dqkmWy .field-input:hover,
.cid-tQB1dqkmWy .form-control:focus,
.cid-tQB1dqkmWy .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB1dqkmWy .form-control:hover::-webkit-input-placeholder,
.cid-tQB1dqkmWy .field-input:hover::-webkit-input-placeholder,
.cid-tQB1dqkmWy .form-control:focus::-webkit-input-placeholder,
.cid-tQB1dqkmWy .field-input:focus::-webkit-input-placeholder,
.cid-tQB1dqkmWy .form-control:hover::-webkit-input-placeholder,
.cid-tQB1dqkmWy .field-input:hover::-webkit-input-placeholder,
.cid-tQB1dqkmWy .form-control:focus::-webkit-input-placeholder,
.cid-tQB1dqkmWy .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB1dqkmWy .form-control:hover:-moz-placeholder,
.cid-tQB1dqkmWy .field-input:hover:-moz-placeholder,
.cid-tQB1dqkmWy .form-control:focus:-moz-placeholder,
.cid-tQB1dqkmWy .field-input:focus:-moz-placeholder,
.cid-tQB1dqkmWy .form-control:hover:-moz-placeholder,
.cid-tQB1dqkmWy .field-input:hover:-moz-placeholder,
.cid-tQB1dqkmWy .form-control:focus:-moz-placeholder,
.cid-tQB1dqkmWy .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB1dqkmWy .jq-number__spin:hover,
.cid-tQB1dqkmWy .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB1dqkmWy .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB1dqkmWy .jq-selectbox li,
.cid-tQB1dqkmWy .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB1dqkmWy .jq-selectbox li:hover,
.cid-tQB1dqkmWy .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB1dqkmWy .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB1dqkmWy .jq-number__spin.minus:hover:after,
.cid-tQB1dqkmWy .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB1dqkmWy .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB1dqkmWy .jq-number__spin.minus:after,
.cid-tQB1dqkmWy .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB1dqkmWy input::-webkit-clear-button {
  display: none;
}
.cid-tQB1dqkmWy input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB1dqkmWy input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB1dqkmWy input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB1dqkmWy H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLBcU370B .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLBcU370B .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLBcU370B .nav-item:focus,
.cid-tLLBcU370B .nav-link:focus {
  outline: none;
}
.cid-tLLBcU370B .text-white:hover,
.cid-tLLBcU370B .text-white:active,
.cid-tLLBcU370B .text-white:focus {
  color: white!important;
}
.cid-tLLBcU370B .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLBcU370B .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLBcU370B .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLBcU370B .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLBcU370B .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLBcU370B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLBcU370B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLBcU370B .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLBcU370B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLBcU370B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLBcU370B .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLBcU370B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLBcU370B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLBcU370B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLBcU370B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLBcU370B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLBcU370B .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLBcU370B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLBcU370B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLBcU370B .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLBcU370B .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLBcU370B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLBcU370B .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLBcU370B .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLBcU370B .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLBcU370B .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLBcU370B .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLBcU370B .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLBcU370B .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLBcU370B .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLBcU370B .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLBcU370B .dropdown-item:hover {
  color: black!important;
}
.cid-tLLBcU370B .dropdown-menu {
  background-color: white!important;
}
.cid-tLLBcU370B .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLBcU370B .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLBcU370B .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLBcU370B .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLBcU370B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLBcU370B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLBcU370B .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLBcU370B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLBcU370B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLBcU370B .collapsed {
  flex-direction: row!important;
}
.cid-tLLBcU370B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLBcU370B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLBcU370B .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLBcU370B .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLBcU370B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLBcU370B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLBcU370B .dropdown-item.active,
.cid-tLLBcU370B .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLBcU370B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLBcU370B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLBcU370B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLBcU370B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLBcU370B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLBcU370B ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLBcU370B .navbar-buttons {
  text-align: center;
}
.cid-tLLBcU370B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLBcU370B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLBcU370B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLBcU370B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLBcU370B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLBcU370B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLBcU370B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLBcU370B nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLBcU370B nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLBcU370B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLBcU370B .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLBcU370B .nav-link {
  font-weight: 600!important;
}
.cid-tLLBcU370B a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLBcU370B .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLBcU370B .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLBcU370B .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLBcU370B .navbar {
    height: 77px;
  }
  .cid-tLLBcU370B .navbar.opened {
    height: auto;
  }
  .cid-tLLBcU370B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLBcUU7xB {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tLLBcUU7xB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLBcUU7xB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLBcUU7xB .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLLBcVCVF7 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLLBcVCVF7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLBcVCVF7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLBcVCVF7 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tLLBcVCVF7 .mbr-section-subtitle {
  text-align: left;
}
.cid-tLLBcVCVF7 .mbr-section-title {
  text-align: center;
}
.cid-tLLBcWdzGi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLBcWdzGi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLBcWdzGi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLBcWdzGi .mbr-section-title,
.cid-tLLBcWdzGi .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLBcWdzGi .cost {
  word-break: normal;
}
.cid-tLLBcWdzGi .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLBcWdzGi .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLBcWdzGi .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLBcWdzGi .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB1smyzML {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB1smyzML .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB1smyzML .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB1smyzML textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB1smyzML .form-row {
    flex-direction: column;
  }
}
.cid-tQB1smyzML h4 {
  margin-bottom: 2rem;
}
.cid-tQB1smyzML .form-control,
.cid-tQB1smyzML .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB1smyzML .form-control,
.cid-tQB1smyzML .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB1smyzML .form-control::-webkit-input-placeholder,
.cid-tQB1smyzML .field-input::-webkit-input-placeholder,
.cid-tQB1smyzML .form-control::-webkit-input-placeholder,
.cid-tQB1smyzML .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB1smyzML .form-control:-moz-placeholder,
.cid-tQB1smyzML .field-input:-moz-placeholder,
.cid-tQB1smyzML .form-control:-moz-placeholder,
.cid-tQB1smyzML .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB1smyzML .form-control:hover,
.cid-tQB1smyzML .field-input:hover,
.cid-tQB1smyzML .form-control:focus,
.cid-tQB1smyzML .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB1smyzML .form-control:hover::-webkit-input-placeholder,
.cid-tQB1smyzML .field-input:hover::-webkit-input-placeholder,
.cid-tQB1smyzML .form-control:focus::-webkit-input-placeholder,
.cid-tQB1smyzML .field-input:focus::-webkit-input-placeholder,
.cid-tQB1smyzML .form-control:hover::-webkit-input-placeholder,
.cid-tQB1smyzML .field-input:hover::-webkit-input-placeholder,
.cid-tQB1smyzML .form-control:focus::-webkit-input-placeholder,
.cid-tQB1smyzML .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB1smyzML .form-control:hover:-moz-placeholder,
.cid-tQB1smyzML .field-input:hover:-moz-placeholder,
.cid-tQB1smyzML .form-control:focus:-moz-placeholder,
.cid-tQB1smyzML .field-input:focus:-moz-placeholder,
.cid-tQB1smyzML .form-control:hover:-moz-placeholder,
.cid-tQB1smyzML .field-input:hover:-moz-placeholder,
.cid-tQB1smyzML .form-control:focus:-moz-placeholder,
.cid-tQB1smyzML .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB1smyzML .jq-number__spin:hover,
.cid-tQB1smyzML .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB1smyzML .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB1smyzML .jq-selectbox li,
.cid-tQB1smyzML .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB1smyzML .jq-selectbox li:hover,
.cid-tQB1smyzML .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB1smyzML .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB1smyzML .jq-number__spin.minus:hover:after,
.cid-tQB1smyzML .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB1smyzML .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB1smyzML .jq-number__spin.minus:after,
.cid-tQB1smyzML .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB1smyzML input::-webkit-clear-button {
  display: none;
}
.cid-tQB1smyzML input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB1smyzML input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB1smyzML input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB1smyzML H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLFsvlGkT .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLFsvlGkT .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLFsvlGkT .nav-item:focus,
.cid-tLLFsvlGkT .nav-link:focus {
  outline: none;
}
.cid-tLLFsvlGkT .text-white:hover,
.cid-tLLFsvlGkT .text-white:active,
.cid-tLLFsvlGkT .text-white:focus {
  color: white!important;
}
.cid-tLLFsvlGkT .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLFsvlGkT .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLFsvlGkT .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLFsvlGkT .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLFsvlGkT .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLFsvlGkT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLFsvlGkT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLFsvlGkT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLFsvlGkT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLFsvlGkT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLFsvlGkT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLFsvlGkT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLFsvlGkT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLFsvlGkT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLFsvlGkT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLFsvlGkT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLFsvlGkT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLFsvlGkT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLFsvlGkT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLFsvlGkT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLFsvlGkT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLFsvlGkT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLFsvlGkT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLFsvlGkT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLFsvlGkT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLFsvlGkT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLFsvlGkT .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLFsvlGkT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLFsvlGkT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLFsvlGkT .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLFsvlGkT .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLFsvlGkT .dropdown-item:hover {
  color: black!important;
}
.cid-tLLFsvlGkT .dropdown-menu {
  background-color: white!important;
}
.cid-tLLFsvlGkT .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLFsvlGkT .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLFsvlGkT .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLFsvlGkT .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLFsvlGkT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLFsvlGkT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLFsvlGkT .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLFsvlGkT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLFsvlGkT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLFsvlGkT .collapsed {
  flex-direction: row!important;
}
.cid-tLLFsvlGkT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLFsvlGkT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLFsvlGkT .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLFsvlGkT .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLFsvlGkT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLFsvlGkT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLFsvlGkT .dropdown-item.active,
.cid-tLLFsvlGkT .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLFsvlGkT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLFsvlGkT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLFsvlGkT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLFsvlGkT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLFsvlGkT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLFsvlGkT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLFsvlGkT .navbar-buttons {
  text-align: center;
}
.cid-tLLFsvlGkT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLFsvlGkT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLFsvlGkT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLFsvlGkT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLFsvlGkT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLFsvlGkT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLFsvlGkT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLFsvlGkT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLFsvlGkT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLFsvlGkT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLFsvlGkT .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLFsvlGkT .nav-link {
  font-weight: 600!important;
}
.cid-tLLFsvlGkT a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLFsvlGkT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLFsvlGkT .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLFsvlGkT .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLFsvlGkT .navbar {
    height: 77px;
  }
  .cid-tLLFsvlGkT .navbar.opened {
    height: auto;
  }
  .cid-tLLFsvlGkT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLFsxPPL3 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-tLLFsxPPL3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLFsxPPL3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLFsxPPL3 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLLFszaFSP {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLLFszaFSP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLFszaFSP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLFszaFSP .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tLLFszaFSP .mbr-section-subtitle {
  text-align: left;
}
.cid-tLLFszaFSP .mbr-section-title {
  text-align: center;
}
.cid-tLLFsAiVGV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLFsAiVGV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLFsAiVGV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLFsAiVGV .mbr-section-title,
.cid-tLLFsAiVGV .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLFsAiVGV .cost {
  word-break: normal;
}
.cid-tLLFsAiVGV .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLFsAiVGV .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLFsAiVGV .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLFsAiVGV .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB1NNtg2s {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB1NNtg2s .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB1NNtg2s .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB1NNtg2s textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB1NNtg2s .form-row {
    flex-direction: column;
  }
}
.cid-tQB1NNtg2s h4 {
  margin-bottom: 2rem;
}
.cid-tQB1NNtg2s .form-control,
.cid-tQB1NNtg2s .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB1NNtg2s .form-control,
.cid-tQB1NNtg2s .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB1NNtg2s .form-control::-webkit-input-placeholder,
.cid-tQB1NNtg2s .field-input::-webkit-input-placeholder,
.cid-tQB1NNtg2s .form-control::-webkit-input-placeholder,
.cid-tQB1NNtg2s .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB1NNtg2s .form-control:-moz-placeholder,
.cid-tQB1NNtg2s .field-input:-moz-placeholder,
.cid-tQB1NNtg2s .form-control:-moz-placeholder,
.cid-tQB1NNtg2s .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB1NNtg2s .form-control:hover,
.cid-tQB1NNtg2s .field-input:hover,
.cid-tQB1NNtg2s .form-control:focus,
.cid-tQB1NNtg2s .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB1NNtg2s .form-control:hover::-webkit-input-placeholder,
.cid-tQB1NNtg2s .field-input:hover::-webkit-input-placeholder,
.cid-tQB1NNtg2s .form-control:focus::-webkit-input-placeholder,
.cid-tQB1NNtg2s .field-input:focus::-webkit-input-placeholder,
.cid-tQB1NNtg2s .form-control:hover::-webkit-input-placeholder,
.cid-tQB1NNtg2s .field-input:hover::-webkit-input-placeholder,
.cid-tQB1NNtg2s .form-control:focus::-webkit-input-placeholder,
.cid-tQB1NNtg2s .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB1NNtg2s .form-control:hover:-moz-placeholder,
.cid-tQB1NNtg2s .field-input:hover:-moz-placeholder,
.cid-tQB1NNtg2s .form-control:focus:-moz-placeholder,
.cid-tQB1NNtg2s .field-input:focus:-moz-placeholder,
.cid-tQB1NNtg2s .form-control:hover:-moz-placeholder,
.cid-tQB1NNtg2s .field-input:hover:-moz-placeholder,
.cid-tQB1NNtg2s .form-control:focus:-moz-placeholder,
.cid-tQB1NNtg2s .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB1NNtg2s .jq-number__spin:hover,
.cid-tQB1NNtg2s .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB1NNtg2s .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB1NNtg2s .jq-selectbox li,
.cid-tQB1NNtg2s .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB1NNtg2s .jq-selectbox li:hover,
.cid-tQB1NNtg2s .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB1NNtg2s .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB1NNtg2s .jq-number__spin.minus:hover:after,
.cid-tQB1NNtg2s .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB1NNtg2s .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB1NNtg2s .jq-number__spin.minus:after,
.cid-tQB1NNtg2s .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB1NNtg2s input::-webkit-clear-button {
  display: none;
}
.cid-tQB1NNtg2s input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB1NNtg2s input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB1NNtg2s input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB1NNtg2s H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLGlDrvxV .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLGlDrvxV .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLGlDrvxV .nav-item:focus,
.cid-tLLGlDrvxV .nav-link:focus {
  outline: none;
}
.cid-tLLGlDrvxV .text-white:hover,
.cid-tLLGlDrvxV .text-white:active,
.cid-tLLGlDrvxV .text-white:focus {
  color: white!important;
}
.cid-tLLGlDrvxV .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLGlDrvxV .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLGlDrvxV .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLGlDrvxV .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLGlDrvxV .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLGlDrvxV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLGlDrvxV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLGlDrvxV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLGlDrvxV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLGlDrvxV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLGlDrvxV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLGlDrvxV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLGlDrvxV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLGlDrvxV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLGlDrvxV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLGlDrvxV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLGlDrvxV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLGlDrvxV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLGlDrvxV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLGlDrvxV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLGlDrvxV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLGlDrvxV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLGlDrvxV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLGlDrvxV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLGlDrvxV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLGlDrvxV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLGlDrvxV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLGlDrvxV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLGlDrvxV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLGlDrvxV .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLGlDrvxV .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLGlDrvxV .dropdown-item:hover {
  color: black!important;
}
.cid-tLLGlDrvxV .dropdown-menu {
  background-color: white!important;
}
.cid-tLLGlDrvxV .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLGlDrvxV .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLGlDrvxV .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLGlDrvxV .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLGlDrvxV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLGlDrvxV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLGlDrvxV .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLGlDrvxV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLGlDrvxV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLGlDrvxV .collapsed {
  flex-direction: row!important;
}
.cid-tLLGlDrvxV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLGlDrvxV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLGlDrvxV .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLGlDrvxV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLGlDrvxV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLGlDrvxV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLGlDrvxV .dropdown-item.active,
.cid-tLLGlDrvxV .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLGlDrvxV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLGlDrvxV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLGlDrvxV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLGlDrvxV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLGlDrvxV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLGlDrvxV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLGlDrvxV .navbar-buttons {
  text-align: center;
}
.cid-tLLGlDrvxV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLGlDrvxV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLGlDrvxV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLGlDrvxV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLGlDrvxV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLGlDrvxV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLGlDrvxV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLGlDrvxV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLGlDrvxV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLGlDrvxV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLGlDrvxV .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLGlDrvxV .nav-link {
  font-weight: 600!important;
}
.cid-tLLGlDrvxV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLGlDrvxV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLGlDrvxV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLGlDrvxV .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLGlDrvxV .navbar {
    height: 77px;
  }
  .cid-tLLGlDrvxV .navbar.opened {
    height: auto;
  }
  .cid-tLLGlDrvxV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLGlGjgl0 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/1329-1600x1066.jpg");
}
.cid-tLLGlGjgl0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLGlGjgl0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLGlGjgl0 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLLGlHS7uc {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLLGlHS7uc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLGlHS7uc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLGlHS7uc .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tLLGlHS7uc .mbr-section-subtitle {
  text-align: left;
}
.cid-tLLGlHS7uc .mbr-section-title {
  text-align: center;
}
.cid-tLLGlJ2HSd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLGlJ2HSd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLGlJ2HSd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLGlJ2HSd .mbr-section-title,
.cid-tLLGlJ2HSd .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLGlJ2HSd .cost {
  word-break: normal;
}
.cid-tLLGlJ2HSd .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLGlJ2HSd .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLGlJ2HSd .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLGlJ2HSd .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB21nVPxd {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB21nVPxd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB21nVPxd .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB21nVPxd textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB21nVPxd .form-row {
    flex-direction: column;
  }
}
.cid-tQB21nVPxd h4 {
  margin-bottom: 2rem;
}
.cid-tQB21nVPxd .form-control,
.cid-tQB21nVPxd .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB21nVPxd .form-control,
.cid-tQB21nVPxd .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB21nVPxd .form-control::-webkit-input-placeholder,
.cid-tQB21nVPxd .field-input::-webkit-input-placeholder,
.cid-tQB21nVPxd .form-control::-webkit-input-placeholder,
.cid-tQB21nVPxd .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB21nVPxd .form-control:-moz-placeholder,
.cid-tQB21nVPxd .field-input:-moz-placeholder,
.cid-tQB21nVPxd .form-control:-moz-placeholder,
.cid-tQB21nVPxd .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB21nVPxd .form-control:hover,
.cid-tQB21nVPxd .field-input:hover,
.cid-tQB21nVPxd .form-control:focus,
.cid-tQB21nVPxd .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB21nVPxd .form-control:hover::-webkit-input-placeholder,
.cid-tQB21nVPxd .field-input:hover::-webkit-input-placeholder,
.cid-tQB21nVPxd .form-control:focus::-webkit-input-placeholder,
.cid-tQB21nVPxd .field-input:focus::-webkit-input-placeholder,
.cid-tQB21nVPxd .form-control:hover::-webkit-input-placeholder,
.cid-tQB21nVPxd .field-input:hover::-webkit-input-placeholder,
.cid-tQB21nVPxd .form-control:focus::-webkit-input-placeholder,
.cid-tQB21nVPxd .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB21nVPxd .form-control:hover:-moz-placeholder,
.cid-tQB21nVPxd .field-input:hover:-moz-placeholder,
.cid-tQB21nVPxd .form-control:focus:-moz-placeholder,
.cid-tQB21nVPxd .field-input:focus:-moz-placeholder,
.cid-tQB21nVPxd .form-control:hover:-moz-placeholder,
.cid-tQB21nVPxd .field-input:hover:-moz-placeholder,
.cid-tQB21nVPxd .form-control:focus:-moz-placeholder,
.cid-tQB21nVPxd .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB21nVPxd .jq-number__spin:hover,
.cid-tQB21nVPxd .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB21nVPxd .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB21nVPxd .jq-selectbox li,
.cid-tQB21nVPxd .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB21nVPxd .jq-selectbox li:hover,
.cid-tQB21nVPxd .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB21nVPxd .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB21nVPxd .jq-number__spin.minus:hover:after,
.cid-tQB21nVPxd .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB21nVPxd .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB21nVPxd .jq-number__spin.minus:after,
.cid-tQB21nVPxd .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB21nVPxd input::-webkit-clear-button {
  display: none;
}
.cid-tQB21nVPxd input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB21nVPxd input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB21nVPxd input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB21nVPxd H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLIeFxSWa .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLIeFxSWa .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLIeFxSWa .nav-item:focus,
.cid-tLLIeFxSWa .nav-link:focus {
  outline: none;
}
.cid-tLLIeFxSWa .text-white:hover,
.cid-tLLIeFxSWa .text-white:active,
.cid-tLLIeFxSWa .text-white:focus {
  color: white!important;
}
.cid-tLLIeFxSWa .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLIeFxSWa .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLIeFxSWa .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLIeFxSWa .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLIeFxSWa .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLIeFxSWa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLIeFxSWa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLIeFxSWa .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLIeFxSWa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLIeFxSWa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLIeFxSWa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLIeFxSWa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLIeFxSWa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLIeFxSWa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLIeFxSWa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLIeFxSWa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLIeFxSWa .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLIeFxSWa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLIeFxSWa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLIeFxSWa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLIeFxSWa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLIeFxSWa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLIeFxSWa .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLIeFxSWa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLIeFxSWa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLIeFxSWa .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLIeFxSWa .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLIeFxSWa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLIeFxSWa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLIeFxSWa .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLIeFxSWa .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLIeFxSWa .dropdown-item:hover {
  color: black!important;
}
.cid-tLLIeFxSWa .dropdown-menu {
  background-color: white!important;
}
.cid-tLLIeFxSWa .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLIeFxSWa .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLIeFxSWa .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLIeFxSWa .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLIeFxSWa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLIeFxSWa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLIeFxSWa .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLIeFxSWa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLIeFxSWa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLIeFxSWa .collapsed {
  flex-direction: row!important;
}
.cid-tLLIeFxSWa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLIeFxSWa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLIeFxSWa .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLIeFxSWa .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLIeFxSWa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLIeFxSWa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLIeFxSWa .dropdown-item.active,
.cid-tLLIeFxSWa .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLIeFxSWa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLIeFxSWa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLIeFxSWa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLIeFxSWa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLIeFxSWa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLIeFxSWa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLIeFxSWa .navbar-buttons {
  text-align: center;
}
.cid-tLLIeFxSWa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLIeFxSWa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLIeFxSWa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLIeFxSWa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLIeFxSWa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLIeFxSWa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLIeFxSWa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLIeFxSWa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLIeFxSWa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLIeFxSWa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLIeFxSWa .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLIeFxSWa .nav-link {
  font-weight: 600!important;
}
.cid-tLLIeFxSWa a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLIeFxSWa .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLIeFxSWa .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLIeFxSWa .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLIeFxSWa .navbar {
    height: 77px;
  }
  .cid-tLLIeFxSWa .navbar.opened {
    height: auto;
  }
  .cid-tLLIeFxSWa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLIeJGgcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");
}
.cid-tLLIeJGgcZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLIeJGgcZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLIeJGgcZ .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLLIeMjM0k {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLLIeMjM0k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLIeMjM0k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLIeMjM0k .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tLLIeMjM0k .mbr-section-subtitle {
  text-align: left;
}
.cid-tLLIeMjM0k .mbr-section-title {
  text-align: center;
}
.cid-tLLIeNzuoR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLIeNzuoR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLIeNzuoR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLIeNzuoR .mbr-section-title,
.cid-tLLIeNzuoR .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLIeNzuoR .cost {
  word-break: normal;
}
.cid-tLLIeNzuoR .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLIeNzuoR .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLIeNzuoR .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLIeNzuoR .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB2jyT91Z {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB2jyT91Z .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB2jyT91Z .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB2jyT91Z textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB2jyT91Z .form-row {
    flex-direction: column;
  }
}
.cid-tQB2jyT91Z h4 {
  margin-bottom: 2rem;
}
.cid-tQB2jyT91Z .form-control,
.cid-tQB2jyT91Z .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB2jyT91Z .form-control,
.cid-tQB2jyT91Z .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB2jyT91Z .form-control::-webkit-input-placeholder,
.cid-tQB2jyT91Z .field-input::-webkit-input-placeholder,
.cid-tQB2jyT91Z .form-control::-webkit-input-placeholder,
.cid-tQB2jyT91Z .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB2jyT91Z .form-control:-moz-placeholder,
.cid-tQB2jyT91Z .field-input:-moz-placeholder,
.cid-tQB2jyT91Z .form-control:-moz-placeholder,
.cid-tQB2jyT91Z .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB2jyT91Z .form-control:hover,
.cid-tQB2jyT91Z .field-input:hover,
.cid-tQB2jyT91Z .form-control:focus,
.cid-tQB2jyT91Z .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB2jyT91Z .form-control:hover::-webkit-input-placeholder,
.cid-tQB2jyT91Z .field-input:hover::-webkit-input-placeholder,
.cid-tQB2jyT91Z .form-control:focus::-webkit-input-placeholder,
.cid-tQB2jyT91Z .field-input:focus::-webkit-input-placeholder,
.cid-tQB2jyT91Z .form-control:hover::-webkit-input-placeholder,
.cid-tQB2jyT91Z .field-input:hover::-webkit-input-placeholder,
.cid-tQB2jyT91Z .form-control:focus::-webkit-input-placeholder,
.cid-tQB2jyT91Z .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB2jyT91Z .form-control:hover:-moz-placeholder,
.cid-tQB2jyT91Z .field-input:hover:-moz-placeholder,
.cid-tQB2jyT91Z .form-control:focus:-moz-placeholder,
.cid-tQB2jyT91Z .field-input:focus:-moz-placeholder,
.cid-tQB2jyT91Z .form-control:hover:-moz-placeholder,
.cid-tQB2jyT91Z .field-input:hover:-moz-placeholder,
.cid-tQB2jyT91Z .form-control:focus:-moz-placeholder,
.cid-tQB2jyT91Z .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB2jyT91Z .jq-number__spin:hover,
.cid-tQB2jyT91Z .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB2jyT91Z .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB2jyT91Z .jq-selectbox li,
.cid-tQB2jyT91Z .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB2jyT91Z .jq-selectbox li:hover,
.cid-tQB2jyT91Z .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB2jyT91Z .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB2jyT91Z .jq-number__spin.minus:hover:after,
.cid-tQB2jyT91Z .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB2jyT91Z .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB2jyT91Z .jq-number__spin.minus:after,
.cid-tQB2jyT91Z .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB2jyT91Z input::-webkit-clear-button {
  display: none;
}
.cid-tQB2jyT91Z input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB2jyT91Z input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB2jyT91Z input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB2jyT91Z H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLJ7av3PY .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLJ7av3PY .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLJ7av3PY .nav-item:focus,
.cid-tLLJ7av3PY .nav-link:focus {
  outline: none;
}
.cid-tLLJ7av3PY .text-white:hover,
.cid-tLLJ7av3PY .text-white:active,
.cid-tLLJ7av3PY .text-white:focus {
  color: white!important;
}
.cid-tLLJ7av3PY .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLJ7av3PY .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLJ7av3PY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLJ7av3PY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLJ7av3PY .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLJ7av3PY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLJ7av3PY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLJ7av3PY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLJ7av3PY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLJ7av3PY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLJ7av3PY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLJ7av3PY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLJ7av3PY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLJ7av3PY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLJ7av3PY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLJ7av3PY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLJ7av3PY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLJ7av3PY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLJ7av3PY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLJ7av3PY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLJ7av3PY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLJ7av3PY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLJ7av3PY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLJ7av3PY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLJ7av3PY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLJ7av3PY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLJ7av3PY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLJ7av3PY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLJ7av3PY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLJ7av3PY .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLJ7av3PY .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLJ7av3PY .dropdown-item:hover {
  color: black!important;
}
.cid-tLLJ7av3PY .dropdown-menu {
  background-color: white!important;
}
.cid-tLLJ7av3PY .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLJ7av3PY .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLJ7av3PY .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLJ7av3PY .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLJ7av3PY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLJ7av3PY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLJ7av3PY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLJ7av3PY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLJ7av3PY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLJ7av3PY .collapsed {
  flex-direction: row!important;
}
.cid-tLLJ7av3PY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLJ7av3PY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLJ7av3PY .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLJ7av3PY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLJ7av3PY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLJ7av3PY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLJ7av3PY .dropdown-item.active,
.cid-tLLJ7av3PY .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLJ7av3PY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLJ7av3PY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLJ7av3PY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLJ7av3PY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLJ7av3PY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLJ7av3PY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLJ7av3PY .navbar-buttons {
  text-align: center;
}
.cid-tLLJ7av3PY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLJ7av3PY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLJ7av3PY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLJ7av3PY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLJ7av3PY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLJ7av3PY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLJ7av3PY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLJ7av3PY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLJ7av3PY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLJ7av3PY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLJ7av3PY .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLJ7av3PY .nav-link {
  font-weight: 600!important;
}
.cid-tLLJ7av3PY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLJ7av3PY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLJ7av3PY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLJ7av3PY .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLJ7av3PY .navbar {
    height: 77px;
  }
  .cid-tLLJ7av3PY .navbar.opened {
    height: auto;
  }
  .cid-tLLJ7av3PY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLJ7e3pYV {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-tLLJ7e3pYV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLJ7e3pYV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLJ7e3pYV .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLLJ7gKrij {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLLJ7gKrij .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLJ7gKrij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLJ7gKrij .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tLLJ7gKrij .mbr-section-subtitle {
  text-align: left;
}
.cid-tLLJ7gKrij .mbr-section-title {
  text-align: center;
}
.cid-tLLJ7jQc4S {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLJ7jQc4S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLJ7jQc4S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLJ7jQc4S .mbr-section-title,
.cid-tLLJ7jQc4S .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLJ7jQc4S .cost {
  word-break: normal;
}
.cid-tLLJ7jQc4S .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLJ7jQc4S .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLJ7jQc4S .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLJ7jQc4S .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB2uc10Ei {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB2uc10Ei .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB2uc10Ei .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB2uc10Ei textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB2uc10Ei .form-row {
    flex-direction: column;
  }
}
.cid-tQB2uc10Ei h4 {
  margin-bottom: 2rem;
}
.cid-tQB2uc10Ei .form-control,
.cid-tQB2uc10Ei .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB2uc10Ei .form-control,
.cid-tQB2uc10Ei .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB2uc10Ei .form-control::-webkit-input-placeholder,
.cid-tQB2uc10Ei .field-input::-webkit-input-placeholder,
.cid-tQB2uc10Ei .form-control::-webkit-input-placeholder,
.cid-tQB2uc10Ei .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB2uc10Ei .form-control:-moz-placeholder,
.cid-tQB2uc10Ei .field-input:-moz-placeholder,
.cid-tQB2uc10Ei .form-control:-moz-placeholder,
.cid-tQB2uc10Ei .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB2uc10Ei .form-control:hover,
.cid-tQB2uc10Ei .field-input:hover,
.cid-tQB2uc10Ei .form-control:focus,
.cid-tQB2uc10Ei .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB2uc10Ei .form-control:hover::-webkit-input-placeholder,
.cid-tQB2uc10Ei .field-input:hover::-webkit-input-placeholder,
.cid-tQB2uc10Ei .form-control:focus::-webkit-input-placeholder,
.cid-tQB2uc10Ei .field-input:focus::-webkit-input-placeholder,
.cid-tQB2uc10Ei .form-control:hover::-webkit-input-placeholder,
.cid-tQB2uc10Ei .field-input:hover::-webkit-input-placeholder,
.cid-tQB2uc10Ei .form-control:focus::-webkit-input-placeholder,
.cid-tQB2uc10Ei .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB2uc10Ei .form-control:hover:-moz-placeholder,
.cid-tQB2uc10Ei .field-input:hover:-moz-placeholder,
.cid-tQB2uc10Ei .form-control:focus:-moz-placeholder,
.cid-tQB2uc10Ei .field-input:focus:-moz-placeholder,
.cid-tQB2uc10Ei .form-control:hover:-moz-placeholder,
.cid-tQB2uc10Ei .field-input:hover:-moz-placeholder,
.cid-tQB2uc10Ei .form-control:focus:-moz-placeholder,
.cid-tQB2uc10Ei .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB2uc10Ei .jq-number__spin:hover,
.cid-tQB2uc10Ei .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB2uc10Ei .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB2uc10Ei .jq-selectbox li,
.cid-tQB2uc10Ei .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB2uc10Ei .jq-selectbox li:hover,
.cid-tQB2uc10Ei .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB2uc10Ei .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB2uc10Ei .jq-number__spin.minus:hover:after,
.cid-tQB2uc10Ei .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB2uc10Ei .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB2uc10Ei .jq-number__spin.minus:after,
.cid-tQB2uc10Ei .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB2uc10Ei input::-webkit-clear-button {
  display: none;
}
.cid-tQB2uc10Ei input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB2uc10Ei input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB2uc10Ei input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB2uc10Ei H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLLJEoilPg .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLJEoilPg .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLLJEoilPg .nav-item:focus,
.cid-tLLJEoilPg .nav-link:focus {
  outline: none;
}
.cid-tLLJEoilPg .text-white:hover,
.cid-tLLJEoilPg .text-white:active,
.cid-tLLJEoilPg .text-white:focus {
  color: white!important;
}
.cid-tLLJEoilPg .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLLJEoilPg .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLLJEoilPg .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLLJEoilPg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLLJEoilPg .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLLJEoilPg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLLJEoilPg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLLJEoilPg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLLJEoilPg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLLJEoilPg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLLJEoilPg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLLJEoilPg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLLJEoilPg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLLJEoilPg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLLJEoilPg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLLJEoilPg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLLJEoilPg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLLJEoilPg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLLJEoilPg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLLJEoilPg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLLJEoilPg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLLJEoilPg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLLJEoilPg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLLJEoilPg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLLJEoilPg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLLJEoilPg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLLJEoilPg .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLLJEoilPg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLLJEoilPg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLLJEoilPg .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLLJEoilPg .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLLJEoilPg .dropdown-item:hover {
  color: black!important;
}
.cid-tLLJEoilPg .dropdown-menu {
  background-color: white!important;
}
.cid-tLLJEoilPg .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLLJEoilPg .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLLJEoilPg .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLLJEoilPg .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLLJEoilPg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLJEoilPg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLLJEoilPg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLLJEoilPg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLLJEoilPg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLLJEoilPg .collapsed {
  flex-direction: row!important;
}
.cid-tLLJEoilPg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLLJEoilPg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLLJEoilPg .navbar-caption {
  font-weight: 600!important;
}
.cid-tLLJEoilPg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLLJEoilPg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLLJEoilPg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLLJEoilPg .dropdown-item.active,
.cid-tLLJEoilPg .dropdown-item:active {
  background-color: transparent;
}
.cid-tLLJEoilPg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLLJEoilPg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLLJEoilPg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLLJEoilPg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLLJEoilPg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLLJEoilPg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLLJEoilPg .navbar-buttons {
  text-align: center;
}
.cid-tLLJEoilPg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLLJEoilPg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLLJEoilPg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLLJEoilPg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLJEoilPg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLLJEoilPg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLLJEoilPg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLJEoilPg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLLJEoilPg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLLJEoilPg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLLJEoilPg .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLLJEoilPg .nav-link {
  font-weight: 600!important;
}
.cid-tLLJEoilPg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLLJEoilPg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLLJEoilPg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLLJEoilPg .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLLJEoilPg .navbar {
    height: 77px;
  }
  .cid-tLLJEoilPg .navbar.opened {
    height: auto;
  }
  .cid-tLLJEoilPg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLJEr6Gg8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/materuni-1580x796.jpeg");
}
.cid-tLLJEr6Gg8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLJEr6Gg8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLJEr6Gg8 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLLJEssP5Z {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLLJEssP5Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLJEssP5Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLJEssP5Z .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tLLJEssP5Z .mbr-section-subtitle {
  text-align: left;
}
.cid-tLLJEssP5Z .mbr-section-title {
  text-align: center;
}
.cid-tLLJEtAiFR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLLJEtAiFR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLLJEtAiFR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLLJEtAiFR .mbr-section-title,
.cid-tLLJEtAiFR .mbr-section-subtitle {
  text-align: center;
}
.cid-tLLJEtAiFR .cost {
  word-break: normal;
}
.cid-tLLJEtAiFR .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLLJEtAiFR .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLLJEtAiFR .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLLJEtAiFR .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQB2GnlOpq {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQB2GnlOpq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQB2GnlOpq .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQB2GnlOpq textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQB2GnlOpq .form-row {
    flex-direction: column;
  }
}
.cid-tQB2GnlOpq h4 {
  margin-bottom: 2rem;
}
.cid-tQB2GnlOpq .form-control,
.cid-tQB2GnlOpq .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQB2GnlOpq .form-control,
.cid-tQB2GnlOpq .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB2GnlOpq .form-control::-webkit-input-placeholder,
.cid-tQB2GnlOpq .field-input::-webkit-input-placeholder,
.cid-tQB2GnlOpq .form-control::-webkit-input-placeholder,
.cid-tQB2GnlOpq .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB2GnlOpq .form-control:-moz-placeholder,
.cid-tQB2GnlOpq .field-input:-moz-placeholder,
.cid-tQB2GnlOpq .form-control:-moz-placeholder,
.cid-tQB2GnlOpq .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQB2GnlOpq .form-control:hover,
.cid-tQB2GnlOpq .field-input:hover,
.cid-tQB2GnlOpq .form-control:focus,
.cid-tQB2GnlOpq .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQB2GnlOpq .form-control:hover::-webkit-input-placeholder,
.cid-tQB2GnlOpq .field-input:hover::-webkit-input-placeholder,
.cid-tQB2GnlOpq .form-control:focus::-webkit-input-placeholder,
.cid-tQB2GnlOpq .field-input:focus::-webkit-input-placeholder,
.cid-tQB2GnlOpq .form-control:hover::-webkit-input-placeholder,
.cid-tQB2GnlOpq .field-input:hover::-webkit-input-placeholder,
.cid-tQB2GnlOpq .form-control:focus::-webkit-input-placeholder,
.cid-tQB2GnlOpq .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQB2GnlOpq .form-control:hover:-moz-placeholder,
.cid-tQB2GnlOpq .field-input:hover:-moz-placeholder,
.cid-tQB2GnlOpq .form-control:focus:-moz-placeholder,
.cid-tQB2GnlOpq .field-input:focus:-moz-placeholder,
.cid-tQB2GnlOpq .form-control:hover:-moz-placeholder,
.cid-tQB2GnlOpq .field-input:hover:-moz-placeholder,
.cid-tQB2GnlOpq .form-control:focus:-moz-placeholder,
.cid-tQB2GnlOpq .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQB2GnlOpq .jq-number__spin:hover,
.cid-tQB2GnlOpq .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQB2GnlOpq .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQB2GnlOpq .jq-selectbox li,
.cid-tQB2GnlOpq .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQB2GnlOpq .jq-selectbox li:hover,
.cid-tQB2GnlOpq .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQB2GnlOpq .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQB2GnlOpq .jq-number__spin.minus:hover:after,
.cid-tQB2GnlOpq .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQB2GnlOpq .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQB2GnlOpq .jq-number__spin.minus:after,
.cid-tQB2GnlOpq .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQB2GnlOpq input::-webkit-clear-button {
  display: none;
}
.cid-tQB2GnlOpq input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQB2GnlOpq input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQB2GnlOpq input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQB2GnlOpq H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLMbiyAW4X .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLMbiyAW4X .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLMbiyAW4X .nav-item:focus,
.cid-tLMbiyAW4X .nav-link:focus {
  outline: none;
}
.cid-tLMbiyAW4X .text-white:hover,
.cid-tLMbiyAW4X .text-white:active,
.cid-tLMbiyAW4X .text-white:focus {
  color: white!important;
}
.cid-tLMbiyAW4X .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLMbiyAW4X .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLMbiyAW4X .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLMbiyAW4X .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLMbiyAW4X .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLMbiyAW4X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLMbiyAW4X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLMbiyAW4X .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLMbiyAW4X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLMbiyAW4X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLMbiyAW4X .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLMbiyAW4X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLMbiyAW4X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLMbiyAW4X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLMbiyAW4X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLMbiyAW4X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLMbiyAW4X .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLMbiyAW4X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLMbiyAW4X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLMbiyAW4X .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLMbiyAW4X .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLMbiyAW4X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLMbiyAW4X .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLMbiyAW4X .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLMbiyAW4X .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLMbiyAW4X .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLMbiyAW4X .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLMbiyAW4X .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLMbiyAW4X .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLMbiyAW4X .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLMbiyAW4X .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLMbiyAW4X .dropdown-item:hover {
  color: black!important;
}
.cid-tLMbiyAW4X .dropdown-menu {
  background-color: white!important;
}
.cid-tLMbiyAW4X .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLMbiyAW4X .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLMbiyAW4X .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLMbiyAW4X .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLMbiyAW4X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLMbiyAW4X .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLMbiyAW4X .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLMbiyAW4X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLMbiyAW4X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLMbiyAW4X .collapsed {
  flex-direction: row!important;
}
.cid-tLMbiyAW4X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLMbiyAW4X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLMbiyAW4X .navbar-caption {
  font-weight: 600!important;
}
.cid-tLMbiyAW4X .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLMbiyAW4X .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLMbiyAW4X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLMbiyAW4X .dropdown-item.active,
.cid-tLMbiyAW4X .dropdown-item:active {
  background-color: transparent;
}
.cid-tLMbiyAW4X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLMbiyAW4X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLMbiyAW4X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLMbiyAW4X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLMbiyAW4X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLMbiyAW4X ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLMbiyAW4X .navbar-buttons {
  text-align: center;
}
.cid-tLMbiyAW4X button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLMbiyAW4X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLMbiyAW4X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLMbiyAW4X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLMbiyAW4X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLMbiyAW4X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLMbiyAW4X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLMbiyAW4X nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLMbiyAW4X nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLMbiyAW4X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLMbiyAW4X .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLMbiyAW4X .nav-link {
  font-weight: 600!important;
}
.cid-tLMbiyAW4X a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLMbiyAW4X .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLMbiyAW4X .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLMbiyAW4X .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLMbiyAW4X .navbar {
    height: 77px;
  }
  .cid-tLMbiyAW4X .navbar.opened {
    height: auto;
  }
  .cid-tLMbiyAW4X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLMbiCmikz {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-tLMbiCmikz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLMbiCmikz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLMbiCmikz .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLMbiCmikz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tLMbiCmikz .mbr-section-title,
.cid-tLMbiCmikz .mbr-section-btn {
  color: #000000;
}
.cid-tLMd4iKRGp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1470x980.jpg");
}
.cid-tLMd4iKRGp .mbr-overlay {
  background: #fafafa;
  opacity: 0.9;
}
.cid-tLMd4iKRGp .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tLMd4iKRGp .item-content {
  background: #442916;
  transition: all 0.3s;
  border: 2px solid #442916;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tLMd4iKRGp .item-content:hover {
  background: #000000;
  border-color: #000000;
}
@media (max-width: 767px) {
  .cid-tLMd4iKRGp .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tLMd4iKRGp .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #000000;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tLMd4iKRGp .img-text {
    left: 1rem;
  }
}
.cid-tLMd4iKRGp img,
.cid-tLMd4iKRGp .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-tLMd4iKRGp .item:focus,
.cid-tLMd4iKRGp span:focus {
  outline: none;
}
.cid-tLMd4iKRGp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLMd4iKRGp .mbr-section-title {
  color: #232323;
}
.cid-tLMd4iKRGp .mbr-text,
.cid-tLMd4iKRGp .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-tLMd4iKRGp .item-title {
  text-align: left;
  color: #fafafa;
}
.cid-tLMd4iKRGp .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tLMd4iKRGp .mbr-section-subtitle {
  color: #633615;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLMi1ys17h .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLMi1ys17h .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLMi1ys17h .nav-item:focus,
.cid-tLMi1ys17h .nav-link:focus {
  outline: none;
}
.cid-tLMi1ys17h .text-white:hover,
.cid-tLMi1ys17h .text-white:active,
.cid-tLMi1ys17h .text-white:focus {
  color: white!important;
}
.cid-tLMi1ys17h .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLMi1ys17h .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLMi1ys17h .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLMi1ys17h .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLMi1ys17h .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLMi1ys17h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLMi1ys17h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLMi1ys17h .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLMi1ys17h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLMi1ys17h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLMi1ys17h .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLMi1ys17h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLMi1ys17h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLMi1ys17h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLMi1ys17h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLMi1ys17h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLMi1ys17h .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLMi1ys17h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLMi1ys17h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLMi1ys17h .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLMi1ys17h .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLMi1ys17h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLMi1ys17h .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLMi1ys17h .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLMi1ys17h .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLMi1ys17h .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLMi1ys17h .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLMi1ys17h .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLMi1ys17h .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLMi1ys17h .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLMi1ys17h .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLMi1ys17h .dropdown-item:hover {
  color: black!important;
}
.cid-tLMi1ys17h .dropdown-menu {
  background-color: white!important;
}
.cid-tLMi1ys17h .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLMi1ys17h .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLMi1ys17h .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLMi1ys17h .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLMi1ys17h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLMi1ys17h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLMi1ys17h .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLMi1ys17h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLMi1ys17h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLMi1ys17h .collapsed {
  flex-direction: row!important;
}
.cid-tLMi1ys17h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLMi1ys17h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLMi1ys17h .navbar-caption {
  font-weight: 600!important;
}
.cid-tLMi1ys17h .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLMi1ys17h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLMi1ys17h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLMi1ys17h .dropdown-item.active,
.cid-tLMi1ys17h .dropdown-item:active {
  background-color: transparent;
}
.cid-tLMi1ys17h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLMi1ys17h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLMi1ys17h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLMi1ys17h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLMi1ys17h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLMi1ys17h ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLMi1ys17h .navbar-buttons {
  text-align: center;
}
.cid-tLMi1ys17h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLMi1ys17h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLMi1ys17h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLMi1ys17h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLMi1ys17h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLMi1ys17h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLMi1ys17h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLMi1ys17h nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLMi1ys17h nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLMi1ys17h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLMi1ys17h .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLMi1ys17h .nav-link {
  font-weight: 600!important;
}
.cid-tLMi1ys17h a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLMi1ys17h .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLMi1ys17h .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLMi1ys17h .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLMi1ys17h .navbar {
    height: 77px;
  }
  .cid-tLMi1ys17h .navbar.opened {
    height: auto;
  }
  .cid-tLMi1ys17h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLMi1CkYud {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/r-1536x803.jpg");
}
.cid-tLMi1CkYud .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLMi1CkYud .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLMi1CkYud .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLMi1E7s1j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1470x980.jpg");
}
.cid-tLMi1E7s1j .mbr-overlay {
  background: #fafafa;
  opacity: 0.9;
}
.cid-tLMi1E7s1j .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tLMi1E7s1j .item-content {
  background: #442916;
  transition: all 0.3s;
  border: 2px solid #442916;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tLMi1E7s1j .item-content:hover {
  background: #000000;
  border-color: #000000;
}
@media (max-width: 767px) {
  .cid-tLMi1E7s1j .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tLMi1E7s1j .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #000000;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tLMi1E7s1j .img-text {
    left: 1rem;
  }
}
.cid-tLMi1E7s1j img,
.cid-tLMi1E7s1j .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-tLMi1E7s1j .item:focus,
.cid-tLMi1E7s1j span:focus {
  outline: none;
}
.cid-tLMi1E7s1j .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLMi1E7s1j .mbr-section-title {
  color: #232323;
}
.cid-tLMi1E7s1j .mbr-text,
.cid-tLMi1E7s1j .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-tLMi1E7s1j .item-title {
  text-align: left;
  color: #1b2026;
}
.cid-tLMi1E7s1j .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tLMi1E7s1j .mbr-section-subtitle {
  color: #633615;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLMjN4sga4 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLMjN4sga4 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLMjN4sga4 .nav-item:focus,
.cid-tLMjN4sga4 .nav-link:focus {
  outline: none;
}
.cid-tLMjN4sga4 .text-white:hover,
.cid-tLMjN4sga4 .text-white:active,
.cid-tLMjN4sga4 .text-white:focus {
  color: white!important;
}
.cid-tLMjN4sga4 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLMjN4sga4 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLMjN4sga4 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLMjN4sga4 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLMjN4sga4 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLMjN4sga4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLMjN4sga4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLMjN4sga4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLMjN4sga4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLMjN4sga4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLMjN4sga4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLMjN4sga4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLMjN4sga4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLMjN4sga4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLMjN4sga4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLMjN4sga4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLMjN4sga4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLMjN4sga4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLMjN4sga4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLMjN4sga4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLMjN4sga4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLMjN4sga4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLMjN4sga4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLMjN4sga4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLMjN4sga4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLMjN4sga4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLMjN4sga4 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLMjN4sga4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLMjN4sga4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLMjN4sga4 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLMjN4sga4 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLMjN4sga4 .dropdown-item:hover {
  color: black!important;
}
.cid-tLMjN4sga4 .dropdown-menu {
  background-color: white!important;
}
.cid-tLMjN4sga4 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLMjN4sga4 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLMjN4sga4 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLMjN4sga4 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLMjN4sga4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLMjN4sga4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLMjN4sga4 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLMjN4sga4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLMjN4sga4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLMjN4sga4 .collapsed {
  flex-direction: row!important;
}
.cid-tLMjN4sga4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLMjN4sga4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLMjN4sga4 .navbar-caption {
  font-weight: 600!important;
}
.cid-tLMjN4sga4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLMjN4sga4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLMjN4sga4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLMjN4sga4 .dropdown-item.active,
.cid-tLMjN4sga4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tLMjN4sga4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLMjN4sga4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLMjN4sga4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLMjN4sga4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLMjN4sga4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLMjN4sga4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLMjN4sga4 .navbar-buttons {
  text-align: center;
}
.cid-tLMjN4sga4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLMjN4sga4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLMjN4sga4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLMjN4sga4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLMjN4sga4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLMjN4sga4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLMjN4sga4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLMjN4sga4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLMjN4sga4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLMjN4sga4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLMjN4sga4 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLMjN4sga4 .nav-link {
  font-weight: 600!important;
}
.cid-tLMjN4sga4 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLMjN4sga4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLMjN4sga4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLMjN4sga4 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLMjN4sga4 .navbar {
    height: 77px;
  }
  .cid-tLMjN4sga4 .navbar.opened {
    height: auto;
  }
  .cid-tLMjN4sga4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLMjN6lxLp {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1-1920x1285.jpg");
}
.cid-tLMjN6lxLp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLMjN6lxLp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLMjN6lxLp .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLMjN7RHTT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1470x980.jpg");
}
.cid-tLMjN7RHTT .mbr-overlay {
  background: #fafafa;
  opacity: 0.9;
}
.cid-tLMjN7RHTT .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tLMjN7RHTT .item-content {
  background: #633615;
  transition: all 0.3s;
  border: 2px solid #442916;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tLMjN7RHTT .item-content:hover {
  background: #000000;
  border-color: #000000;
}
@media (max-width: 767px) {
  .cid-tLMjN7RHTT .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tLMjN7RHTT .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #000000;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #fafafa;
}
@media (max-width: 767px) {
  .cid-tLMjN7RHTT .img-text {
    left: 1rem;
  }
}
.cid-tLMjN7RHTT img,
.cid-tLMjN7RHTT .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-tLMjN7RHTT .item:focus,
.cid-tLMjN7RHTT span:focus {
  outline: none;
}
.cid-tLMjN7RHTT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLMjN7RHTT .mbr-section-title {
  color: #232323;
}
.cid-tLMjN7RHTT .mbr-text,
.cid-tLMjN7RHTT .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-tLMjN7RHTT .item-title {
  text-align: center;
  color: #1b2026;
}
.cid-tLMjN7RHTT .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tLMjN7RHTT .mbr-section-subtitle {
  color: #633615;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLRI1lzpwd .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLRI1lzpwd .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLRI1lzpwd .nav-item:focus,
.cid-tLRI1lzpwd .nav-link:focus {
  outline: none;
}
.cid-tLRI1lzpwd .text-white:hover,
.cid-tLRI1lzpwd .text-white:active,
.cid-tLRI1lzpwd .text-white:focus {
  color: white!important;
}
.cid-tLRI1lzpwd .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLRI1lzpwd .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLRI1lzpwd .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLRI1lzpwd .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLRI1lzpwd .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLRI1lzpwd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLRI1lzpwd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLRI1lzpwd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLRI1lzpwd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLRI1lzpwd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLRI1lzpwd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLRI1lzpwd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLRI1lzpwd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLRI1lzpwd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLRI1lzpwd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLRI1lzpwd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLRI1lzpwd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLRI1lzpwd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLRI1lzpwd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLRI1lzpwd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLRI1lzpwd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLRI1lzpwd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLRI1lzpwd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLRI1lzpwd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLRI1lzpwd .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLRI1lzpwd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLRI1lzpwd .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLRI1lzpwd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLRI1lzpwd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLRI1lzpwd .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLRI1lzpwd .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLRI1lzpwd .dropdown-item:hover {
  color: black!important;
}
.cid-tLRI1lzpwd .dropdown-menu {
  background-color: white!important;
}
.cid-tLRI1lzpwd .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLRI1lzpwd .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLRI1lzpwd .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLRI1lzpwd .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLRI1lzpwd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLRI1lzpwd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLRI1lzpwd .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLRI1lzpwd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLRI1lzpwd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLRI1lzpwd .collapsed {
  flex-direction: row!important;
}
.cid-tLRI1lzpwd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLRI1lzpwd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLRI1lzpwd .navbar-caption {
  font-weight: 600!important;
}
.cid-tLRI1lzpwd .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLRI1lzpwd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLRI1lzpwd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLRI1lzpwd .dropdown-item.active,
.cid-tLRI1lzpwd .dropdown-item:active {
  background-color: transparent;
}
.cid-tLRI1lzpwd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLRI1lzpwd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLRI1lzpwd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLRI1lzpwd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLRI1lzpwd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLRI1lzpwd ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLRI1lzpwd .navbar-buttons {
  text-align: center;
}
.cid-tLRI1lzpwd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLRI1lzpwd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLRI1lzpwd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLRI1lzpwd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLRI1lzpwd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLRI1lzpwd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLRI1lzpwd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLRI1lzpwd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLRI1lzpwd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLRI1lzpwd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLRI1lzpwd .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLRI1lzpwd .nav-link {
  font-weight: 600!important;
}
.cid-tLRI1lzpwd a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLRI1lzpwd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLRI1lzpwd .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLRI1lzpwd .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLRI1lzpwd .navbar {
    height: 77px;
  }
  .cid-tLRI1lzpwd .navbar.opened {
    height: auto;
  }
  .cid-tLRI1lzpwd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLRI1okcjU {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231024-92458-2000x900.jpg");
}
.cid-tLRI1okcjU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLRI1okcjU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLRI1okcjU .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLRICL1o9v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLRICL1o9v img,
.cid-tLRICL1o9v .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLRICL1o9v .item:focus,
.cid-tLRICL1o9v span:focus {
  outline: none;
}
.cid-tLRICL1o9v .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLRICL1o9v .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLRICL1o9v .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLRICL1o9v .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLRICL1o9v .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLRICL1o9v .mbr-section-title {
  color: #232323;
}
.cid-tLRICL1o9v .mbr-text,
.cid-tLRICL1o9v .mbr-section-btn {
  text-align: left;
}
.cid-tLRICL1o9v .item-title {
  text-align: center;
}
.cid-tLRICL1o9v .item-subtitle {
  text-align: center;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLX5FG7Rho .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLX5FG7Rho .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLX5FG7Rho .nav-item:focus,
.cid-tLX5FG7Rho .nav-link:focus {
  outline: none;
}
.cid-tLX5FG7Rho .text-white:hover,
.cid-tLX5FG7Rho .text-white:active,
.cid-tLX5FG7Rho .text-white:focus {
  color: white!important;
}
.cid-tLX5FG7Rho .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLX5FG7Rho .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLX5FG7Rho .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLX5FG7Rho .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLX5FG7Rho .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLX5FG7Rho .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLX5FG7Rho .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLX5FG7Rho .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLX5FG7Rho .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLX5FG7Rho .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLX5FG7Rho .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLX5FG7Rho .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLX5FG7Rho .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLX5FG7Rho .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLX5FG7Rho .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLX5FG7Rho .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLX5FG7Rho .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLX5FG7Rho .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLX5FG7Rho .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLX5FG7Rho .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLX5FG7Rho .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLX5FG7Rho .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLX5FG7Rho .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLX5FG7Rho .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLX5FG7Rho .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLX5FG7Rho .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLX5FG7Rho .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLX5FG7Rho .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLX5FG7Rho .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLX5FG7Rho .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLX5FG7Rho .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLX5FG7Rho .dropdown-item:hover {
  color: black!important;
}
.cid-tLX5FG7Rho .dropdown-menu {
  background-color: white!important;
}
.cid-tLX5FG7Rho .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLX5FG7Rho .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLX5FG7Rho .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLX5FG7Rho .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLX5FG7Rho .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLX5FG7Rho .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLX5FG7Rho .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLX5FG7Rho .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLX5FG7Rho .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLX5FG7Rho .collapsed {
  flex-direction: row!important;
}
.cid-tLX5FG7Rho .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLX5FG7Rho .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLX5FG7Rho .navbar-caption {
  font-weight: 600!important;
}
.cid-tLX5FG7Rho .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLX5FG7Rho .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLX5FG7Rho .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLX5FG7Rho .dropdown-item.active,
.cid-tLX5FG7Rho .dropdown-item:active {
  background-color: transparent;
}
.cid-tLX5FG7Rho .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLX5FG7Rho .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLX5FG7Rho .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLX5FG7Rho .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLX5FG7Rho .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLX5FG7Rho ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLX5FG7Rho .navbar-buttons {
  text-align: center;
}
.cid-tLX5FG7Rho button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLX5FG7Rho button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLX5FG7Rho button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLX5FG7Rho button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLX5FG7Rho button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLX5FG7Rho button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLX5FG7Rho nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLX5FG7Rho nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLX5FG7Rho nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLX5FG7Rho nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLX5FG7Rho .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLX5FG7Rho .nav-link {
  font-weight: 600!important;
}
.cid-tLX5FG7Rho a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLX5FG7Rho .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLX5FG7Rho .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLX5FG7Rho .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLX5FG7Rho .navbar {
    height: 77px;
  }
  .cid-tLX5FG7Rho .navbar.opened {
    height: auto;
  }
  .cid-tLX5FG7Rho .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLX5FHpJ3l {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231023-95323-2000x1125.jpg");
}
.cid-tLX5FHpJ3l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLX5FHpJ3l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLX5FHpJ3l .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLXaCyUy5D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefec;
}
.cid-tLXaCyUy5D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLXaCyUy5D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLXaCyUy5D .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-tLXaCyUy5D .col-title {
    margin-bottom: 30px;
  }
}
.cid-tLXaCyUy5D .mbr-section-title {
  color: #2B2B2B;
}
@media (max-width: 991px) {
  .cid-tLXaCyUy5D .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tLXaCyUy5D .mbr-section-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-tLXaCyUy5D .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
.cid-tLXaCyUy5D .panel-group {
  border: none;
  padding: 0 !important;
}
.cid-tLXaCyUy5D .card {
  padding: 0 20px !important;
}
.cid-tLXaCyUy5D .card-border {
  height: 2px;
  width: 100%;
  background-color: #dfdfd8;
  margin-top: auto;
}
.cid-tLXaCyUy5D .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tLXaCyUy5D .card-border-top2 {
    display: none;
  }
}
.cid-tLXaCyUy5D .mbr-iconfont {
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
  padding: 8px;
  background-color: #633615;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-tLXaCyUy5D .card-header {
  border-bottom: none !important;
  padding: 15px 0 !important;
}
.cid-tLXaCyUy5D .card-header:hover .mbr-iconfont {
  background-color: #cecec1 !important;
}
.cid-tLXaCyUy5D .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-tLXaCyUy5D .panel-body {
  padding-bottom: 20px;
}
.cid-tLXaCyUy5D .panel-text {
  margin-bottom: 20px !important;
  color: #101511;
}
.cid-tLXaCyUy5D .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tLXaCyUy5D .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tLXaCyUy5D .panel-title-edit {
  color: #633615;
}
.cid-tLXjrYgfZY {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #efefec;
}
.cid-tLXjrYgfZY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLXjrYgfZY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLXjrYgfZY .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-tLXjrYgfZY .col-title {
    margin-bottom: 30px;
  }
}
.cid-tLXjrYgfZY .mbr-section-title {
  color: #2B2B2B;
}
@media (max-width: 991px) {
  .cid-tLXjrYgfZY .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tLXjrYgfZY .mbr-section-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-tLXjrYgfZY .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
.cid-tLXjrYgfZY .panel-group {
  border: none;
  padding: 0 !important;
}
.cid-tLXjrYgfZY .card {
  padding: 0 20px !important;
}
.cid-tLXjrYgfZY .card-border {
  height: 2px;
  width: 100%;
  background-color: #dfdfd8;
  margin-top: auto;
}
.cid-tLXjrYgfZY .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tLXjrYgfZY .card-border-top2 {
    display: none;
  }
}
.cid-tLXjrYgfZY .mbr-iconfont {
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
  padding: 8px;
  background-color: #633615;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-tLXjrYgfZY .card-header {
  border-bottom: none !important;
  padding: 15px 0 !important;
}
.cid-tLXjrYgfZY .card-header:hover .mbr-iconfont {
  background-color: #cecec1 !important;
}
.cid-tLXjrYgfZY .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-tLXjrYgfZY .panel-body {
  padding-bottom: 20px;
}
.cid-tLXjrYgfZY .panel-text {
  margin-bottom: 20px !important;
  color: #000000;
}
.cid-tLXjrYgfZY .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tLXjrYgfZY .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tLXjrYgfZY .panel-title-edit {
  color: #2B2B2B;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLXp0oLuAB .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLXp0oLuAB .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLXp0oLuAB .nav-item:focus,
.cid-tLXp0oLuAB .nav-link:focus {
  outline: none;
}
.cid-tLXp0oLuAB .text-white:hover,
.cid-tLXp0oLuAB .text-white:active,
.cid-tLXp0oLuAB .text-white:focus {
  color: white!important;
}
.cid-tLXp0oLuAB .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLXp0oLuAB .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLXp0oLuAB .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLXp0oLuAB .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLXp0oLuAB .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLXp0oLuAB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLXp0oLuAB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLXp0oLuAB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLXp0oLuAB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLXp0oLuAB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLXp0oLuAB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLXp0oLuAB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLXp0oLuAB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLXp0oLuAB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLXp0oLuAB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLXp0oLuAB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLXp0oLuAB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLXp0oLuAB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLXp0oLuAB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLXp0oLuAB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLXp0oLuAB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLXp0oLuAB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLXp0oLuAB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLXp0oLuAB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLXp0oLuAB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLXp0oLuAB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLXp0oLuAB .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLXp0oLuAB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLXp0oLuAB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLXp0oLuAB .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLXp0oLuAB .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLXp0oLuAB .dropdown-item:hover {
  color: black!important;
}
.cid-tLXp0oLuAB .dropdown-menu {
  background-color: white!important;
}
.cid-tLXp0oLuAB .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLXp0oLuAB .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLXp0oLuAB .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLXp0oLuAB .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLXp0oLuAB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLXp0oLuAB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLXp0oLuAB .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLXp0oLuAB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLXp0oLuAB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLXp0oLuAB .collapsed {
  flex-direction: row!important;
}
.cid-tLXp0oLuAB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLXp0oLuAB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLXp0oLuAB .navbar-caption {
  font-weight: 600!important;
}
.cid-tLXp0oLuAB .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLXp0oLuAB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLXp0oLuAB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLXp0oLuAB .dropdown-item.active,
.cid-tLXp0oLuAB .dropdown-item:active {
  background-color: transparent;
}
.cid-tLXp0oLuAB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLXp0oLuAB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLXp0oLuAB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLXp0oLuAB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLXp0oLuAB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLXp0oLuAB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLXp0oLuAB .navbar-buttons {
  text-align: center;
}
.cid-tLXp0oLuAB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLXp0oLuAB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLXp0oLuAB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLXp0oLuAB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLXp0oLuAB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLXp0oLuAB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLXp0oLuAB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLXp0oLuAB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLXp0oLuAB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLXp0oLuAB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLXp0oLuAB .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLXp0oLuAB .nav-link {
  font-weight: 600!important;
}
.cid-tLXp0oLuAB a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLXp0oLuAB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLXp0oLuAB .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLXp0oLuAB .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLXp0oLuAB .navbar {
    height: 77px;
  }
  .cid-tLXp0oLuAB .navbar.opened {
    height: auto;
  }
  .cid-tLXp0oLuAB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLXp0q4jXw {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/img-20230902-021722-937-720x720.jpeg");
}
.cid-tLXp0q4jXw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLXp0q4jXw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLXp0q4jXw .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLXp0qURAs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLXp0qURAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLXp0qURAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLXp0qURAs .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLXUYKKC7J .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLXUYKKC7J .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLXUYKKC7J .nav-item:focus,
.cid-tLXUYKKC7J .nav-link:focus {
  outline: none;
}
.cid-tLXUYKKC7J .text-white:hover,
.cid-tLXUYKKC7J .text-white:active,
.cid-tLXUYKKC7J .text-white:focus {
  color: white!important;
}
.cid-tLXUYKKC7J .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLXUYKKC7J .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLXUYKKC7J .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLXUYKKC7J .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLXUYKKC7J .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLXUYKKC7J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLXUYKKC7J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLXUYKKC7J .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLXUYKKC7J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLXUYKKC7J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLXUYKKC7J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLXUYKKC7J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLXUYKKC7J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLXUYKKC7J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLXUYKKC7J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLXUYKKC7J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLXUYKKC7J .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLXUYKKC7J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLXUYKKC7J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLXUYKKC7J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLXUYKKC7J .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLXUYKKC7J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLXUYKKC7J .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLXUYKKC7J .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLXUYKKC7J .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLXUYKKC7J .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLXUYKKC7J .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLXUYKKC7J .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLXUYKKC7J .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLXUYKKC7J .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLXUYKKC7J .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLXUYKKC7J .dropdown-item:hover {
  color: black!important;
}
.cid-tLXUYKKC7J .dropdown-menu {
  background-color: white!important;
}
.cid-tLXUYKKC7J .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLXUYKKC7J .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLXUYKKC7J .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLXUYKKC7J .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLXUYKKC7J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLXUYKKC7J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLXUYKKC7J .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLXUYKKC7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLXUYKKC7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLXUYKKC7J .collapsed {
  flex-direction: row!important;
}
.cid-tLXUYKKC7J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLXUYKKC7J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLXUYKKC7J .navbar-caption {
  font-weight: 600!important;
}
.cid-tLXUYKKC7J .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLXUYKKC7J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLXUYKKC7J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLXUYKKC7J .dropdown-item.active,
.cid-tLXUYKKC7J .dropdown-item:active {
  background-color: transparent;
}
.cid-tLXUYKKC7J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLXUYKKC7J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLXUYKKC7J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLXUYKKC7J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLXUYKKC7J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLXUYKKC7J ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLXUYKKC7J .navbar-buttons {
  text-align: center;
}
.cid-tLXUYKKC7J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLXUYKKC7J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLXUYKKC7J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLXUYKKC7J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLXUYKKC7J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLXUYKKC7J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLXUYKKC7J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLXUYKKC7J nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLXUYKKC7J nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLXUYKKC7J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLXUYKKC7J .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLXUYKKC7J .nav-link {
  font-weight: 600!important;
}
.cid-tLXUYKKC7J a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLXUYKKC7J .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLXUYKKC7J .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLXUYKKC7J .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLXUYKKC7J .navbar {
    height: 77px;
  }
  .cid-tLXUYKKC7J .navbar.opened {
    height: auto;
  }
  .cid-tLXUYKKC7J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLXUYM6Dt2 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-tLXUYM6Dt2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLXUYM6Dt2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLXUYM6Dt2 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLXUYMHLqz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefec;
}
.cid-tLXUYMHLqz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLXUYMHLqz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLXUYMHLqz .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-tLXUYMHLqz .col-title {
    margin-bottom: 30px;
  }
}
.cid-tLXUYMHLqz .mbr-section-title {
  color: #2B2B2B;
}
@media (max-width: 991px) {
  .cid-tLXUYMHLqz .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tLXUYMHLqz .mbr-section-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-tLXUYMHLqz .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
.cid-tLXUYMHLqz .panel-group {
  border: none;
  padding: 0 !important;
}
.cid-tLXUYMHLqz .card {
  padding: 0 20px !important;
}
.cid-tLXUYMHLqz .card-border {
  height: 2px;
  width: 100%;
  background-color: #dfdfd8;
  margin-top: auto;
}
.cid-tLXUYMHLqz .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tLXUYMHLqz .card-border-top2 {
    display: none;
  }
}
.cid-tLXUYMHLqz .mbr-iconfont {
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
  padding: 8px;
  background-color: #633615;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-tLXUYMHLqz .card-header {
  border-bottom: none !important;
  padding: 15px 0 !important;
}
.cid-tLXUYMHLqz .card-header:hover .mbr-iconfont {
  background-color: #cecec1 !important;
}
.cid-tLXUYMHLqz .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-tLXUYMHLqz .panel-body {
  padding-bottom: 20px;
}
.cid-tLXUYMHLqz .panel-text {
  margin-bottom: 20px !important;
  color: #101511;
}
.cid-tLXUYMHLqz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tLXUYMHLqz .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tLXUYMHLqz .panel-title-edit {
  color: #633615;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tOSBGuPIQu .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tOSBGuPIQu .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tOSBGuPIQu .nav-item:focus,
.cid-tOSBGuPIQu .nav-link:focus {
  outline: none;
}
.cid-tOSBGuPIQu .text-white:hover,
.cid-tOSBGuPIQu .text-white:active,
.cid-tOSBGuPIQu .text-white:focus {
  color: white!important;
}
.cid-tOSBGuPIQu .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tOSBGuPIQu .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tOSBGuPIQu .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tOSBGuPIQu .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tOSBGuPIQu .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tOSBGuPIQu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOSBGuPIQu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tOSBGuPIQu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOSBGuPIQu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOSBGuPIQu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOSBGuPIQu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tOSBGuPIQu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOSBGuPIQu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tOSBGuPIQu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOSBGuPIQu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOSBGuPIQu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOSBGuPIQu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOSBGuPIQu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOSBGuPIQu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOSBGuPIQu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tOSBGuPIQu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOSBGuPIQu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOSBGuPIQu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOSBGuPIQu .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOSBGuPIQu .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOSBGuPIQu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOSBGuPIQu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tOSBGuPIQu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOSBGuPIQu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOSBGuPIQu .section {
  position: relative;
  overflow: visible!important;
}
.cid-tOSBGuPIQu .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tOSBGuPIQu .dropdown-item:hover {
  color: black!important;
}
.cid-tOSBGuPIQu .dropdown-menu {
  background-color: white!important;
}
.cid-tOSBGuPIQu .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tOSBGuPIQu .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tOSBGuPIQu .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tOSBGuPIQu .nav-item .nav-link {
    position: relative;
  }
}
.cid-tOSBGuPIQu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOSBGuPIQu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOSBGuPIQu .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tOSBGuPIQu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOSBGuPIQu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOSBGuPIQu .collapsed {
  flex-direction: row!important;
}
.cid-tOSBGuPIQu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOSBGuPIQu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOSBGuPIQu .navbar-caption {
  font-weight: 600!important;
}
.cid-tOSBGuPIQu .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOSBGuPIQu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOSBGuPIQu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOSBGuPIQu .dropdown-item.active,
.cid-tOSBGuPIQu .dropdown-item:active {
  background-color: transparent;
}
.cid-tOSBGuPIQu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOSBGuPIQu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOSBGuPIQu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOSBGuPIQu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOSBGuPIQu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOSBGuPIQu ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOSBGuPIQu .navbar-buttons {
  text-align: center;
}
.cid-tOSBGuPIQu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOSBGuPIQu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tOSBGuPIQu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOSBGuPIQu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOSBGuPIQu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOSBGuPIQu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOSBGuPIQu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOSBGuPIQu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOSBGuPIQu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOSBGuPIQu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOSBGuPIQu .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOSBGuPIQu .nav-link {
  font-weight: 600!important;
}
.cid-tOSBGuPIQu a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOSBGuPIQu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tOSBGuPIQu .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tOSBGuPIQu .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOSBGuPIQu .navbar {
    height: 77px;
  }
  .cid-tOSBGuPIQu .navbar.opened {
    height: auto;
  }
  .cid-tOSBGuPIQu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOSBGx6nzZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/humphrey-muleba-e6drlbx6kg8-unsplash-2000x1499.jpg");
}
.cid-tOSBGx6nzZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOSBGx6nzZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOSBGx6nzZ .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tOSBGx6nzZ .mbr-text {
  color: #633615;
}
.cid-tOSBGx6nzZ .mbr-section-title,
.cid-tOSBGx6nzZ .mbr-section-btn {
  color: #000000;
}
.cid-tOSBGyfU5U {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1470x980.jpg");
}
.cid-tOSBGyfU5U .mbr-overlay {
  background: #fafafa;
  opacity: 0.9;
}
.cid-tOSBGyfU5U .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tOSBGyfU5U .item-content {
  background: #442916;
  transition: all 0.3s;
  border: 2px solid #442916;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tOSBGyfU5U .item-content:hover {
  background: #000000;
  border-color: #000000;
}
@media (max-width: 767px) {
  .cid-tOSBGyfU5U .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tOSBGyfU5U .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #000000;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tOSBGyfU5U .img-text {
    left: 1rem;
  }
}
.cid-tOSBGyfU5U img,
.cid-tOSBGyfU5U .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-tOSBGyfU5U .item:focus,
.cid-tOSBGyfU5U span:focus {
  outline: none;
}
.cid-tOSBGyfU5U .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tOSBGyfU5U .mbr-section-title {
  color: #232323;
}
.cid-tOSBGyfU5U .mbr-text,
.cid-tOSBGyfU5U .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-tOSBGyfU5U .item-title {
  text-align: center;
  color: #1b2026;
}
.cid-tOSBGyfU5U .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tOSBGyfU5U .mbr-section-subtitle {
  color: #633615;
}
.cid-tOSBGAMUQ1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOSBGAMUQ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOSBGAMUQ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOSBGAMUQ1 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOSBGAMUQ1 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOSBGAMUQ1 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOSBGAMUQ1 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOSBGAMUQ1 .container {
    max-width: 100%;
  }
  .cid-tOSBGAMUQ1 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOSBGAMUQ1 .item-wrap {
  width: 100%;
}
.cid-tOSBGAMUQ1 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOSBGAMUQ1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOSBGAMUQ1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOSBGAMUQ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOSBGAMUQ1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOSBGAMUQ1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOSBGAMUQ1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOSBGAMUQ1 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOSBGAMUQ1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOSBGAMUQ1 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOSBGAMUQ1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOSBGAMUQ1 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOSBGAMUQ1 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOSBGAMUQ1 .col-links {
    padding-top: 20px;
  }
}
.cid-tOSBGAMUQ1 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOSBGAMUQ1 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOSBGAMUQ1 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOSBGAMUQ1 .list {
    text-align: center !important;
  }
}
.cid-tOSBGAMUQ1 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOSBGAMUQ1 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOSBGAMUQ1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOSBGAMUQ1 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOSBGAMUQ1 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOSBGAMUQ1 .list a:hover:before {
  width: 100%;
}
.cid-tOSBGAMUQ1 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOSBGAMUQ1 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOSBGAMUQ1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOSBGAMUQ1 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tP6EnjpecY .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tP6EnjpecY .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tP6EnjpecY .nav-item:focus,
.cid-tP6EnjpecY .nav-link:focus {
  outline: none;
}
.cid-tP6EnjpecY .text-white:hover,
.cid-tP6EnjpecY .text-white:active,
.cid-tP6EnjpecY .text-white:focus {
  color: white!important;
}
.cid-tP6EnjpecY .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tP6EnjpecY .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tP6EnjpecY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tP6EnjpecY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tP6EnjpecY .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tP6EnjpecY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tP6EnjpecY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tP6EnjpecY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tP6EnjpecY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tP6EnjpecY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tP6EnjpecY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tP6EnjpecY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tP6EnjpecY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tP6EnjpecY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tP6EnjpecY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tP6EnjpecY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tP6EnjpecY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tP6EnjpecY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tP6EnjpecY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tP6EnjpecY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tP6EnjpecY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tP6EnjpecY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tP6EnjpecY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tP6EnjpecY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tP6EnjpecY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tP6EnjpecY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tP6EnjpecY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tP6EnjpecY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tP6EnjpecY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tP6EnjpecY .section {
  position: relative;
  overflow: visible!important;
}
.cid-tP6EnjpecY .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tP6EnjpecY .dropdown-item:hover {
  color: black!important;
}
.cid-tP6EnjpecY .dropdown-menu {
  background-color: white!important;
}
.cid-tP6EnjpecY .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tP6EnjpecY .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tP6EnjpecY .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tP6EnjpecY .nav-item .nav-link {
    position: relative;
  }
}
.cid-tP6EnjpecY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tP6EnjpecY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tP6EnjpecY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tP6EnjpecY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tP6EnjpecY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tP6EnjpecY .collapsed {
  flex-direction: row!important;
}
.cid-tP6EnjpecY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tP6EnjpecY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tP6EnjpecY .navbar-caption {
  font-weight: 600!important;
}
.cid-tP6EnjpecY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tP6EnjpecY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tP6EnjpecY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tP6EnjpecY .dropdown-item.active,
.cid-tP6EnjpecY .dropdown-item:active {
  background-color: transparent;
}
.cid-tP6EnjpecY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tP6EnjpecY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tP6EnjpecY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tP6EnjpecY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tP6EnjpecY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tP6EnjpecY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tP6EnjpecY .navbar-buttons {
  text-align: center;
}
.cid-tP6EnjpecY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tP6EnjpecY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tP6EnjpecY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tP6EnjpecY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tP6EnjpecY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tP6EnjpecY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tP6EnjpecY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tP6EnjpecY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tP6EnjpecY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tP6EnjpecY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tP6EnjpecY .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tP6EnjpecY .nav-link {
  font-weight: 600!important;
}
.cid-tP6EnjpecY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tP6EnjpecY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tP6EnjpecY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tP6EnjpecY .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tP6EnjpecY .navbar {
    height: 77px;
  }
  .cid-tP6EnjpecY .navbar.opened {
    height: auto;
  }
  .cid-tP6EnjpecY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0FxGuN9Mh {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-u0FxGuN9Mh a.btn > span {
  margin-left: 0.5rem;
}
.cid-u0FxGuN9Mh .row {
  align-items: center;
  justify-content: space-between;
}
.cid-u0FxGuN9Mh .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #ffffff;
}
.cid-u0FxGuN9Mh .mbr-section-subtitle {
  color: #14142b;
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
}
.cid-u0FxGuN9Mh .mbr-text {
  color: #5f5d68;
  margin-bottom: 56px;
}
.cid-u0FxGuN9Mh .right-side {
  max-width: 554px;
}
.cid-u0FxGuN9Mh .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-u0FxGuN9Mh .margin {
  margin-right: 14px;
}
.cid-u0FxGuN9Mh .shadow {
  padding: 62px 56px 64px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 690px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-u0FxGuN9Mh img {
  max-width: 186px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 17px;
}
.cid-u0FxGuN9Mh .card-title {
  margin-bottom: 4px;
  color: #14142b;
}
.cid-u0FxGuN9Mh .card-subtitle {
  margin-bottom: 21px;
  color: #8c8c95;
}
.cid-u0FxGuN9Mh .card-text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-u0FxGuN9Mh .mbr-social-likes.big .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 37px;
  height: 37px;
  line-height: 44px;
  margin: 0 10px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #633615;
  cursor: pointer;
}
.cid-u0FxGuN9Mh .mbr-social-likes.big .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-u0FxGuN9Mh .mbr-social-likes.big .btn-social:hover {
  color: #fff;
}
.cid-u0FxGuN9Mh .mbr-social-likes.big .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-u0FxGuN9Mh .r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.cid-u0FxGuN9Mh .mbr-social-likes.small {
  display: flex;
}
.cid-u0FxGuN9Mh .mbr-social-likes.big {
  display: block;
}
.cid-u0FxGuN9Mh .mbr-social-likes.small .btn-social {
  font-size: 14px;
  border-radius: 50%;
  width: 30px;
  height: 30px !important;
  line-height: 30px;
  margin: 0 0px 0 10px !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #633615;
  cursor: pointer;
}
.cid-u0FxGuN9Mh .mbr-social-likes.small .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-u0FxGuN9Mh .mbr-social-likes.small .btn-social:hover {
  color: #fff;
}
.cid-u0FxGuN9Mh .mbr-social-likes.small .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-u0FxGuN9Mh .form-control,
.cid-u0FxGuN9Mh form .btn {
  min-height: initial;
}
.cid-u0FxGuN9Mh a.btn,
.cid-u0FxGuN9Mh button {
  padding: 24px 40px;
  border-radius: 80px;
}
.cid-u0FxGuN9Mh input {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 64px;
  margin-bottom: 40px;
  padding: 8px 26px;
}
.cid-u0FxGuN9Mh textarea {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 14px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 132px;
  margin-bottom: 40px;
  padding: 20px 26px;
}
.cid-u0FxGuN9Mh input:hover {
  border-color: #14142b !important;
}
.cid-u0FxGuN9Mh textarea:hover {
  border-color: #14142b !important;
}
.cid-u0FxGuN9Mh input:focus {
  border-color: #14142b !important;
}
.cid-u0FxGuN9Mh textarea:focus {
  border-color: #14142b !important;
}
.cid-u0FxGuN9Mh .form-group {
  margin-bottom: 0;
}
.cid-u0FxGuN9Mh .listen {
  margin-bottom: 24px;
}
.cid-u0FxGuN9Mh .phone {
  margin-bottom: 44px;
}
.cid-u0FxGuN9Mh .email {
  margin-bottom: 21px;
}
.cid-u0FxGuN9Mh .listen,
.cid-u0FxGuN9Mh .big {
  text-align: left;
  color: #8c8c95;
}
.cid-u0FxGuN9Mh .mbr-text,
.cid-u0FxGuN9Mh .button-align {
  color: #fafafa;
}
.cid-u0FxGuN9Mh .email span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-u0FxGuN9Mh .phone span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-u0FxGuN9Mh select.form-control:hover {
  border-color: #14142b;
}
.cid-u0FxGuN9Mh select.form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: #8c8c95;
  transition: border-color 300ms ease;
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  display: flex;
}
.cid-u0FxGuN9Mh .form-check > input {
  height: 1em;
  width: 1em;
  padding: 0;
  float: initial;
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .cid-u0FxGuN9Mh .shadow {
    width: 100%;
    margin-top: 60px;
    max-width: initial;
  }
  .cid-u0FxGuN9Mh .left-side,
  .cid-u0FxGuN9Mh .right-side {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 992px) {
  .cid-u0FxGuN9Mh .right-side {
    max-width: initial;
    margin-bottom: 50px;
  }
  .cid-u0FxGuN9Mh .shadow {
    margin: auto;
  }
}
@media (max-width: 600px) {
  .cid-u0FxGuN9Mh .shadow {
    padding: 25px;
  }
  .cid-u0FxGuN9Mh input {
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .cid-u0FxGuN9Mh .r {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .cid-u0FxGuN9Mh .mbr-social-likes.small {
    margin-top: 20px;
  }
}
.cid-u0FxGuN9Mh .big > .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-u0FxGuN9Mh .big > .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-u0FxGuN9Mh .big > .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-u0FxGuN9Mh .big > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-u0FxGuN9Mh .big > .socicon-bg-mail {
  background-color: #134785;
}
.cid-u0FxGuN9Mh .small > .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-u0FxGuN9Mh .small > .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-u0FxGuN9Mh .small > .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-u0FxGuN9Mh .small > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-u0FxGuN9Mh .small > .socicon-bg-mail {
  background-color: #134785;
}
.cid-u0FxGuN9Mh .mbr-iconfont {
  margin-right: 8px;
}
.cid-u0FxGuN9Mh .mbr-section-subtitle,
.cid-u0FxGuN9Mh .email,
.cid-u0FxGuN9Mh .phone {
  color: #ffffff;
}
.cid-u0FxGuN9Mh .listen,
.cid-u0FxGuN9Mh .mbr-social-likes {
  color: #ffffff;
}
.cid-tP6EnmdW1p {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tP6EnmdW1p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP6EnmdW1p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP6EnmdW1p .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tP6EnmdW1p .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tP6EnmdW1p .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tP6EnmdW1p .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tP6EnmdW1p .container {
    max-width: 100%;
  }
  .cid-tP6EnmdW1p .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tP6EnmdW1p .item-wrap {
  width: 100%;
}
.cid-tP6EnmdW1p .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tP6EnmdW1p .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tP6EnmdW1p .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tP6EnmdW1p .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tP6EnmdW1p .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tP6EnmdW1p .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tP6EnmdW1p .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tP6EnmdW1p .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tP6EnmdW1p .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tP6EnmdW1p .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tP6EnmdW1p .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tP6EnmdW1p .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tP6EnmdW1p .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tP6EnmdW1p .col-links {
    padding-top: 20px;
  }
}
.cid-tP6EnmdW1p .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tP6EnmdW1p .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tP6EnmdW1p .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tP6EnmdW1p .list {
    text-align: center !important;
  }
}
.cid-tP6EnmdW1p .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tP6EnmdW1p .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tP6EnmdW1p .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tP6EnmdW1p .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tP6EnmdW1p .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tP6EnmdW1p .list a:hover:before {
  width: 100%;
}
.cid-tP6EnmdW1p .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tP6EnmdW1p .col-copyright {
    padding-top: 40px;
  }
}
.cid-tP6EnmdW1p .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tP6EnmdW1p .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tPy2FlGW87 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tPy2FlGW87 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tPy2FlGW87 .nav-item:focus,
.cid-tPy2FlGW87 .nav-link:focus {
  outline: none;
}
.cid-tPy2FlGW87 .text-white:hover,
.cid-tPy2FlGW87 .text-white:active,
.cid-tPy2FlGW87 .text-white:focus {
  color: white!important;
}
.cid-tPy2FlGW87 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tPy2FlGW87 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tPy2FlGW87 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tPy2FlGW87 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tPy2FlGW87 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tPy2FlGW87 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPy2FlGW87 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPy2FlGW87 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tPy2FlGW87 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPy2FlGW87 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPy2FlGW87 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tPy2FlGW87 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPy2FlGW87 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tPy2FlGW87 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tPy2FlGW87 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPy2FlGW87 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPy2FlGW87 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tPy2FlGW87 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPy2FlGW87 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPy2FlGW87 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tPy2FlGW87 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tPy2FlGW87 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPy2FlGW87 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPy2FlGW87 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tPy2FlGW87 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tPy2FlGW87 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tPy2FlGW87 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tPy2FlGW87 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tPy2FlGW87 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tPy2FlGW87 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tPy2FlGW87 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tPy2FlGW87 .dropdown-item:hover {
  color: black!important;
}
.cid-tPy2FlGW87 .dropdown-menu {
  background-color: white!important;
}
.cid-tPy2FlGW87 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tPy2FlGW87 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tPy2FlGW87 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tPy2FlGW87 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tPy2FlGW87 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tPy2FlGW87 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPy2FlGW87 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tPy2FlGW87 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tPy2FlGW87 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tPy2FlGW87 .collapsed {
  flex-direction: row!important;
}
.cid-tPy2FlGW87 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPy2FlGW87 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPy2FlGW87 .navbar-caption {
  font-weight: 600!important;
}
.cid-tPy2FlGW87 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPy2FlGW87 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPy2FlGW87 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPy2FlGW87 .dropdown-item.active,
.cid-tPy2FlGW87 .dropdown-item:active {
  background-color: transparent;
}
.cid-tPy2FlGW87 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPy2FlGW87 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPy2FlGW87 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPy2FlGW87 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tPy2FlGW87 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPy2FlGW87 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tPy2FlGW87 .navbar-buttons {
  text-align: center;
}
.cid-tPy2FlGW87 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tPy2FlGW87 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tPy2FlGW87 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tPy2FlGW87 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tPy2FlGW87 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tPy2FlGW87 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tPy2FlGW87 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tPy2FlGW87 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tPy2FlGW87 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tPy2FlGW87 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tPy2FlGW87 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tPy2FlGW87 .nav-link {
  font-weight: 600!important;
}
.cid-tPy2FlGW87 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tPy2FlGW87 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tPy2FlGW87 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tPy2FlGW87 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPy2FlGW87 .navbar {
    height: 77px;
  }
  .cid-tPy2FlGW87 .navbar.opened {
    height: auto;
  }
  .cid-tPy2FlGW87 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0FD9EwAOY {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0FD9EwAOY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0FD9EwAOY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0FD9EwAOY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0FD9EwAOY .title {
  padding: 0 2rem;
}
.cid-u0FD9EwAOY .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
  height: 300px !important;
}
.cid-u0FD9EwAOY .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-u0FD9EwAOY .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-u0FD9EwAOY .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-u0FD9EwAOY .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-u0FD9EwAOY .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-u0FD9EwAOY .container {
  padding: 0 1rem;
}
.cid-u0FD9EwAOY .mbr-gallery-item--p4 {
  padding: 1rem !important;
}
.cid-u0FD9EwAOY .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-u0FD9EwAOY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0FD9EwAOY .icon-focus {
  display: none;
}
.cid-u0FD9EwAOY .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-u0FD9EwAOY .btn-primary-outline:hover {
  background: transparent !important;
  color: #633615 !important;
}
.cid-u0FD9EwAOY li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-u0FD9EwAOY li {
  position: relative;
}
.cid-u0FD9EwAOY .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-u0FD9EwAOY .btn {
  font-family: Jost !important;
}
.cid-u0FD9EwAOY .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-u0FD9EwAOY .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0FD9EwAOY li:not(:last-child):after {
    top: 9px;
  }
  .cid-u0FD9EwAOY .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-u0FD9EwAOY .container {
    padding: 0rem;
  }
  .cid-u0FD9EwAOY .title {
    padding: 0 1rem;
  }
}
.cid-u0FD9EwAOY H2 {
  color: #89b758;
}
.cid-u0FD9EwAOY H1 {
  color: #ffffff;
}
.cid-u0FFnsWTzS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0FFnsWTzS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0FFnsWTzS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0FFnsWTzS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0FFnsWTzS .title {
  padding: 0 2rem;
}
.cid-u0FFnsWTzS .container {
  padding: 0 1rem;
}
.cid-u0FFnsWTzS .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-u0FFnsWTzS .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-u0FFnsWTzS .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-u0FFnsWTzS .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-u0FFnsWTzS .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-u0FFnsWTzS .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-u0FFnsWTzS .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-u0FFnsWTzS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0FFnsWTzS .icon-focus {
  display: none;
}
.cid-u0FFnsWTzS .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-u0FFnsWTzS .btn-primary-outline:hover {
  background: transparent !important;
  color: #633615 !important;
}
.cid-u0FFnsWTzS li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-u0FFnsWTzS li {
  position: relative;
}
.cid-u0FFnsWTzS .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-u0FFnsWTzS .btn {
  font-family: Jost !important;
}
.cid-u0FFnsWTzS .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-u0FFnsWTzS .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0FFnsWTzS li:not(:last-child):after {
    top: 9px;
  }
  .cid-u0FFnsWTzS .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-u0FFnsWTzS .container {
    padding: 0rem 0.5rem;
  }
  .cid-u0FFnsWTzS .title {
    padding: 0 1rem;
  }
}
.cid-u0FFnsWTzS H2 {
  color: #89b758;
}
.cid-tPy2FqXGxr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tPy2FqXGxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPy2FqXGxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPy2FqXGxr .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tPy2FqXGxr .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tPy2FqXGxr .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tPy2FqXGxr .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tPy2FqXGxr .container {
    max-width: 100%;
  }
  .cid-tPy2FqXGxr .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tPy2FqXGxr .item-wrap {
  width: 100%;
}
.cid-tPy2FqXGxr .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tPy2FqXGxr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tPy2FqXGxr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tPy2FqXGxr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tPy2FqXGxr .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tPy2FqXGxr .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tPy2FqXGxr .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tPy2FqXGxr .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tPy2FqXGxr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tPy2FqXGxr .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tPy2FqXGxr .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tPy2FqXGxr .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tPy2FqXGxr .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tPy2FqXGxr .col-links {
    padding-top: 20px;
  }
}
.cid-tPy2FqXGxr .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tPy2FqXGxr .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tPy2FqXGxr .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tPy2FqXGxr .list {
    text-align: center !important;
  }
}
.cid-tPy2FqXGxr .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tPy2FqXGxr .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tPy2FqXGxr .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tPy2FqXGxr .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tPy2FqXGxr .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tPy2FqXGxr .list a:hover:before {
  width: 100%;
}
.cid-tPy2FqXGxr .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tPy2FqXGxr .col-copyright {
    padding-top: 40px;
  }
}
.cid-tPy2FqXGxr .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tPy2FqXGxr .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tRvuNvBwOA .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tRvuNvBwOA .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tRvuNvBwOA .nav-item:focus,
.cid-tRvuNvBwOA .nav-link:focus {
  outline: none;
}
.cid-tRvuNvBwOA .text-white:hover,
.cid-tRvuNvBwOA .text-white:active,
.cid-tRvuNvBwOA .text-white:focus {
  color: white!important;
}
.cid-tRvuNvBwOA .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tRvuNvBwOA .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tRvuNvBwOA .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tRvuNvBwOA .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tRvuNvBwOA .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tRvuNvBwOA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRvuNvBwOA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tRvuNvBwOA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tRvuNvBwOA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRvuNvBwOA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRvuNvBwOA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tRvuNvBwOA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRvuNvBwOA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tRvuNvBwOA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tRvuNvBwOA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRvuNvBwOA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRvuNvBwOA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tRvuNvBwOA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRvuNvBwOA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRvuNvBwOA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tRvuNvBwOA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tRvuNvBwOA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRvuNvBwOA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRvuNvBwOA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tRvuNvBwOA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tRvuNvBwOA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tRvuNvBwOA .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tRvuNvBwOA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tRvuNvBwOA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tRvuNvBwOA .section {
  position: relative;
  overflow: visible!important;
}
.cid-tRvuNvBwOA .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tRvuNvBwOA .dropdown-item:hover {
  color: black!important;
}
.cid-tRvuNvBwOA .dropdown-menu {
  background-color: white!important;
}
.cid-tRvuNvBwOA .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tRvuNvBwOA .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tRvuNvBwOA .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tRvuNvBwOA .nav-item .nav-link {
    position: relative;
  }
}
.cid-tRvuNvBwOA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tRvuNvBwOA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRvuNvBwOA .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tRvuNvBwOA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tRvuNvBwOA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tRvuNvBwOA .collapsed {
  flex-direction: row!important;
}
.cid-tRvuNvBwOA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRvuNvBwOA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRvuNvBwOA .navbar-caption {
  font-weight: 600!important;
}
.cid-tRvuNvBwOA .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRvuNvBwOA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRvuNvBwOA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRvuNvBwOA .dropdown-item.active,
.cid-tRvuNvBwOA .dropdown-item:active {
  background-color: transparent;
}
.cid-tRvuNvBwOA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRvuNvBwOA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRvuNvBwOA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRvuNvBwOA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRvuNvBwOA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRvuNvBwOA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tRvuNvBwOA .navbar-buttons {
  text-align: center;
}
.cid-tRvuNvBwOA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tRvuNvBwOA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tRvuNvBwOA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tRvuNvBwOA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tRvuNvBwOA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tRvuNvBwOA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tRvuNvBwOA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tRvuNvBwOA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tRvuNvBwOA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tRvuNvBwOA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tRvuNvBwOA .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tRvuNvBwOA .nav-link {
  font-weight: 600!important;
}
.cid-tRvuNvBwOA a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tRvuNvBwOA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tRvuNvBwOA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tRvuNvBwOA .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tRvuNvBwOA .navbar {
    height: 77px;
  }
  .cid-tRvuNvBwOA .navbar.opened {
    height: auto;
  }
  .cid-tRvuNvBwOA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRvwv9ApU7 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img-20230506-171943-411-1200x1200.jpg");
}
.cid-tRvwv9ApU7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRvwv9ApU7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRvwv9ApU7 .mbr-section-subtitle {
  text-align: left;
}
.cid-tRvwv9ApU7 .mbr-section-title {
  color: #633615;
}
.cid-tRvuNyFa8t {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRvuNyFa8t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRvuNyFa8t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRvuNyFa8t .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tRvuNyFa8t .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tRvuNyFa8t .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tRvuNyFa8t .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tRvuNyFa8t .container {
    max-width: 100%;
  }
  .cid-tRvuNyFa8t .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tRvuNyFa8t .item-wrap {
  width: 100%;
}
.cid-tRvuNyFa8t .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tRvuNyFa8t .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tRvuNyFa8t .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tRvuNyFa8t .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tRvuNyFa8t .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tRvuNyFa8t .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tRvuNyFa8t .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tRvuNyFa8t .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tRvuNyFa8t .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tRvuNyFa8t .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tRvuNyFa8t .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tRvuNyFa8t .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tRvuNyFa8t .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tRvuNyFa8t .col-links {
    padding-top: 20px;
  }
}
.cid-tRvuNyFa8t .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tRvuNyFa8t .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tRvuNyFa8t .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tRvuNyFa8t .list {
    text-align: center !important;
  }
}
.cid-tRvuNyFa8t .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tRvuNyFa8t .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tRvuNyFa8t .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tRvuNyFa8t .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tRvuNyFa8t .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tRvuNyFa8t .list a:hover:before {
  width: 100%;
}
.cid-tRvuNyFa8t .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tRvuNyFa8t .col-copyright {
    padding-top: 40px;
  }
}
.cid-tRvuNyFa8t .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tRvuNyFa8t .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLja2vPgex .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLja2vPgex .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLja2vPgex .nav-item:focus,
.cid-tLja2vPgex .nav-link:focus {
  outline: none;
}
.cid-tLja2vPgex .text-white:hover,
.cid-tLja2vPgex .text-white:active,
.cid-tLja2vPgex .text-white:focus {
  color: white!important;
}
.cid-tLja2vPgex .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLja2vPgex .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLja2vPgex .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLja2vPgex .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLja2vPgex .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLja2vPgex .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLja2vPgex .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLja2vPgex .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLja2vPgex .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLja2vPgex .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLja2vPgex .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLja2vPgex .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLja2vPgex .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLja2vPgex .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLja2vPgex .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLja2vPgex .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLja2vPgex .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLja2vPgex .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLja2vPgex .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLja2vPgex .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLja2vPgex .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLja2vPgex .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLja2vPgex .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLja2vPgex .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLja2vPgex .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLja2vPgex .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLja2vPgex .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLja2vPgex .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLja2vPgex .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLja2vPgex .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLja2vPgex .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLja2vPgex .dropdown-item:hover {
  color: black!important;
}
.cid-tLja2vPgex .dropdown-menu {
  background-color: white!important;
}
.cid-tLja2vPgex .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLja2vPgex .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLja2vPgex .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLja2vPgex .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLja2vPgex .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLja2vPgex .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLja2vPgex .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLja2vPgex .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLja2vPgex .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLja2vPgex .collapsed {
  flex-direction: row!important;
}
.cid-tLja2vPgex .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLja2vPgex .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLja2vPgex .navbar-caption {
  font-weight: 600!important;
}
.cid-tLja2vPgex .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLja2vPgex .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLja2vPgex .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLja2vPgex .dropdown-item.active,
.cid-tLja2vPgex .dropdown-item:active {
  background-color: transparent;
}
.cid-tLja2vPgex .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLja2vPgex .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLja2vPgex .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLja2vPgex .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLja2vPgex .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLja2vPgex ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLja2vPgex .navbar-buttons {
  text-align: center;
}
.cid-tLja2vPgex button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLja2vPgex button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLja2vPgex button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLja2vPgex button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLja2vPgex button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLja2vPgex button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLja2vPgex nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLja2vPgex nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLja2vPgex nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLja2vPgex nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLja2vPgex .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLja2vPgex .nav-link {
  font-weight: 600!important;
}
.cid-tLja2vPgex a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLja2vPgex .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLja2vPgex .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLja2vPgex .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLja2vPgex .navbar {
    height: 77px;
  }
  .cid-tLja2vPgex .navbar.opened {
    height: auto;
  }
  .cid-tLja2vPgex .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLja2A2xlu {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/img-20230902-025023-461-1800x1970.jpeg");
}
.cid-tLja2A2xlu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLja2A2xlu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLja2A2xlu .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZtSvAjfOK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLja2FAg0u {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLja2FAg0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLja2FAg0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLja2FAg0u .mbr-section-title,
.cid-tLja2FAg0u .mbr-section-subtitle {
  text-align: center;
}
.cid-tLja2FAg0u .cost {
  word-break: normal;
}
.cid-tLja2FAg0u .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLja2FAg0u .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLja2FAg0u .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLja2FAg0u .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAW5sfsXt {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAW5sfsXt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAW5sfsXt .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAW5sfsXt textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAW5sfsXt .form-row {
    flex-direction: column;
  }
}
.cid-tQAW5sfsXt h4 {
  margin-bottom: 2rem;
}
.cid-tQAW5sfsXt .form-control,
.cid-tQAW5sfsXt .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAW5sfsXt .form-control,
.cid-tQAW5sfsXt .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAW5sfsXt .form-control::-webkit-input-placeholder,
.cid-tQAW5sfsXt .field-input::-webkit-input-placeholder,
.cid-tQAW5sfsXt .form-control::-webkit-input-placeholder,
.cid-tQAW5sfsXt .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAW5sfsXt .form-control:-moz-placeholder,
.cid-tQAW5sfsXt .field-input:-moz-placeholder,
.cid-tQAW5sfsXt .form-control:-moz-placeholder,
.cid-tQAW5sfsXt .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAW5sfsXt .form-control:hover,
.cid-tQAW5sfsXt .field-input:hover,
.cid-tQAW5sfsXt .form-control:focus,
.cid-tQAW5sfsXt .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAW5sfsXt .form-control:hover::-webkit-input-placeholder,
.cid-tQAW5sfsXt .field-input:hover::-webkit-input-placeholder,
.cid-tQAW5sfsXt .form-control:focus::-webkit-input-placeholder,
.cid-tQAW5sfsXt .field-input:focus::-webkit-input-placeholder,
.cid-tQAW5sfsXt .form-control:hover::-webkit-input-placeholder,
.cid-tQAW5sfsXt .field-input:hover::-webkit-input-placeholder,
.cid-tQAW5sfsXt .form-control:focus::-webkit-input-placeholder,
.cid-tQAW5sfsXt .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAW5sfsXt .form-control:hover:-moz-placeholder,
.cid-tQAW5sfsXt .field-input:hover:-moz-placeholder,
.cid-tQAW5sfsXt .form-control:focus:-moz-placeholder,
.cid-tQAW5sfsXt .field-input:focus:-moz-placeholder,
.cid-tQAW5sfsXt .form-control:hover:-moz-placeholder,
.cid-tQAW5sfsXt .field-input:hover:-moz-placeholder,
.cid-tQAW5sfsXt .form-control:focus:-moz-placeholder,
.cid-tQAW5sfsXt .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAW5sfsXt .jq-number__spin:hover,
.cid-tQAW5sfsXt .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAW5sfsXt .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAW5sfsXt .jq-selectbox li,
.cid-tQAW5sfsXt .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAW5sfsXt .jq-selectbox li:hover,
.cid-tQAW5sfsXt .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAW5sfsXt .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAW5sfsXt .jq-number__spin.minus:hover:after,
.cid-tQAW5sfsXt .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAW5sfsXt .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAW5sfsXt .jq-number__spin.minus:after,
.cid-tQAW5sfsXt .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAW5sfsXt input::-webkit-clear-button {
  display: none;
}
.cid-tQAW5sfsXt input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAW5sfsXt input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAW5sfsXt input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAW5sfsXt H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZu70h9JBp .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZu70h9JBp .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZu70h9JBp .nav-item:focus,
.cid-tZu70h9JBp .nav-link:focus {
  outline: none;
}
.cid-tZu70h9JBp .text-white:hover,
.cid-tZu70h9JBp .text-white:active,
.cid-tZu70h9JBp .text-white:focus {
  color: white!important;
}
.cid-tZu70h9JBp .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZu70h9JBp .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZu70h9JBp .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZu70h9JBp .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZu70h9JBp .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZu70h9JBp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZu70h9JBp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZu70h9JBp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZu70h9JBp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZu70h9JBp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZu70h9JBp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZu70h9JBp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZu70h9JBp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZu70h9JBp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZu70h9JBp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZu70h9JBp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZu70h9JBp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZu70h9JBp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZu70h9JBp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZu70h9JBp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZu70h9JBp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZu70h9JBp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZu70h9JBp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZu70h9JBp .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZu70h9JBp .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZu70h9JBp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZu70h9JBp .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZu70h9JBp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZu70h9JBp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZu70h9JBp .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZu70h9JBp .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZu70h9JBp .dropdown-item:hover {
  color: black!important;
}
.cid-tZu70h9JBp .dropdown-menu {
  background-color: white!important;
}
.cid-tZu70h9JBp .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZu70h9JBp .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZu70h9JBp .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZu70h9JBp .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZu70h9JBp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZu70h9JBp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZu70h9JBp .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZu70h9JBp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZu70h9JBp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZu70h9JBp .collapsed {
  flex-direction: row!important;
}
.cid-tZu70h9JBp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZu70h9JBp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZu70h9JBp .navbar-caption {
  font-weight: 600!important;
}
.cid-tZu70h9JBp .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZu70h9JBp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZu70h9JBp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZu70h9JBp .dropdown-item.active,
.cid-tZu70h9JBp .dropdown-item:active {
  background-color: transparent;
}
.cid-tZu70h9JBp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZu70h9JBp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZu70h9JBp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZu70h9JBp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZu70h9JBp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZu70h9JBp ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZu70h9JBp .navbar-buttons {
  text-align: center;
}
.cid-tZu70h9JBp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZu70h9JBp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZu70h9JBp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZu70h9JBp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZu70h9JBp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZu70h9JBp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZu70h9JBp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZu70h9JBp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZu70h9JBp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZu70h9JBp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZu70h9JBp .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZu70h9JBp .nav-link {
  font-weight: 600!important;
}
.cid-tZu70h9JBp a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZu70h9JBp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZu70h9JBp .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZu70h9JBp .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZu70h9JBp .navbar {
    height: 77px;
  }
  .cid-tZu70h9JBp .navbar.opened {
    height: auto;
  }
  .cid-tZu70h9JBp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZu70la3cP {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/img-20230902-021722-938-720x720.jpeg");
}
.cid-tZu70la3cP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZu70la3cP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZu70la3cP .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZu70orR9Y {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZu70r4gOM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZu70r4gOM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZu70r4gOM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZu70r4gOM .mbr-section-title,
.cid-tZu70r4gOM .mbr-section-subtitle {
  text-align: center;
}
.cid-tZu70r4gOM .cost {
  word-break: normal;
}
.cid-tZu70r4gOM .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZu70r4gOM .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZu70r4gOM .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZu70r4gOM .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZu70B8rID {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZu70B8rID .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZu70B8rID .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZu70B8rID textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZu70B8rID .form-row {
    flex-direction: column;
  }
}
.cid-tZu70B8rID h4 {
  margin-bottom: 2rem;
}
.cid-tZu70B8rID .form-control,
.cid-tZu70B8rID .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZu70B8rID .form-control,
.cid-tZu70B8rID .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZu70B8rID .form-control::-webkit-input-placeholder,
.cid-tZu70B8rID .field-input::-webkit-input-placeholder,
.cid-tZu70B8rID .form-control::-webkit-input-placeholder,
.cid-tZu70B8rID .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZu70B8rID .form-control:-moz-placeholder,
.cid-tZu70B8rID .field-input:-moz-placeholder,
.cid-tZu70B8rID .form-control:-moz-placeholder,
.cid-tZu70B8rID .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZu70B8rID .form-control:hover,
.cid-tZu70B8rID .field-input:hover,
.cid-tZu70B8rID .form-control:focus,
.cid-tZu70B8rID .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZu70B8rID .form-control:hover::-webkit-input-placeholder,
.cid-tZu70B8rID .field-input:hover::-webkit-input-placeholder,
.cid-tZu70B8rID .form-control:focus::-webkit-input-placeholder,
.cid-tZu70B8rID .field-input:focus::-webkit-input-placeholder,
.cid-tZu70B8rID .form-control:hover::-webkit-input-placeholder,
.cid-tZu70B8rID .field-input:hover::-webkit-input-placeholder,
.cid-tZu70B8rID .form-control:focus::-webkit-input-placeholder,
.cid-tZu70B8rID .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZu70B8rID .form-control:hover:-moz-placeholder,
.cid-tZu70B8rID .field-input:hover:-moz-placeholder,
.cid-tZu70B8rID .form-control:focus:-moz-placeholder,
.cid-tZu70B8rID .field-input:focus:-moz-placeholder,
.cid-tZu70B8rID .form-control:hover:-moz-placeholder,
.cid-tZu70B8rID .field-input:hover:-moz-placeholder,
.cid-tZu70B8rID .form-control:focus:-moz-placeholder,
.cid-tZu70B8rID .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZu70B8rID .jq-number__spin:hover,
.cid-tZu70B8rID .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZu70B8rID .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZu70B8rID .jq-selectbox li,
.cid-tZu70B8rID .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZu70B8rID .jq-selectbox li:hover,
.cid-tZu70B8rID .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZu70B8rID .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZu70B8rID .jq-number__spin.minus:hover:after,
.cid-tZu70B8rID .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZu70B8rID .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZu70B8rID .jq-number__spin.minus:after,
.cid-tZu70B8rID .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZu70B8rID input::-webkit-clear-button {
  display: none;
}
.cid-tZu70B8rID input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZu70B8rID input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZu70B8rID input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZu70B8rID H4 {
  color: #000000;
}
.cid-tZu70LEi8H {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZu70LEi8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZu70LEi8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZu70LEi8H .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZu70LEi8H .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZu70LEi8H .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZu70LEi8H .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZu70LEi8H .container {
    max-width: 100%;
  }
  .cid-tZu70LEi8H .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZu70LEi8H .item-wrap {
  width: 100%;
}
.cid-tZu70LEi8H .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZu70LEi8H .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZu70LEi8H .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZu70LEi8H .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZu70LEi8H .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZu70LEi8H .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZu70LEi8H .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZu70LEi8H .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZu70LEi8H .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZu70LEi8H .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZu70LEi8H .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZu70LEi8H .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZu70LEi8H .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZu70LEi8H .col-links {
    padding-top: 20px;
  }
}
.cid-tZu70LEi8H .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZu70LEi8H .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZu70LEi8H .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZu70LEi8H .list {
    text-align: center !important;
  }
}
.cid-tZu70LEi8H .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZu70LEi8H .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZu70LEi8H .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZu70LEi8H .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZu70LEi8H .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZu70LEi8H .list a:hover:before {
  width: 100%;
}
.cid-tZu70LEi8H .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZu70LEi8H .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZu70LEi8H .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZu70LEi8H .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZubE5BPyc .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZubE5BPyc .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZubE5BPyc .nav-item:focus,
.cid-tZubE5BPyc .nav-link:focus {
  outline: none;
}
.cid-tZubE5BPyc .text-white:hover,
.cid-tZubE5BPyc .text-white:active,
.cid-tZubE5BPyc .text-white:focus {
  color: white!important;
}
.cid-tZubE5BPyc .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZubE5BPyc .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZubE5BPyc .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZubE5BPyc .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZubE5BPyc .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZubE5BPyc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZubE5BPyc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZubE5BPyc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZubE5BPyc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZubE5BPyc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZubE5BPyc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZubE5BPyc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZubE5BPyc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZubE5BPyc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZubE5BPyc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZubE5BPyc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZubE5BPyc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZubE5BPyc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZubE5BPyc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZubE5BPyc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZubE5BPyc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZubE5BPyc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZubE5BPyc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZubE5BPyc .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZubE5BPyc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZubE5BPyc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZubE5BPyc .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZubE5BPyc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZubE5BPyc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZubE5BPyc .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZubE5BPyc .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZubE5BPyc .dropdown-item:hover {
  color: black!important;
}
.cid-tZubE5BPyc .dropdown-menu {
  background-color: white!important;
}
.cid-tZubE5BPyc .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZubE5BPyc .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZubE5BPyc .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZubE5BPyc .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZubE5BPyc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZubE5BPyc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZubE5BPyc .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZubE5BPyc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZubE5BPyc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZubE5BPyc .collapsed {
  flex-direction: row!important;
}
.cid-tZubE5BPyc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZubE5BPyc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZubE5BPyc .navbar-caption {
  font-weight: 600!important;
}
.cid-tZubE5BPyc .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZubE5BPyc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZubE5BPyc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZubE5BPyc .dropdown-item.active,
.cid-tZubE5BPyc .dropdown-item:active {
  background-color: transparent;
}
.cid-tZubE5BPyc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZubE5BPyc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZubE5BPyc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZubE5BPyc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZubE5BPyc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZubE5BPyc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZubE5BPyc .navbar-buttons {
  text-align: center;
}
.cid-tZubE5BPyc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZubE5BPyc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZubE5BPyc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZubE5BPyc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZubE5BPyc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZubE5BPyc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZubE5BPyc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZubE5BPyc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZubE5BPyc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZubE5BPyc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZubE5BPyc .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZubE5BPyc .nav-link {
  font-weight: 600!important;
}
.cid-tZubE5BPyc a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZubE5BPyc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZubE5BPyc .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZubE5BPyc .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZubE5BPyc .navbar {
    height: 77px;
  }
  .cid-tZubE5BPyc .navbar.opened {
    height: auto;
  }
  .cid-tZubE5BPyc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZubEbyCi4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231013-82633-2000x900.jpg");
}
.cid-tZubEbyCi4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZubEbyCi4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZubEbyCi4 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZubEefm4T {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tZubEgVK5N {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZubEgVK5N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZubEgVK5N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZubEgVK5N .mbr-section-title,
.cid-tZubEgVK5N .mbr-section-subtitle {
  text-align: center;
}
.cid-tZubEgVK5N .cost {
  word-break: normal;
}
.cid-tZubEgVK5N .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZubEgVK5N .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZubEgVK5N .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZubEgVK5N .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZubEk9ftc {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZubEk9ftc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZubEk9ftc .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZubEk9ftc textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZubEk9ftc .form-row {
    flex-direction: column;
  }
}
.cid-tZubEk9ftc h4 {
  margin-bottom: 2rem;
}
.cid-tZubEk9ftc .form-control,
.cid-tZubEk9ftc .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZubEk9ftc .form-control,
.cid-tZubEk9ftc .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZubEk9ftc .form-control::-webkit-input-placeholder,
.cid-tZubEk9ftc .field-input::-webkit-input-placeholder,
.cid-tZubEk9ftc .form-control::-webkit-input-placeholder,
.cid-tZubEk9ftc .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZubEk9ftc .form-control:-moz-placeholder,
.cid-tZubEk9ftc .field-input:-moz-placeholder,
.cid-tZubEk9ftc .form-control:-moz-placeholder,
.cid-tZubEk9ftc .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZubEk9ftc .form-control:hover,
.cid-tZubEk9ftc .field-input:hover,
.cid-tZubEk9ftc .form-control:focus,
.cid-tZubEk9ftc .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZubEk9ftc .form-control:hover::-webkit-input-placeholder,
.cid-tZubEk9ftc .field-input:hover::-webkit-input-placeholder,
.cid-tZubEk9ftc .form-control:focus::-webkit-input-placeholder,
.cid-tZubEk9ftc .field-input:focus::-webkit-input-placeholder,
.cid-tZubEk9ftc .form-control:hover::-webkit-input-placeholder,
.cid-tZubEk9ftc .field-input:hover::-webkit-input-placeholder,
.cid-tZubEk9ftc .form-control:focus::-webkit-input-placeholder,
.cid-tZubEk9ftc .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZubEk9ftc .form-control:hover:-moz-placeholder,
.cid-tZubEk9ftc .field-input:hover:-moz-placeholder,
.cid-tZubEk9ftc .form-control:focus:-moz-placeholder,
.cid-tZubEk9ftc .field-input:focus:-moz-placeholder,
.cid-tZubEk9ftc .form-control:hover:-moz-placeholder,
.cid-tZubEk9ftc .field-input:hover:-moz-placeholder,
.cid-tZubEk9ftc .form-control:focus:-moz-placeholder,
.cid-tZubEk9ftc .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZubEk9ftc .jq-number__spin:hover,
.cid-tZubEk9ftc .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZubEk9ftc .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZubEk9ftc .jq-selectbox li,
.cid-tZubEk9ftc .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZubEk9ftc .jq-selectbox li:hover,
.cid-tZubEk9ftc .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZubEk9ftc .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZubEk9ftc .jq-number__spin.minus:hover:after,
.cid-tZubEk9ftc .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZubEk9ftc .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZubEk9ftc .jq-number__spin.minus:after,
.cid-tZubEk9ftc .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZubEk9ftc input::-webkit-clear-button {
  display: none;
}
.cid-tZubEk9ftc input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZubEk9ftc input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZubEk9ftc input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZubEk9ftc H4 {
  color: #000000;
}
.cid-tZubEpClwR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZubEpClwR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZubEpClwR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZubEpClwR .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZubEpClwR .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZubEpClwR .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZubEpClwR .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZubEpClwR .container {
    max-width: 100%;
  }
  .cid-tZubEpClwR .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZubEpClwR .item-wrap {
  width: 100%;
}
.cid-tZubEpClwR .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZubEpClwR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZubEpClwR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZubEpClwR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZubEpClwR .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZubEpClwR .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZubEpClwR .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZubEpClwR .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZubEpClwR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZubEpClwR .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZubEpClwR .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZubEpClwR .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZubEpClwR .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZubEpClwR .col-links {
    padding-top: 20px;
  }
}
.cid-tZubEpClwR .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZubEpClwR .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZubEpClwR .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZubEpClwR .list {
    text-align: center !important;
  }
}
.cid-tZubEpClwR .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZubEpClwR .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZubEpClwR .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZubEpClwR .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZubEpClwR .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZubEpClwR .list a:hover:before {
  width: 100%;
}
.cid-tZubEpClwR .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZubEpClwR .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZubEpClwR .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZubEpClwR .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZxeI5XP1H .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZxeI5XP1H .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZxeI5XP1H .nav-item:focus,
.cid-tZxeI5XP1H .nav-link:focus {
  outline: none;
}
.cid-tZxeI5XP1H .text-white:hover,
.cid-tZxeI5XP1H .text-white:active,
.cid-tZxeI5XP1H .text-white:focus {
  color: white!important;
}
.cid-tZxeI5XP1H .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZxeI5XP1H .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZxeI5XP1H .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZxeI5XP1H .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZxeI5XP1H .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZxeI5XP1H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZxeI5XP1H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZxeI5XP1H .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZxeI5XP1H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZxeI5XP1H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZxeI5XP1H .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZxeI5XP1H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZxeI5XP1H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZxeI5XP1H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZxeI5XP1H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZxeI5XP1H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZxeI5XP1H .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZxeI5XP1H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZxeI5XP1H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZxeI5XP1H .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZxeI5XP1H .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZxeI5XP1H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZxeI5XP1H .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZxeI5XP1H .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZxeI5XP1H .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZxeI5XP1H .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZxeI5XP1H .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZxeI5XP1H .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZxeI5XP1H .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZxeI5XP1H .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZxeI5XP1H .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZxeI5XP1H .dropdown-item:hover {
  color: black!important;
}
.cid-tZxeI5XP1H .dropdown-menu {
  background-color: white!important;
}
.cid-tZxeI5XP1H .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZxeI5XP1H .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZxeI5XP1H .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZxeI5XP1H .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZxeI5XP1H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZxeI5XP1H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZxeI5XP1H .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZxeI5XP1H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZxeI5XP1H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZxeI5XP1H .collapsed {
  flex-direction: row!important;
}
.cid-tZxeI5XP1H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZxeI5XP1H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZxeI5XP1H .navbar-caption {
  font-weight: 600!important;
}
.cid-tZxeI5XP1H .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZxeI5XP1H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZxeI5XP1H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZxeI5XP1H .dropdown-item.active,
.cid-tZxeI5XP1H .dropdown-item:active {
  background-color: transparent;
}
.cid-tZxeI5XP1H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZxeI5XP1H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZxeI5XP1H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZxeI5XP1H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZxeI5XP1H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZxeI5XP1H ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZxeI5XP1H .navbar-buttons {
  text-align: center;
}
.cid-tZxeI5XP1H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZxeI5XP1H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZxeI5XP1H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZxeI5XP1H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZxeI5XP1H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZxeI5XP1H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZxeI5XP1H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZxeI5XP1H nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZxeI5XP1H nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZxeI5XP1H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZxeI5XP1H .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZxeI5XP1H .nav-link {
  font-weight: 600!important;
}
.cid-tZxeI5XP1H a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZxeI5XP1H .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZxeI5XP1H .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZxeI5XP1H .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZxeI5XP1H .navbar {
    height: 77px;
  }
  .cid-tZxeI5XP1H .navbar.opened {
    height: auto;
  }
  .cid-tZxeI5XP1H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZxeI8p3Q3 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231025-64325-2000x1125.jpg");
}
.cid-tZxeI8p3Q3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxeI8p3Q3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZxeI8p3Q3 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZxfdOiXt1 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZxlBcmAIR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZxlBcmAIR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxlBcmAIR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tZxlBcmAIR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZxlBcmAIR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tZxlBcmAIR .text-wrapper {
    padding: 2rem;
  }
}
.cid-tZxrPKlq3I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZxrPKlq3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxrPKlq3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tZxrPKlq3I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZxrPKlq3I .row {
  flex-direction: row-reverse;
}
.cid-tZxrPKlq3I img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tZxrPKlq3I .text-wrapper {
    padding: 2rem;
  }
}
.cid-tZxmUIpwCB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZxmUIpwCB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxmUIpwCB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tZxmUIpwCB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZxmUIpwCB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tZxmUIpwCB .text-wrapper {
    padding: 2rem;
  }
}
.cid-tZxsFYc0jJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZxsFYc0jJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxsFYc0jJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tZxsFYc0jJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZxsFYc0jJ .row {
  flex-direction: row-reverse;
}
.cid-tZxsFYc0jJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tZxsFYc0jJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tZxtv4gB4I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZxtv4gB4I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxtv4gB4I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tZxtv4gB4I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZxtv4gB4I img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tZxtv4gB4I .text-wrapper {
    padding: 2rem;
  }
}
.cid-tZxeIdI4V5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZxeIdI4V5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxeIdI4V5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZxeIdI4V5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZxeIdI4V5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZxeIdI4V5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZxeIdI4V5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZxeIdI4V5 .container {
    max-width: 100%;
  }
  .cid-tZxeIdI4V5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZxeIdI4V5 .item-wrap {
  width: 100%;
}
.cid-tZxeIdI4V5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZxeIdI4V5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZxeIdI4V5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZxeIdI4V5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZxeIdI4V5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZxeIdI4V5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZxeIdI4V5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZxeIdI4V5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZxeIdI4V5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZxeIdI4V5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZxeIdI4V5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZxeIdI4V5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZxeIdI4V5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZxeIdI4V5 .col-links {
    padding-top: 20px;
  }
}
.cid-tZxeIdI4V5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZxeIdI4V5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZxeIdI4V5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZxeIdI4V5 .list {
    text-align: center !important;
  }
}
.cid-tZxeIdI4V5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZxeIdI4V5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZxeIdI4V5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZxeIdI4V5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZxeIdI4V5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZxeIdI4V5 .list a:hover:before {
  width: 100%;
}
.cid-tZxeIdI4V5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZxeIdI4V5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZxeIdI4V5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZxeIdI4V5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLRISyvc4G .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLRISyvc4G .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLRISyvc4G .nav-item:focus,
.cid-tLRISyvc4G .nav-link:focus {
  outline: none;
}
.cid-tLRISyvc4G .text-white:hover,
.cid-tLRISyvc4G .text-white:active,
.cid-tLRISyvc4G .text-white:focus {
  color: white!important;
}
.cid-tLRISyvc4G .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLRISyvc4G .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLRISyvc4G .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLRISyvc4G .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLRISyvc4G .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLRISyvc4G .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLRISyvc4G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLRISyvc4G .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLRISyvc4G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLRISyvc4G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLRISyvc4G .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLRISyvc4G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLRISyvc4G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLRISyvc4G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLRISyvc4G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLRISyvc4G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLRISyvc4G .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLRISyvc4G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLRISyvc4G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLRISyvc4G .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLRISyvc4G .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLRISyvc4G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLRISyvc4G .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLRISyvc4G .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLRISyvc4G .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLRISyvc4G .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLRISyvc4G .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLRISyvc4G .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLRISyvc4G .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLRISyvc4G .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLRISyvc4G .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLRISyvc4G .dropdown-item:hover {
  color: black!important;
}
.cid-tLRISyvc4G .dropdown-menu {
  background-color: white!important;
}
.cid-tLRISyvc4G .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLRISyvc4G .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLRISyvc4G .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLRISyvc4G .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLRISyvc4G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLRISyvc4G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLRISyvc4G .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLRISyvc4G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLRISyvc4G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLRISyvc4G .collapsed {
  flex-direction: row!important;
}
.cid-tLRISyvc4G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLRISyvc4G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLRISyvc4G .navbar-caption {
  font-weight: 600!important;
}
.cid-tLRISyvc4G .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLRISyvc4G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLRISyvc4G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLRISyvc4G .dropdown-item.active,
.cid-tLRISyvc4G .dropdown-item:active {
  background-color: transparent;
}
.cid-tLRISyvc4G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLRISyvc4G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLRISyvc4G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLRISyvc4G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLRISyvc4G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLRISyvc4G ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLRISyvc4G .navbar-buttons {
  text-align: center;
}
.cid-tLRISyvc4G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLRISyvc4G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLRISyvc4G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLRISyvc4G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLRISyvc4G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLRISyvc4G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLRISyvc4G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLRISyvc4G nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLRISyvc4G nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLRISyvc4G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLRISyvc4G .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLRISyvc4G .nav-link {
  font-weight: 600!important;
}
.cid-tLRISyvc4G a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLRISyvc4G .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLRISyvc4G .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLRISyvc4G .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLRISyvc4G .navbar {
    height: 77px;
  }
  .cid-tLRISyvc4G .navbar.opened {
    height: auto;
  }
  .cid-tLRISyvc4G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLRISAtLwS {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/img-20230728-115943-313-2000x1047.jpg");
}
.cid-tLRISAtLwS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLRISAtLwS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLRISAtLwS .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tLX4B9WeSd {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLX4B9WeSd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLX4B9WeSd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLX4B9WeSd .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tZxxKvVkTB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZxxKvVkTB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxxKvVkTB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tZxxKvVkTB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZxxKvVkTB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tZxxKvVkTB .text-wrapper {
    padding: 2rem;
  }
}
.cid-tZxzT6uR3a {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZxBqEKNUL .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZxBqEKNUL .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZxBqEKNUL .nav-item:focus,
.cid-tZxBqEKNUL .nav-link:focus {
  outline: none;
}
.cid-tZxBqEKNUL .text-white:hover,
.cid-tZxBqEKNUL .text-white:active,
.cid-tZxBqEKNUL .text-white:focus {
  color: white!important;
}
.cid-tZxBqEKNUL .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZxBqEKNUL .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZxBqEKNUL .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZxBqEKNUL .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZxBqEKNUL .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZxBqEKNUL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZxBqEKNUL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZxBqEKNUL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZxBqEKNUL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZxBqEKNUL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZxBqEKNUL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZxBqEKNUL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZxBqEKNUL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZxBqEKNUL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZxBqEKNUL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZxBqEKNUL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZxBqEKNUL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZxBqEKNUL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZxBqEKNUL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZxBqEKNUL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZxBqEKNUL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZxBqEKNUL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZxBqEKNUL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZxBqEKNUL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZxBqEKNUL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZxBqEKNUL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZxBqEKNUL .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZxBqEKNUL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZxBqEKNUL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZxBqEKNUL .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZxBqEKNUL .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZxBqEKNUL .dropdown-item:hover {
  color: black!important;
}
.cid-tZxBqEKNUL .dropdown-menu {
  background-color: white!important;
}
.cid-tZxBqEKNUL .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZxBqEKNUL .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZxBqEKNUL .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZxBqEKNUL .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZxBqEKNUL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZxBqEKNUL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZxBqEKNUL .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZxBqEKNUL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZxBqEKNUL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZxBqEKNUL .collapsed {
  flex-direction: row!important;
}
.cid-tZxBqEKNUL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZxBqEKNUL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZxBqEKNUL .navbar-caption {
  font-weight: 600!important;
}
.cid-tZxBqEKNUL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZxBqEKNUL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZxBqEKNUL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZxBqEKNUL .dropdown-item.active,
.cid-tZxBqEKNUL .dropdown-item:active {
  background-color: transparent;
}
.cid-tZxBqEKNUL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZxBqEKNUL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZxBqEKNUL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZxBqEKNUL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZxBqEKNUL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZxBqEKNUL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZxBqEKNUL .navbar-buttons {
  text-align: center;
}
.cid-tZxBqEKNUL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZxBqEKNUL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZxBqEKNUL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZxBqEKNUL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZxBqEKNUL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZxBqEKNUL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZxBqEKNUL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZxBqEKNUL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZxBqEKNUL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZxBqEKNUL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZxBqEKNUL .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZxBqEKNUL .nav-link {
  font-weight: 600!important;
}
.cid-tZxBqEKNUL a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZxBqEKNUL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZxBqEKNUL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZxBqEKNUL .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZxBqEKNUL .navbar {
    height: 77px;
  }
  .cid-tZxBqEKNUL .navbar.opened {
    height: auto;
  }
  .cid-tZxBqEKNUL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZxBqIDJZa {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231013-81420-2000x1125.jpg");
}
.cid-tZxBqIDJZa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxBqIDJZa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZxBqIDJZa .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZxBqJm8NR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZxBqJm8NR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxBqJm8NR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZxBqJm8NR .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tZxBqLYbSS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZxBqLYbSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxBqLYbSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZxBqLYbSS .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZxBqLYbSS .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZxBqLYbSS .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZxBqLYbSS .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZxBqLYbSS .container {
    max-width: 100%;
  }
  .cid-tZxBqLYbSS .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZxBqLYbSS .item-wrap {
  width: 100%;
}
.cid-tZxBqLYbSS .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZxBqLYbSS .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZxBqLYbSS .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZxBqLYbSS .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZxBqLYbSS .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZxBqLYbSS .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZxBqLYbSS .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZxBqLYbSS .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZxBqLYbSS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZxBqLYbSS .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZxBqLYbSS .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZxBqLYbSS .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZxBqLYbSS .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZxBqLYbSS .col-links {
    padding-top: 20px;
  }
}
.cid-tZxBqLYbSS .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZxBqLYbSS .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZxBqLYbSS .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZxBqLYbSS .list {
    text-align: center !important;
  }
}
.cid-tZxBqLYbSS .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZxBqLYbSS .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZxBqLYbSS .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZxBqLYbSS .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZxBqLYbSS .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZxBqLYbSS .list a:hover:before {
  width: 100%;
}
.cid-tZxBqLYbSS .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZxBqLYbSS .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZxBqLYbSS .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZxBqLYbSS .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZxCSgNgPn .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZxCSgNgPn .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZxCSgNgPn .nav-item:focus,
.cid-tZxCSgNgPn .nav-link:focus {
  outline: none;
}
.cid-tZxCSgNgPn .text-white:hover,
.cid-tZxCSgNgPn .text-white:active,
.cid-tZxCSgNgPn .text-white:focus {
  color: white!important;
}
.cid-tZxCSgNgPn .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZxCSgNgPn .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZxCSgNgPn .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZxCSgNgPn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZxCSgNgPn .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZxCSgNgPn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZxCSgNgPn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZxCSgNgPn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZxCSgNgPn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZxCSgNgPn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZxCSgNgPn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZxCSgNgPn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZxCSgNgPn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZxCSgNgPn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZxCSgNgPn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZxCSgNgPn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZxCSgNgPn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZxCSgNgPn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZxCSgNgPn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZxCSgNgPn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZxCSgNgPn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZxCSgNgPn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZxCSgNgPn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZxCSgNgPn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZxCSgNgPn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZxCSgNgPn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZxCSgNgPn .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZxCSgNgPn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZxCSgNgPn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZxCSgNgPn .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZxCSgNgPn .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZxCSgNgPn .dropdown-item:hover {
  color: black!important;
}
.cid-tZxCSgNgPn .dropdown-menu {
  background-color: white!important;
}
.cid-tZxCSgNgPn .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZxCSgNgPn .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZxCSgNgPn .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZxCSgNgPn .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZxCSgNgPn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZxCSgNgPn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZxCSgNgPn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZxCSgNgPn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZxCSgNgPn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZxCSgNgPn .collapsed {
  flex-direction: row!important;
}
.cid-tZxCSgNgPn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZxCSgNgPn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZxCSgNgPn .navbar-caption {
  font-weight: 600!important;
}
.cid-tZxCSgNgPn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZxCSgNgPn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZxCSgNgPn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZxCSgNgPn .dropdown-item.active,
.cid-tZxCSgNgPn .dropdown-item:active {
  background-color: transparent;
}
.cid-tZxCSgNgPn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZxCSgNgPn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZxCSgNgPn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZxCSgNgPn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZxCSgNgPn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZxCSgNgPn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZxCSgNgPn .navbar-buttons {
  text-align: center;
}
.cid-tZxCSgNgPn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZxCSgNgPn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZxCSgNgPn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZxCSgNgPn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZxCSgNgPn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZxCSgNgPn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZxCSgNgPn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZxCSgNgPn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZxCSgNgPn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZxCSgNgPn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZxCSgNgPn .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZxCSgNgPn .nav-link {
  font-weight: 600!important;
}
.cid-tZxCSgNgPn a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZxCSgNgPn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZxCSgNgPn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZxCSgNgPn .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZxCSgNgPn .navbar {
    height: 77px;
  }
  .cid-tZxCSgNgPn .navbar.opened {
    height: auto;
  }
  .cid-tZxCSgNgPn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZxCSjYAYa {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231021-165147-2000x1125.jpg");
}
.cid-tZxCSjYAYa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxCSjYAYa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZxCSjYAYa .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZxCSmdANo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZxCSmdANo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxCSmdANo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZxCSmdANo .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tZxHTeaPGQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tZxHTeaPGQ .mbr-media {
  position: relative;
}
.cid-tZxHTeaPGQ .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-tZxHTeaPGQ .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tZxHTeaPGQ .icon-wrap:hover {
  transform: scale(1.1), translate(-50%, -50%);
}
.cid-tZxHTeaPGQ .mbr-media span {
  font-size: 4rem;
  color: #633615;
}
.cid-tZxHTeaPGQ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tZxHTeaPGQ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tZxHTeaPGQ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tZxHTeaPGQ .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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tZxHTeaPGQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tZxJTuUvaV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZxCSnZ94i {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZxCSnZ94i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZxCSnZ94i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZxCSnZ94i .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZxCSnZ94i .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZxCSnZ94i .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZxCSnZ94i .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZxCSnZ94i .container {
    max-width: 100%;
  }
  .cid-tZxCSnZ94i .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZxCSnZ94i .item-wrap {
  width: 100%;
}
.cid-tZxCSnZ94i .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZxCSnZ94i .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZxCSnZ94i .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZxCSnZ94i .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZxCSnZ94i .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZxCSnZ94i .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZxCSnZ94i .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZxCSnZ94i .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZxCSnZ94i .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZxCSnZ94i .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZxCSnZ94i .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZxCSnZ94i .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZxCSnZ94i .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZxCSnZ94i .col-links {
    padding-top: 20px;
  }
}
.cid-tZxCSnZ94i .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZxCSnZ94i .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZxCSnZ94i .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZxCSnZ94i .list {
    text-align: center !important;
  }
}
.cid-tZxCSnZ94i .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZxCSnZ94i .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZxCSnZ94i .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZxCSnZ94i .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZxCSnZ94i .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZxCSnZ94i .list a:hover:before {
  width: 100%;
}
.cid-tZxCSnZ94i .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZxCSnZ94i .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZxCSnZ94i .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZxCSnZ94i .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZzOpVkg7x .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZzOpVkg7x .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZzOpVkg7x .nav-item:focus,
.cid-tZzOpVkg7x .nav-link:focus {
  outline: none;
}
.cid-tZzOpVkg7x .text-white:hover,
.cid-tZzOpVkg7x .text-white:active,
.cid-tZzOpVkg7x .text-white:focus {
  color: white!important;
}
.cid-tZzOpVkg7x .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZzOpVkg7x .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZzOpVkg7x .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZzOpVkg7x .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZzOpVkg7x .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZzOpVkg7x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZzOpVkg7x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZzOpVkg7x .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZzOpVkg7x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZzOpVkg7x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZzOpVkg7x .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZzOpVkg7x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZzOpVkg7x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZzOpVkg7x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZzOpVkg7x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZzOpVkg7x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZzOpVkg7x .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZzOpVkg7x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZzOpVkg7x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZzOpVkg7x .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZzOpVkg7x .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZzOpVkg7x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZzOpVkg7x .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZzOpVkg7x .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZzOpVkg7x .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZzOpVkg7x .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZzOpVkg7x .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZzOpVkg7x .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZzOpVkg7x .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZzOpVkg7x .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZzOpVkg7x .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZzOpVkg7x .dropdown-item:hover {
  color: black!important;
}
.cid-tZzOpVkg7x .dropdown-menu {
  background-color: white!important;
}
.cid-tZzOpVkg7x .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZzOpVkg7x .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZzOpVkg7x .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZzOpVkg7x .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZzOpVkg7x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZzOpVkg7x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZzOpVkg7x .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZzOpVkg7x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZzOpVkg7x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZzOpVkg7x .collapsed {
  flex-direction: row!important;
}
.cid-tZzOpVkg7x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZzOpVkg7x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZzOpVkg7x .navbar-caption {
  font-weight: 600!important;
}
.cid-tZzOpVkg7x .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZzOpVkg7x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZzOpVkg7x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZzOpVkg7x .dropdown-item.active,
.cid-tZzOpVkg7x .dropdown-item:active {
  background-color: transparent;
}
.cid-tZzOpVkg7x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZzOpVkg7x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZzOpVkg7x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZzOpVkg7x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZzOpVkg7x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZzOpVkg7x ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZzOpVkg7x .navbar-buttons {
  text-align: center;
}
.cid-tZzOpVkg7x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZzOpVkg7x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZzOpVkg7x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZzOpVkg7x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZzOpVkg7x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZzOpVkg7x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZzOpVkg7x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZzOpVkg7x nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZzOpVkg7x nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZzOpVkg7x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZzOpVkg7x .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZzOpVkg7x .nav-link {
  font-weight: 600!important;
}
.cid-tZzOpVkg7x a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZzOpVkg7x .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZzOpVkg7x .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZzOpVkg7x .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZzOpVkg7x .navbar {
    height: 77px;
  }
  .cid-tZzOpVkg7x .navbar.opened {
    height: auto;
  }
  .cid-tZzOpVkg7x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZzOpYUzEY {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-531x354.jpg");
}
.cid-tZzOpYUzEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzOpYUzEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZzOpYUzEY .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZzOq0LFMD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZzOq0LFMD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzOq0LFMD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZzOq0LFMD .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tZzOq4GCeN {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZzOq4GCeN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzOq4GCeN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZzOq4GCeN .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZzOq4GCeN .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZzOq4GCeN .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZzOq4GCeN .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZzOq4GCeN .container {
    max-width: 100%;
  }
  .cid-tZzOq4GCeN .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZzOq4GCeN .item-wrap {
  width: 100%;
}
.cid-tZzOq4GCeN .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZzOq4GCeN .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZzOq4GCeN .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZzOq4GCeN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZzOq4GCeN .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZzOq4GCeN .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZzOq4GCeN .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZzOq4GCeN .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZzOq4GCeN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZzOq4GCeN .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZzOq4GCeN .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZzOq4GCeN .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZzOq4GCeN .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZzOq4GCeN .col-links {
    padding-top: 20px;
  }
}
.cid-tZzOq4GCeN .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZzOq4GCeN .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZzOq4GCeN .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZzOq4GCeN .list {
    text-align: center !important;
  }
}
.cid-tZzOq4GCeN .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZzOq4GCeN .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZzOq4GCeN .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZzOq4GCeN .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZzOq4GCeN .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZzOq4GCeN .list a:hover:before {
  width: 100%;
}
.cid-tZzOq4GCeN .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZzOq4GCeN .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZzOq4GCeN .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZzOq4GCeN .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZzR60RhrF .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZzR60RhrF .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZzR60RhrF .nav-item:focus,
.cid-tZzR60RhrF .nav-link:focus {
  outline: none;
}
.cid-tZzR60RhrF .text-white:hover,
.cid-tZzR60RhrF .text-white:active,
.cid-tZzR60RhrF .text-white:focus {
  color: white!important;
}
.cid-tZzR60RhrF .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZzR60RhrF .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZzR60RhrF .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZzR60RhrF .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZzR60RhrF .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZzR60RhrF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZzR60RhrF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZzR60RhrF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZzR60RhrF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZzR60RhrF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZzR60RhrF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZzR60RhrF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZzR60RhrF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZzR60RhrF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZzR60RhrF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZzR60RhrF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZzR60RhrF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZzR60RhrF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZzR60RhrF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZzR60RhrF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZzR60RhrF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZzR60RhrF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZzR60RhrF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZzR60RhrF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZzR60RhrF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZzR60RhrF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZzR60RhrF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZzR60RhrF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZzR60RhrF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZzR60RhrF .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZzR60RhrF .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZzR60RhrF .dropdown-item:hover {
  color: black!important;
}
.cid-tZzR60RhrF .dropdown-menu {
  background-color: white!important;
}
.cid-tZzR60RhrF .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZzR60RhrF .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZzR60RhrF .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZzR60RhrF .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZzR60RhrF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZzR60RhrF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZzR60RhrF .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZzR60RhrF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZzR60RhrF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZzR60RhrF .collapsed {
  flex-direction: row!important;
}
.cid-tZzR60RhrF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZzR60RhrF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZzR60RhrF .navbar-caption {
  font-weight: 600!important;
}
.cid-tZzR60RhrF .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZzR60RhrF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZzR60RhrF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZzR60RhrF .dropdown-item.active,
.cid-tZzR60RhrF .dropdown-item:active {
  background-color: transparent;
}
.cid-tZzR60RhrF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZzR60RhrF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZzR60RhrF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZzR60RhrF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZzR60RhrF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZzR60RhrF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZzR60RhrF .navbar-buttons {
  text-align: center;
}
.cid-tZzR60RhrF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZzR60RhrF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZzR60RhrF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZzR60RhrF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZzR60RhrF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZzR60RhrF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZzR60RhrF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZzR60RhrF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZzR60RhrF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZzR60RhrF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZzR60RhrF .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZzR60RhrF .nav-link {
  font-weight: 600!important;
}
.cid-tZzR60RhrF a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZzR60RhrF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZzR60RhrF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZzR60RhrF .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZzR60RhrF .navbar {
    height: 77px;
  }
  .cid-tZzR60RhrF .navbar.opened {
    height: auto;
  }
  .cid-tZzR60RhrF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZzR63JhP2 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/food-1256x781.jpg");
}
.cid-tZzR63JhP2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzR63JhP2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZzR63JhP2 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZzR65VsFE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZzR65VsFE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzR65VsFE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZzR65VsFE .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tZzSGHcQz1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZzSGHcQz1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzSGHcQz1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tZzSGHcQz1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZzSGHcQz1 .row {
  flex-direction: row-reverse;
}
.cid-tZzSGHcQz1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tZzSGHcQz1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tZzSNw3z8v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZzSHxrK2O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZzSHxrK2O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzSHxrK2O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tZzSHxrK2O .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZzSHxrK2O img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tZzSHxrK2O .text-wrapper {
    padding: 2rem;
  }
}
.cid-tZzR67xrIw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZzR67xrIw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzR67xrIw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZzR67xrIw .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZzR67xrIw .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZzR67xrIw .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZzR67xrIw .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZzR67xrIw .container {
    max-width: 100%;
  }
  .cid-tZzR67xrIw .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZzR67xrIw .item-wrap {
  width: 100%;
}
.cid-tZzR67xrIw .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZzR67xrIw .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZzR67xrIw .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZzR67xrIw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZzR67xrIw .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZzR67xrIw .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZzR67xrIw .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZzR67xrIw .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZzR67xrIw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZzR67xrIw .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZzR67xrIw .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZzR67xrIw .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZzR67xrIw .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZzR67xrIw .col-links {
    padding-top: 20px;
  }
}
.cid-tZzR67xrIw .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZzR67xrIw .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZzR67xrIw .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZzR67xrIw .list {
    text-align: center !important;
  }
}
.cid-tZzR67xrIw .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZzR67xrIw .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZzR67xrIw .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZzR67xrIw .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZzR67xrIw .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZzR67xrIw .list a:hover:before {
  width: 100%;
}
.cid-tZzR67xrIw .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZzR67xrIw .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZzR67xrIw .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZzR67xrIw .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZzXtuuf44 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZzXtuuf44 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZzXtuuf44 .nav-item:focus,
.cid-tZzXtuuf44 .nav-link:focus {
  outline: none;
}
.cid-tZzXtuuf44 .text-white:hover,
.cid-tZzXtuuf44 .text-white:active,
.cid-tZzXtuuf44 .text-white:focus {
  color: white!important;
}
.cid-tZzXtuuf44 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZzXtuuf44 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZzXtuuf44 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZzXtuuf44 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZzXtuuf44 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZzXtuuf44 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZzXtuuf44 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZzXtuuf44 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZzXtuuf44 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZzXtuuf44 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZzXtuuf44 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZzXtuuf44 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZzXtuuf44 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZzXtuuf44 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZzXtuuf44 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZzXtuuf44 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZzXtuuf44 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZzXtuuf44 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZzXtuuf44 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZzXtuuf44 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZzXtuuf44 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZzXtuuf44 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZzXtuuf44 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZzXtuuf44 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZzXtuuf44 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZzXtuuf44 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZzXtuuf44 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZzXtuuf44 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZzXtuuf44 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZzXtuuf44 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZzXtuuf44 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZzXtuuf44 .dropdown-item:hover {
  color: black!important;
}
.cid-tZzXtuuf44 .dropdown-menu {
  background-color: white!important;
}
.cid-tZzXtuuf44 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZzXtuuf44 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZzXtuuf44 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZzXtuuf44 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZzXtuuf44 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZzXtuuf44 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZzXtuuf44 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZzXtuuf44 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZzXtuuf44 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZzXtuuf44 .collapsed {
  flex-direction: row!important;
}
.cid-tZzXtuuf44 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZzXtuuf44 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZzXtuuf44 .navbar-caption {
  font-weight: 600!important;
}
.cid-tZzXtuuf44 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZzXtuuf44 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZzXtuuf44 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZzXtuuf44 .dropdown-item.active,
.cid-tZzXtuuf44 .dropdown-item:active {
  background-color: transparent;
}
.cid-tZzXtuuf44 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZzXtuuf44 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZzXtuuf44 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZzXtuuf44 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZzXtuuf44 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZzXtuuf44 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZzXtuuf44 .navbar-buttons {
  text-align: center;
}
.cid-tZzXtuuf44 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZzXtuuf44 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZzXtuuf44 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZzXtuuf44 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZzXtuuf44 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZzXtuuf44 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZzXtuuf44 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZzXtuuf44 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZzXtuuf44 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZzXtuuf44 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZzXtuuf44 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZzXtuuf44 .nav-link {
  font-weight: 600!important;
}
.cid-tZzXtuuf44 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZzXtuuf44 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZzXtuuf44 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZzXtuuf44 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZzXtuuf44 .navbar {
    height: 77px;
  }
  .cid-tZzXtuuf44 .navbar.opened {
    height: auto;
  }
  .cid-tZzXtuuf44 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZzXtABix4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-4-531x354.jpg");
}
.cid-tZzXtABix4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzXtABix4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZzXtABix4 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZzXtDGiQj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZzXtDGiQj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzXtDGiQj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZzXtDGiQj .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tZzXtMQriD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZzXtMQriD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZzXtMQriD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZzXtMQriD .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZzXtMQriD .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZzXtMQriD .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZzXtMQriD .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZzXtMQriD .container {
    max-width: 100%;
  }
  .cid-tZzXtMQriD .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZzXtMQriD .item-wrap {
  width: 100%;
}
.cid-tZzXtMQriD .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZzXtMQriD .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZzXtMQriD .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZzXtMQriD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZzXtMQriD .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZzXtMQriD .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZzXtMQriD .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZzXtMQriD .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZzXtMQriD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZzXtMQriD .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZzXtMQriD .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZzXtMQriD .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZzXtMQriD .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZzXtMQriD .col-links {
    padding-top: 20px;
  }
}
.cid-tZzXtMQriD .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZzXtMQriD .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZzXtMQriD .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZzXtMQriD .list {
    text-align: center !important;
  }
}
.cid-tZzXtMQriD .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZzXtMQriD .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZzXtMQriD .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZzXtMQriD .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZzXtMQriD .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZzXtMQriD .list a:hover:before {
  width: 100%;
}
.cid-tZzXtMQriD .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZzXtMQriD .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZzXtMQriD .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZzXtMQriD .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZAlPZVV96 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZAlPZVV96 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZAlPZVV96 .nav-item:focus,
.cid-tZAlPZVV96 .nav-link:focus {
  outline: none;
}
.cid-tZAlPZVV96 .text-white:hover,
.cid-tZAlPZVV96 .text-white:active,
.cid-tZAlPZVV96 .text-white:focus {
  color: white!important;
}
.cid-tZAlPZVV96 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZAlPZVV96 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZAlPZVV96 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZAlPZVV96 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZAlPZVV96 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZAlPZVV96 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZAlPZVV96 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZAlPZVV96 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZAlPZVV96 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZAlPZVV96 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZAlPZVV96 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZAlPZVV96 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZAlPZVV96 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZAlPZVV96 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZAlPZVV96 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZAlPZVV96 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZAlPZVV96 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZAlPZVV96 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZAlPZVV96 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZAlPZVV96 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZAlPZVV96 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZAlPZVV96 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZAlPZVV96 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZAlPZVV96 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZAlPZVV96 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZAlPZVV96 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZAlPZVV96 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZAlPZVV96 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZAlPZVV96 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZAlPZVV96 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZAlPZVV96 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZAlPZVV96 .dropdown-item:hover {
  color: black!important;
}
.cid-tZAlPZVV96 .dropdown-menu {
  background-color: white!important;
}
.cid-tZAlPZVV96 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZAlPZVV96 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZAlPZVV96 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZAlPZVV96 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZAlPZVV96 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZAlPZVV96 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZAlPZVV96 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZAlPZVV96 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZAlPZVV96 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZAlPZVV96 .collapsed {
  flex-direction: row!important;
}
.cid-tZAlPZVV96 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZAlPZVV96 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZAlPZVV96 .navbar-caption {
  font-weight: 600!important;
}
.cid-tZAlPZVV96 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZAlPZVV96 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZAlPZVV96 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZAlPZVV96 .dropdown-item.active,
.cid-tZAlPZVV96 .dropdown-item:active {
  background-color: transparent;
}
.cid-tZAlPZVV96 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZAlPZVV96 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZAlPZVV96 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZAlPZVV96 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZAlPZVV96 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZAlPZVV96 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZAlPZVV96 .navbar-buttons {
  text-align: center;
}
.cid-tZAlPZVV96 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZAlPZVV96 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZAlPZVV96 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZAlPZVV96 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZAlPZVV96 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZAlPZVV96 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZAlPZVV96 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZAlPZVV96 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZAlPZVV96 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZAlPZVV96 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZAlPZVV96 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZAlPZVV96 .nav-link {
  font-weight: 600!important;
}
.cid-tZAlPZVV96 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZAlPZVV96 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZAlPZVV96 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZAlPZVV96 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZAlPZVV96 .navbar {
    height: 77px;
  }
  .cid-tZAlPZVV96 .navbar.opened {
    height: auto;
  }
  .cid-tZAlPZVV96 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZAlQ29gDB {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-tZAlQ29gDB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZAlQ29gDB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZAlQ29gDB .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZAlQ29gDB .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tZAlQ29gDB .mbr-section-title,
.cid-tZAlQ29gDB .mbr-section-btn {
  color: #000000;
}
.cid-tZAlQ4cYJg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1470x980.jpg");
}
.cid-tZAlQ4cYJg .mbr-overlay {
  background: #fafafa;
  opacity: 0.9;
}
.cid-tZAlQ4cYJg .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tZAlQ4cYJg .item-content {
  background: #442916;
  transition: all 0.3s;
  border: 2px solid #442916;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tZAlQ4cYJg .item-content:hover {
  background: #000000;
  border-color: #000000;
}
@media (max-width: 767px) {
  .cid-tZAlQ4cYJg .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tZAlQ4cYJg .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #000000;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #fafafa;
}
@media (max-width: 767px) {
  .cid-tZAlQ4cYJg .img-text {
    left: 1rem;
  }
}
.cid-tZAlQ4cYJg img,
.cid-tZAlQ4cYJg .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-tZAlQ4cYJg .item:focus,
.cid-tZAlQ4cYJg span:focus {
  outline: none;
}
.cid-tZAlQ4cYJg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZAlQ4cYJg .mbr-section-title {
  color: #232323;
}
.cid-tZAlQ4cYJg .mbr-text,
.cid-tZAlQ4cYJg .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-tZAlQ4cYJg .item-title {
  text-align: left;
  color: #fafafa;
}
.cid-tZAlQ4cYJg .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tZAlQ4cYJg .mbr-section-subtitle {
  color: #633615;
}
.cid-tZAlQ5YxJM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZAlQ5YxJM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZAlQ5YxJM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZAlQ5YxJM .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZAlQ5YxJM .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZAlQ5YxJM .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZAlQ5YxJM .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZAlQ5YxJM .container {
    max-width: 100%;
  }
  .cid-tZAlQ5YxJM .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZAlQ5YxJM .item-wrap {
  width: 100%;
}
.cid-tZAlQ5YxJM .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZAlQ5YxJM .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZAlQ5YxJM .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZAlQ5YxJM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZAlQ5YxJM .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZAlQ5YxJM .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZAlQ5YxJM .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZAlQ5YxJM .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZAlQ5YxJM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZAlQ5YxJM .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZAlQ5YxJM .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZAlQ5YxJM .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZAlQ5YxJM .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZAlQ5YxJM .col-links {
    padding-top: 20px;
  }
}
.cid-tZAlQ5YxJM .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZAlQ5YxJM .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZAlQ5YxJM .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZAlQ5YxJM .list {
    text-align: center !important;
  }
}
.cid-tZAlQ5YxJM .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZAlQ5YxJM .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZAlQ5YxJM .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZAlQ5YxJM .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZAlQ5YxJM .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZAlQ5YxJM .list a:hover:before {
  width: 100%;
}
.cid-tZAlQ5YxJM .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZAlQ5YxJM .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZAlQ5YxJM .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZAlQ5YxJM .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tLIoDVKahb .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLIoDVKahb .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tLIoDVKahb .nav-item:focus,
.cid-tLIoDVKahb .nav-link:focus {
  outline: none;
}
.cid-tLIoDVKahb .text-white:hover,
.cid-tLIoDVKahb .text-white:active,
.cid-tLIoDVKahb .text-white:focus {
  color: white!important;
}
.cid-tLIoDVKahb .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLIoDVKahb .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tLIoDVKahb .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLIoDVKahb .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLIoDVKahb .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tLIoDVKahb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLIoDVKahb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLIoDVKahb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLIoDVKahb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLIoDVKahb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLIoDVKahb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLIoDVKahb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLIoDVKahb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLIoDVKahb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLIoDVKahb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLIoDVKahb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLIoDVKahb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLIoDVKahb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLIoDVKahb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLIoDVKahb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLIoDVKahb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLIoDVKahb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLIoDVKahb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLIoDVKahb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLIoDVKahb .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLIoDVKahb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLIoDVKahb .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLIoDVKahb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLIoDVKahb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLIoDVKahb .section {
  position: relative;
  overflow: visible!important;
}
.cid-tLIoDVKahb .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tLIoDVKahb .dropdown-item:hover {
  color: black!important;
}
.cid-tLIoDVKahb .dropdown-menu {
  background-color: white!important;
}
.cid-tLIoDVKahb .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tLIoDVKahb .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tLIoDVKahb .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tLIoDVKahb .nav-item .nav-link {
    position: relative;
  }
}
.cid-tLIoDVKahb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLIoDVKahb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLIoDVKahb .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tLIoDVKahb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLIoDVKahb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLIoDVKahb .collapsed {
  flex-direction: row!important;
}
.cid-tLIoDVKahb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLIoDVKahb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLIoDVKahb .navbar-caption {
  font-weight: 600!important;
}
.cid-tLIoDVKahb .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLIoDVKahb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLIoDVKahb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLIoDVKahb .dropdown-item.active,
.cid-tLIoDVKahb .dropdown-item:active {
  background-color: transparent;
}
.cid-tLIoDVKahb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLIoDVKahb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLIoDVKahb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLIoDVKahb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLIoDVKahb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLIoDVKahb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLIoDVKahb .navbar-buttons {
  text-align: center;
}
.cid-tLIoDVKahb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLIoDVKahb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tLIoDVKahb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLIoDVKahb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLIoDVKahb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLIoDVKahb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLIoDVKahb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLIoDVKahb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLIoDVKahb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLIoDVKahb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLIoDVKahb .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLIoDVKahb .nav-link {
  font-weight: 600!important;
}
.cid-tLIoDVKahb a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLIoDVKahb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLIoDVKahb .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tLIoDVKahb .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLIoDVKahb .navbar {
    height: 77px;
  }
  .cid-tLIoDVKahb .navbar.opened {
    height: auto;
  }
  .cid-tLIoDVKahb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLIoDYUDQc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/tarayou-800x450.jpg");
}
.cid-tLIoDYUDQc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLIoDYUDQc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLIoDYUDQc .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZAq9g7yxZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLIoE1utT0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLIoE1utT0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLIoE1utT0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLIoE1utT0 .mbr-section-title,
.cid-tLIoE1utT0 .mbr-section-subtitle {
  text-align: center;
}
.cid-tLIoE1utT0 .cost {
  word-break: normal;
}
.cid-tLIoE1utT0 .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tLIoE1utT0 .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tLIoE1utT0 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLIoE1utT0 .card-wrapper {
    padding: 1rem;
  }
}
.cid-tQAZunEXHT {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tQAZunEXHT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tQAZunEXHT .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tQAZunEXHT textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tQAZunEXHT .form-row {
    flex-direction: column;
  }
}
.cid-tQAZunEXHT h4 {
  margin-bottom: 2rem;
}
.cid-tQAZunEXHT .form-control,
.cid-tQAZunEXHT .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tQAZunEXHT .form-control,
.cid-tQAZunEXHT .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAZunEXHT .form-control::-webkit-input-placeholder,
.cid-tQAZunEXHT .field-input::-webkit-input-placeholder,
.cid-tQAZunEXHT .form-control::-webkit-input-placeholder,
.cid-tQAZunEXHT .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAZunEXHT .form-control:-moz-placeholder,
.cid-tQAZunEXHT .field-input:-moz-placeholder,
.cid-tQAZunEXHT .form-control:-moz-placeholder,
.cid-tQAZunEXHT .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tQAZunEXHT .form-control:hover,
.cid-tQAZunEXHT .field-input:hover,
.cid-tQAZunEXHT .form-control:focus,
.cid-tQAZunEXHT .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tQAZunEXHT .form-control:hover::-webkit-input-placeholder,
.cid-tQAZunEXHT .field-input:hover::-webkit-input-placeholder,
.cid-tQAZunEXHT .form-control:focus::-webkit-input-placeholder,
.cid-tQAZunEXHT .field-input:focus::-webkit-input-placeholder,
.cid-tQAZunEXHT .form-control:hover::-webkit-input-placeholder,
.cid-tQAZunEXHT .field-input:hover::-webkit-input-placeholder,
.cid-tQAZunEXHT .form-control:focus::-webkit-input-placeholder,
.cid-tQAZunEXHT .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tQAZunEXHT .form-control:hover:-moz-placeholder,
.cid-tQAZunEXHT .field-input:hover:-moz-placeholder,
.cid-tQAZunEXHT .form-control:focus:-moz-placeholder,
.cid-tQAZunEXHT .field-input:focus:-moz-placeholder,
.cid-tQAZunEXHT .form-control:hover:-moz-placeholder,
.cid-tQAZunEXHT .field-input:hover:-moz-placeholder,
.cid-tQAZunEXHT .form-control:focus:-moz-placeholder,
.cid-tQAZunEXHT .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tQAZunEXHT .jq-number__spin:hover,
.cid-tQAZunEXHT .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tQAZunEXHT .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tQAZunEXHT .jq-selectbox li,
.cid-tQAZunEXHT .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tQAZunEXHT .jq-selectbox li:hover,
.cid-tQAZunEXHT .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tQAZunEXHT .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tQAZunEXHT .jq-number__spin.minus:hover:after,
.cid-tQAZunEXHT .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tQAZunEXHT .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tQAZunEXHT .jq-number__spin.minus:after,
.cid-tQAZunEXHT .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tQAZunEXHT input::-webkit-clear-button {
  display: none;
}
.cid-tQAZunEXHT input::-webkit-inner-spin-button {
  display: none;
}
.cid-tQAZunEXHT input::-webkit-outer-spin-button {
  display: none;
}
.cid-tQAZunEXHT input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tQAZunEXHT H4 {
  color: #000000;
}
.cid-tOShhe2tW5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOShhe2tW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOShhe2tW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOShhe2tW5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tOShhe2tW5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tOShhe2tW5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .container {
    max-width: 100%;
  }
  .cid-tOShhe2tW5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tOShhe2tW5 .item-wrap {
  width: 100%;
}
.cid-tOShhe2tW5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tOShhe2tW5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tOShhe2tW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tOShhe2tW5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tOShhe2tW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tOShhe2tW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tOShhe2tW5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-links {
    padding-top: 20px;
  }
}
.cid-tOShhe2tW5 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tOShhe2tW5 .list {
    text-align: center !important;
  }
}
.cid-tOShhe2tW5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tOShhe2tW5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tOShhe2tW5 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tOShhe2tW5 .list a:hover:before {
  width: 100%;
}
.cid-tOShhe2tW5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tOShhe2tW5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tOShhe2tW5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tOShhe2tW5 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZAscZ9fyp .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZAscZ9fyp .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZAscZ9fyp .nav-item:focus,
.cid-tZAscZ9fyp .nav-link:focus {
  outline: none;
}
.cid-tZAscZ9fyp .text-white:hover,
.cid-tZAscZ9fyp .text-white:active,
.cid-tZAscZ9fyp .text-white:focus {
  color: white!important;
}
.cid-tZAscZ9fyp .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZAscZ9fyp .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZAscZ9fyp .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZAscZ9fyp .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZAscZ9fyp .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZAscZ9fyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZAscZ9fyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZAscZ9fyp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZAscZ9fyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZAscZ9fyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZAscZ9fyp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZAscZ9fyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZAscZ9fyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZAscZ9fyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZAscZ9fyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZAscZ9fyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZAscZ9fyp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZAscZ9fyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZAscZ9fyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZAscZ9fyp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZAscZ9fyp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZAscZ9fyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZAscZ9fyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZAscZ9fyp .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZAscZ9fyp .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZAscZ9fyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZAscZ9fyp .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZAscZ9fyp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZAscZ9fyp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZAscZ9fyp .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZAscZ9fyp .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZAscZ9fyp .dropdown-item:hover {
  color: black!important;
}
.cid-tZAscZ9fyp .dropdown-menu {
  background-color: white!important;
}
.cid-tZAscZ9fyp .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZAscZ9fyp .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZAscZ9fyp .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZAscZ9fyp .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZAscZ9fyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZAscZ9fyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZAscZ9fyp .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZAscZ9fyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZAscZ9fyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZAscZ9fyp .collapsed {
  flex-direction: row!important;
}
.cid-tZAscZ9fyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZAscZ9fyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZAscZ9fyp .navbar-caption {
  font-weight: 600!important;
}
.cid-tZAscZ9fyp .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZAscZ9fyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZAscZ9fyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZAscZ9fyp .dropdown-item.active,
.cid-tZAscZ9fyp .dropdown-item:active {
  background-color: transparent;
}
.cid-tZAscZ9fyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZAscZ9fyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZAscZ9fyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZAscZ9fyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZAscZ9fyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZAscZ9fyp ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZAscZ9fyp .navbar-buttons {
  text-align: center;
}
.cid-tZAscZ9fyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZAscZ9fyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZAscZ9fyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZAscZ9fyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZAscZ9fyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZAscZ9fyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZAscZ9fyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZAscZ9fyp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZAscZ9fyp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZAscZ9fyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZAscZ9fyp .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZAscZ9fyp .nav-link {
  font-weight: 600!important;
}
.cid-tZAscZ9fyp a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZAscZ9fyp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZAscZ9fyp .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZAscZ9fyp .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZAscZ9fyp .navbar {
    height: 77px;
  }
  .cid-tZAscZ9fyp .navbar.opened {
    height: auto;
  }
  .cid-tZAscZ9fyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZAsd0WSHI {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/tht-856x521.jpg");
}
.cid-tZAsd0WSHI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZAsd0WSHI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZAsd0WSHI .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZAsd2pFN4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZAsd3aSEU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZAsd3aSEU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZAsd3aSEU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZAsd3aSEU .mbr-section-title,
.cid-tZAsd3aSEU .mbr-section-subtitle {
  text-align: center;
}
.cid-tZAsd3aSEU .cost {
  word-break: normal;
}
.cid-tZAsd3aSEU .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZAsd3aSEU .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZAsd3aSEU .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZAsd3aSEU .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZAsd4mEv7 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZAsd4mEv7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZAsd4mEv7 .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZAsd4mEv7 textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZAsd4mEv7 .form-row {
    flex-direction: column;
  }
}
.cid-tZAsd4mEv7 h4 {
  margin-bottom: 2rem;
}
.cid-tZAsd4mEv7 .form-control,
.cid-tZAsd4mEv7 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZAsd4mEv7 .form-control,
.cid-tZAsd4mEv7 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZAsd4mEv7 .form-control::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .field-input::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .form-control::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZAsd4mEv7 .form-control:-moz-placeholder,
.cid-tZAsd4mEv7 .field-input:-moz-placeholder,
.cid-tZAsd4mEv7 .form-control:-moz-placeholder,
.cid-tZAsd4mEv7 .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZAsd4mEv7 .form-control:hover,
.cid-tZAsd4mEv7 .field-input:hover,
.cid-tZAsd4mEv7 .form-control:focus,
.cid-tZAsd4mEv7 .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZAsd4mEv7 .form-control:hover::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .field-input:hover::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .form-control:focus::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .field-input:focus::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .form-control:hover::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .field-input:hover::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .form-control:focus::-webkit-input-placeholder,
.cid-tZAsd4mEv7 .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZAsd4mEv7 .form-control:hover:-moz-placeholder,
.cid-tZAsd4mEv7 .field-input:hover:-moz-placeholder,
.cid-tZAsd4mEv7 .form-control:focus:-moz-placeholder,
.cid-tZAsd4mEv7 .field-input:focus:-moz-placeholder,
.cid-tZAsd4mEv7 .form-control:hover:-moz-placeholder,
.cid-tZAsd4mEv7 .field-input:hover:-moz-placeholder,
.cid-tZAsd4mEv7 .form-control:focus:-moz-placeholder,
.cid-tZAsd4mEv7 .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZAsd4mEv7 .jq-number__spin:hover,
.cid-tZAsd4mEv7 .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZAsd4mEv7 .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZAsd4mEv7 .jq-selectbox li,
.cid-tZAsd4mEv7 .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZAsd4mEv7 .jq-selectbox li:hover,
.cid-tZAsd4mEv7 .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZAsd4mEv7 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZAsd4mEv7 .jq-number__spin.minus:hover:after,
.cid-tZAsd4mEv7 .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZAsd4mEv7 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZAsd4mEv7 .jq-number__spin.minus:after,
.cid-tZAsd4mEv7 .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZAsd4mEv7 input::-webkit-clear-button {
  display: none;
}
.cid-tZAsd4mEv7 input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZAsd4mEv7 input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZAsd4mEv7 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZAsd4mEv7 H4 {
  color: #000000;
}
.cid-tZAsd7St4s {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZAsd7St4s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZAsd7St4s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZAsd7St4s .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZAsd7St4s .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZAsd7St4s .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZAsd7St4s .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZAsd7St4s .container {
    max-width: 100%;
  }
  .cid-tZAsd7St4s .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZAsd7St4s .item-wrap {
  width: 100%;
}
.cid-tZAsd7St4s .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZAsd7St4s .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZAsd7St4s .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZAsd7St4s .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZAsd7St4s .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZAsd7St4s .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZAsd7St4s .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZAsd7St4s .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZAsd7St4s .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZAsd7St4s .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZAsd7St4s .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZAsd7St4s .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZAsd7St4s .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZAsd7St4s .col-links {
    padding-top: 20px;
  }
}
.cid-tZAsd7St4s .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZAsd7St4s .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZAsd7St4s .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZAsd7St4s .list {
    text-align: center !important;
  }
}
.cid-tZAsd7St4s .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZAsd7St4s .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZAsd7St4s .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZAsd7St4s .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZAsd7St4s .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZAsd7St4s .list a:hover:before {
  width: 100%;
}
.cid-tZAsd7St4s .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZAsd7St4s .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZAsd7St4s .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZAsd7St4s .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZAtSyzWdG .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZAtSyzWdG .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZAtSyzWdG .nav-item:focus,
.cid-tZAtSyzWdG .nav-link:focus {
  outline: none;
}
.cid-tZAtSyzWdG .text-white:hover,
.cid-tZAtSyzWdG .text-white:active,
.cid-tZAtSyzWdG .text-white:focus {
  color: white!important;
}
.cid-tZAtSyzWdG .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZAtSyzWdG .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZAtSyzWdG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZAtSyzWdG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZAtSyzWdG .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZAtSyzWdG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZAtSyzWdG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZAtSyzWdG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZAtSyzWdG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZAtSyzWdG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZAtSyzWdG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZAtSyzWdG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZAtSyzWdG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZAtSyzWdG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZAtSyzWdG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZAtSyzWdG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZAtSyzWdG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZAtSyzWdG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZAtSyzWdG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZAtSyzWdG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZAtSyzWdG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZAtSyzWdG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZAtSyzWdG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZAtSyzWdG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZAtSyzWdG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZAtSyzWdG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZAtSyzWdG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZAtSyzWdG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZAtSyzWdG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZAtSyzWdG .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZAtSyzWdG .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZAtSyzWdG .dropdown-item:hover {
  color: black!important;
}
.cid-tZAtSyzWdG .dropdown-menu {
  background-color: white!important;
}
.cid-tZAtSyzWdG .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZAtSyzWdG .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZAtSyzWdG .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZAtSyzWdG .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZAtSyzWdG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZAtSyzWdG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZAtSyzWdG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZAtSyzWdG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZAtSyzWdG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZAtSyzWdG .collapsed {
  flex-direction: row!important;
}
.cid-tZAtSyzWdG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZAtSyzWdG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZAtSyzWdG .navbar-caption {
  font-weight: 600!important;
}
.cid-tZAtSyzWdG .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZAtSyzWdG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZAtSyzWdG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZAtSyzWdG .dropdown-item.active,
.cid-tZAtSyzWdG .dropdown-item:active {
  background-color: transparent;
}
.cid-tZAtSyzWdG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZAtSyzWdG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZAtSyzWdG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZAtSyzWdG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZAtSyzWdG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZAtSyzWdG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZAtSyzWdG .navbar-buttons {
  text-align: center;
}
.cid-tZAtSyzWdG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZAtSyzWdG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZAtSyzWdG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZAtSyzWdG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZAtSyzWdG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZAtSyzWdG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZAtSyzWdG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZAtSyzWdG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZAtSyzWdG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZAtSyzWdG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZAtSyzWdG .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZAtSyzWdG .nav-link {
  font-weight: 600!important;
}
.cid-tZAtSyzWdG a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZAtSyzWdG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZAtSyzWdG .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZAtSyzWdG .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZAtSyzWdG .navbar {
    height: 77px;
  }
  .cid-tZAtSyzWdG .navbar.opened {
    height: auto;
  }
  .cid-tZAtSyzWdG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZAtSAMEId {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/y-1024x504.jpg");
}
.cid-tZAtSAMEId .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZAtSAMEId .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZAtSAMEId .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZAtSC04Hy {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZAtSD7MXk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZAtSD7MXk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZAtSD7MXk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZAtSD7MXk .mbr-section-title,
.cid-tZAtSD7MXk .mbr-section-subtitle {
  text-align: center;
}
.cid-tZAtSD7MXk .cost {
  word-break: normal;
}
.cid-tZAtSD7MXk .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZAtSD7MXk .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZAtSD7MXk .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZAtSD7MXk .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZAtSEMJEJ {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZAtSEMJEJ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZAtSEMJEJ .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZAtSEMJEJ textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZAtSEMJEJ .form-row {
    flex-direction: column;
  }
}
.cid-tZAtSEMJEJ h4 {
  margin-bottom: 2rem;
}
.cid-tZAtSEMJEJ .form-control,
.cid-tZAtSEMJEJ .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZAtSEMJEJ .form-control,
.cid-tZAtSEMJEJ .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZAtSEMJEJ .form-control::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .field-input::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .form-control::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZAtSEMJEJ .form-control:-moz-placeholder,
.cid-tZAtSEMJEJ .field-input:-moz-placeholder,
.cid-tZAtSEMJEJ .form-control:-moz-placeholder,
.cid-tZAtSEMJEJ .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZAtSEMJEJ .form-control:hover,
.cid-tZAtSEMJEJ .field-input:hover,
.cid-tZAtSEMJEJ .form-control:focus,
.cid-tZAtSEMJEJ .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZAtSEMJEJ .form-control:hover::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .field-input:hover::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .form-control:focus::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .field-input:focus::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .form-control:hover::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .field-input:hover::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .form-control:focus::-webkit-input-placeholder,
.cid-tZAtSEMJEJ .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZAtSEMJEJ .form-control:hover:-moz-placeholder,
.cid-tZAtSEMJEJ .field-input:hover:-moz-placeholder,
.cid-tZAtSEMJEJ .form-control:focus:-moz-placeholder,
.cid-tZAtSEMJEJ .field-input:focus:-moz-placeholder,
.cid-tZAtSEMJEJ .form-control:hover:-moz-placeholder,
.cid-tZAtSEMJEJ .field-input:hover:-moz-placeholder,
.cid-tZAtSEMJEJ .form-control:focus:-moz-placeholder,
.cid-tZAtSEMJEJ .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZAtSEMJEJ .jq-number__spin:hover,
.cid-tZAtSEMJEJ .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZAtSEMJEJ .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZAtSEMJEJ .jq-selectbox li,
.cid-tZAtSEMJEJ .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZAtSEMJEJ .jq-selectbox li:hover,
.cid-tZAtSEMJEJ .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZAtSEMJEJ .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZAtSEMJEJ .jq-number__spin.minus:hover:after,
.cid-tZAtSEMJEJ .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZAtSEMJEJ .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZAtSEMJEJ .jq-number__spin.minus:after,
.cid-tZAtSEMJEJ .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZAtSEMJEJ input::-webkit-clear-button {
  display: none;
}
.cid-tZAtSEMJEJ input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZAtSEMJEJ input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZAtSEMJEJ input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZAtSEMJEJ H4 {
  color: #000000;
}
.cid-tZAtSIFzHe {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZAtSIFzHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZAtSIFzHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZAtSIFzHe .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZAtSIFzHe .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZAtSIFzHe .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZAtSIFzHe .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZAtSIFzHe .container {
    max-width: 100%;
  }
  .cid-tZAtSIFzHe .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZAtSIFzHe .item-wrap {
  width: 100%;
}
.cid-tZAtSIFzHe .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZAtSIFzHe .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZAtSIFzHe .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZAtSIFzHe .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZAtSIFzHe .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZAtSIFzHe .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZAtSIFzHe .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZAtSIFzHe .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZAtSIFzHe .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZAtSIFzHe .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZAtSIFzHe .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZAtSIFzHe .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZAtSIFzHe .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZAtSIFzHe .col-links {
    padding-top: 20px;
  }
}
.cid-tZAtSIFzHe .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZAtSIFzHe .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZAtSIFzHe .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZAtSIFzHe .list {
    text-align: center !important;
  }
}
.cid-tZAtSIFzHe .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZAtSIFzHe .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZAtSIFzHe .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZAtSIFzHe .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZAtSIFzHe .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZAtSIFzHe .list a:hover:before {
  width: 100%;
}
.cid-tZAtSIFzHe .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZAtSIFzHe .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZAtSIFzHe .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZAtSIFzHe .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZDPvzlnPY .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZDPvzlnPY .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZDPvzlnPY .nav-item:focus,
.cid-tZDPvzlnPY .nav-link:focus {
  outline: none;
}
.cid-tZDPvzlnPY .text-white:hover,
.cid-tZDPvzlnPY .text-white:active,
.cid-tZDPvzlnPY .text-white:focus {
  color: white!important;
}
.cid-tZDPvzlnPY .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZDPvzlnPY .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZDPvzlnPY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZDPvzlnPY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZDPvzlnPY .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZDPvzlnPY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZDPvzlnPY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZDPvzlnPY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZDPvzlnPY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZDPvzlnPY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZDPvzlnPY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZDPvzlnPY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZDPvzlnPY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZDPvzlnPY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZDPvzlnPY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZDPvzlnPY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZDPvzlnPY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZDPvzlnPY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZDPvzlnPY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZDPvzlnPY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZDPvzlnPY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZDPvzlnPY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZDPvzlnPY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZDPvzlnPY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZDPvzlnPY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZDPvzlnPY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZDPvzlnPY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZDPvzlnPY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZDPvzlnPY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZDPvzlnPY .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZDPvzlnPY .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZDPvzlnPY .dropdown-item:hover {
  color: black!important;
}
.cid-tZDPvzlnPY .dropdown-menu {
  background-color: white!important;
}
.cid-tZDPvzlnPY .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZDPvzlnPY .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZDPvzlnPY .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZDPvzlnPY .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZDPvzlnPY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZDPvzlnPY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZDPvzlnPY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZDPvzlnPY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZDPvzlnPY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZDPvzlnPY .collapsed {
  flex-direction: row!important;
}
.cid-tZDPvzlnPY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZDPvzlnPY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZDPvzlnPY .navbar-caption {
  font-weight: 600!important;
}
.cid-tZDPvzlnPY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZDPvzlnPY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZDPvzlnPY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZDPvzlnPY .dropdown-item.active,
.cid-tZDPvzlnPY .dropdown-item:active {
  background-color: transparent;
}
.cid-tZDPvzlnPY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZDPvzlnPY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZDPvzlnPY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZDPvzlnPY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZDPvzlnPY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZDPvzlnPY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZDPvzlnPY .navbar-buttons {
  text-align: center;
}
.cid-tZDPvzlnPY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZDPvzlnPY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZDPvzlnPY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZDPvzlnPY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZDPvzlnPY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZDPvzlnPY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZDPvzlnPY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZDPvzlnPY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZDPvzlnPY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZDPvzlnPY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZDPvzlnPY .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZDPvzlnPY .nav-link {
  font-weight: 600!important;
}
.cid-tZDPvzlnPY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZDPvzlnPY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZDPvzlnPY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZDPvzlnPY .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZDPvzlnPY .navbar {
    height: 77px;
  }
  .cid-tZDPvzlnPY .navbar.opened {
    height: auto;
  }
  .cid-tZDPvzlnPY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZDPvCdK3U {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-tZDPvCdK3U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPvCdK3U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPvCdK3U .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZDPvCdK3U .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tZDPvCdK3U .mbr-section-title,
.cid-tZDPvCdK3U .mbr-section-btn {
  color: #000000;
}
.cid-tZDPvDajBs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1470x980.jpg");
}
.cid-tZDPvDajBs .mbr-overlay {
  background: #fafafa;
  opacity: 0.9;
}
.cid-tZDPvDajBs .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tZDPvDajBs .item-content {
  background: #442916;
  transition: all 0.3s;
  border: 2px solid #442916;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tZDPvDajBs .item-content:hover {
  background: #000000;
  border-color: #000000;
}
@media (max-width: 767px) {
  .cid-tZDPvDajBs .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tZDPvDajBs .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #000000;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #fafafa;
}
@media (max-width: 767px) {
  .cid-tZDPvDajBs .img-text {
    left: 1rem;
  }
}
.cid-tZDPvDajBs img,
.cid-tZDPvDajBs .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-tZDPvDajBs .item:focus,
.cid-tZDPvDajBs span:focus {
  outline: none;
}
.cid-tZDPvDajBs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZDPvDajBs .mbr-section-title {
  color: #232323;
}
.cid-tZDPvDajBs .mbr-text,
.cid-tZDPvDajBs .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-tZDPvDajBs .item-title {
  text-align: left;
  color: #fafafa;
}
.cid-tZDPvDajBs .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tZDPvDajBs .mbr-section-subtitle {
  color: #633615;
}
.cid-tZDPvEc67F {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZDPvEc67F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPvEc67F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPvEc67F .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZDPvEc67F .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZDPvEc67F .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZDPvEc67F .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZDPvEc67F .container {
    max-width: 100%;
  }
  .cid-tZDPvEc67F .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZDPvEc67F .item-wrap {
  width: 100%;
}
.cid-tZDPvEc67F .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZDPvEc67F .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZDPvEc67F .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZDPvEc67F .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZDPvEc67F .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZDPvEc67F .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZDPvEc67F .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZDPvEc67F .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZDPvEc67F .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZDPvEc67F .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZDPvEc67F .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZDPvEc67F .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZDPvEc67F .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZDPvEc67F .col-links {
    padding-top: 20px;
  }
}
.cid-tZDPvEc67F .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZDPvEc67F .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZDPvEc67F .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZDPvEc67F .list {
    text-align: center !important;
  }
}
.cid-tZDPvEc67F .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZDPvEc67F .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZDPvEc67F .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZDPvEc67F .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZDPvEc67F .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZDPvEc67F .list a:hover:before {
  width: 100%;
}
.cid-tZDPvEc67F .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZDPvEc67F .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZDPvEc67F .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZDPvEc67F .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZDRpNF6Qt .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZDRpNF6Qt .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZDRpNF6Qt .nav-item:focus,
.cid-tZDRpNF6Qt .nav-link:focus {
  outline: none;
}
.cid-tZDRpNF6Qt .text-white:hover,
.cid-tZDRpNF6Qt .text-white:active,
.cid-tZDRpNF6Qt .text-white:focus {
  color: white!important;
}
.cid-tZDRpNF6Qt .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZDRpNF6Qt .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZDRpNF6Qt .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZDRpNF6Qt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZDRpNF6Qt .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZDRpNF6Qt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZDRpNF6Qt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZDRpNF6Qt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZDRpNF6Qt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZDRpNF6Qt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZDRpNF6Qt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZDRpNF6Qt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZDRpNF6Qt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZDRpNF6Qt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZDRpNF6Qt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZDRpNF6Qt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZDRpNF6Qt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZDRpNF6Qt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZDRpNF6Qt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZDRpNF6Qt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZDRpNF6Qt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZDRpNF6Qt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZDRpNF6Qt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZDRpNF6Qt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZDRpNF6Qt .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZDRpNF6Qt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZDRpNF6Qt .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZDRpNF6Qt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZDRpNF6Qt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZDRpNF6Qt .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZDRpNF6Qt .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZDRpNF6Qt .dropdown-item:hover {
  color: black!important;
}
.cid-tZDRpNF6Qt .dropdown-menu {
  background-color: white!important;
}
.cid-tZDRpNF6Qt .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZDRpNF6Qt .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZDRpNF6Qt .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZDRpNF6Qt .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZDRpNF6Qt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZDRpNF6Qt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZDRpNF6Qt .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZDRpNF6Qt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZDRpNF6Qt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZDRpNF6Qt .collapsed {
  flex-direction: row!important;
}
.cid-tZDRpNF6Qt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZDRpNF6Qt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZDRpNF6Qt .navbar-caption {
  font-weight: 600!important;
}
.cid-tZDRpNF6Qt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZDRpNF6Qt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZDRpNF6Qt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZDRpNF6Qt .dropdown-item.active,
.cid-tZDRpNF6Qt .dropdown-item:active {
  background-color: transparent;
}
.cid-tZDRpNF6Qt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZDRpNF6Qt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZDRpNF6Qt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZDRpNF6Qt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZDRpNF6Qt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZDRpNF6Qt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZDRpNF6Qt .navbar-buttons {
  text-align: center;
}
.cid-tZDRpNF6Qt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZDRpNF6Qt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZDRpNF6Qt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZDRpNF6Qt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZDRpNF6Qt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZDRpNF6Qt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZDRpNF6Qt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZDRpNF6Qt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZDRpNF6Qt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZDRpNF6Qt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZDRpNF6Qt .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZDRpNF6Qt .nav-link {
  font-weight: 600!important;
}
.cid-tZDRpNF6Qt a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZDRpNF6Qt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZDRpNF6Qt .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZDRpNF6Qt .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZDRpNF6Qt .navbar {
    height: 77px;
  }
  .cid-tZDRpNF6Qt .navbar.opened {
    height: auto;
  }
  .cid-tZDRpNF6Qt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZDRpOR7Ab {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/12-990x490.jpg");
}
.cid-tZDRpOR7Ab .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDRpOR7Ab .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDRpOR7Ab .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZDRpPHtpN {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZDRpR1oMM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZDRpR1oMM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDRpR1oMM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDRpR1oMM .mbr-section-title,
.cid-tZDRpR1oMM .mbr-section-subtitle {
  text-align: center;
}
.cid-tZDRpR1oMM .cost {
  word-break: normal;
}
.cid-tZDRpR1oMM .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZDRpR1oMM .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZDRpR1oMM .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZDRpR1oMM .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZDRpU1DeG {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZDRpU1DeG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZDRpU1DeG .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZDRpU1DeG textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZDRpU1DeG .form-row {
    flex-direction: column;
  }
}
.cid-tZDRpU1DeG h4 {
  margin-bottom: 2rem;
}
.cid-tZDRpU1DeG .form-control,
.cid-tZDRpU1DeG .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZDRpU1DeG .form-control,
.cid-tZDRpU1DeG .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZDRpU1DeG .form-control::-webkit-input-placeholder,
.cid-tZDRpU1DeG .field-input::-webkit-input-placeholder,
.cid-tZDRpU1DeG .form-control::-webkit-input-placeholder,
.cid-tZDRpU1DeG .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZDRpU1DeG .form-control:-moz-placeholder,
.cid-tZDRpU1DeG .field-input:-moz-placeholder,
.cid-tZDRpU1DeG .form-control:-moz-placeholder,
.cid-tZDRpU1DeG .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZDRpU1DeG .form-control:hover,
.cid-tZDRpU1DeG .field-input:hover,
.cid-tZDRpU1DeG .form-control:focus,
.cid-tZDRpU1DeG .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZDRpU1DeG .form-control:hover::-webkit-input-placeholder,
.cid-tZDRpU1DeG .field-input:hover::-webkit-input-placeholder,
.cid-tZDRpU1DeG .form-control:focus::-webkit-input-placeholder,
.cid-tZDRpU1DeG .field-input:focus::-webkit-input-placeholder,
.cid-tZDRpU1DeG .form-control:hover::-webkit-input-placeholder,
.cid-tZDRpU1DeG .field-input:hover::-webkit-input-placeholder,
.cid-tZDRpU1DeG .form-control:focus::-webkit-input-placeholder,
.cid-tZDRpU1DeG .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZDRpU1DeG .form-control:hover:-moz-placeholder,
.cid-tZDRpU1DeG .field-input:hover:-moz-placeholder,
.cid-tZDRpU1DeG .form-control:focus:-moz-placeholder,
.cid-tZDRpU1DeG .field-input:focus:-moz-placeholder,
.cid-tZDRpU1DeG .form-control:hover:-moz-placeholder,
.cid-tZDRpU1DeG .field-input:hover:-moz-placeholder,
.cid-tZDRpU1DeG .form-control:focus:-moz-placeholder,
.cid-tZDRpU1DeG .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZDRpU1DeG .jq-number__spin:hover,
.cid-tZDRpU1DeG .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZDRpU1DeG .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZDRpU1DeG .jq-selectbox li,
.cid-tZDRpU1DeG .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZDRpU1DeG .jq-selectbox li:hover,
.cid-tZDRpU1DeG .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZDRpU1DeG .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZDRpU1DeG .jq-number__spin.minus:hover:after,
.cid-tZDRpU1DeG .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZDRpU1DeG .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZDRpU1DeG .jq-number__spin.minus:after,
.cid-tZDRpU1DeG .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZDRpU1DeG input::-webkit-clear-button {
  display: none;
}
.cid-tZDRpU1DeG input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZDRpU1DeG input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZDRpU1DeG input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZDRpU1DeG H4 {
  color: #000000;
}
.cid-tZDRpZVhBS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZDRpZVhBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDRpZVhBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDRpZVhBS .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZDRpZVhBS .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZDRpZVhBS .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZDRpZVhBS .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZDRpZVhBS .container {
    max-width: 100%;
  }
  .cid-tZDRpZVhBS .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZDRpZVhBS .item-wrap {
  width: 100%;
}
.cid-tZDRpZVhBS .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZDRpZVhBS .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZDRpZVhBS .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZDRpZVhBS .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZDRpZVhBS .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZDRpZVhBS .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZDRpZVhBS .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZDRpZVhBS .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZDRpZVhBS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZDRpZVhBS .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZDRpZVhBS .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZDRpZVhBS .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZDRpZVhBS .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZDRpZVhBS .col-links {
    padding-top: 20px;
  }
}
.cid-tZDRpZVhBS .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZDRpZVhBS .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZDRpZVhBS .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZDRpZVhBS .list {
    text-align: center !important;
  }
}
.cid-tZDRpZVhBS .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZDRpZVhBS .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZDRpZVhBS .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZDRpZVhBS .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZDRpZVhBS .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZDRpZVhBS .list a:hover:before {
  width: 100%;
}
.cid-tZDRpZVhBS .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZDRpZVhBS .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZDRpZVhBS .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZDRpZVhBS .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZE2GJXIIk .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE2GJXIIk .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZE2GJXIIk .nav-item:focus,
.cid-tZE2GJXIIk .nav-link:focus {
  outline: none;
}
.cid-tZE2GJXIIk .text-white:hover,
.cid-tZE2GJXIIk .text-white:active,
.cid-tZE2GJXIIk .text-white:focus {
  color: white!important;
}
.cid-tZE2GJXIIk .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZE2GJXIIk .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZE2GJXIIk .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZE2GJXIIk .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZE2GJXIIk .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZE2GJXIIk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZE2GJXIIk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZE2GJXIIk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZE2GJXIIk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZE2GJXIIk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZE2GJXIIk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZE2GJXIIk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZE2GJXIIk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZE2GJXIIk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZE2GJXIIk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZE2GJXIIk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZE2GJXIIk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZE2GJXIIk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZE2GJXIIk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZE2GJXIIk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZE2GJXIIk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZE2GJXIIk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZE2GJXIIk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZE2GJXIIk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZE2GJXIIk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZE2GJXIIk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZE2GJXIIk .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZE2GJXIIk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZE2GJXIIk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZE2GJXIIk .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZE2GJXIIk .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZE2GJXIIk .dropdown-item:hover {
  color: black!important;
}
.cid-tZE2GJXIIk .dropdown-menu {
  background-color: white!important;
}
.cid-tZE2GJXIIk .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZE2GJXIIk .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE2GJXIIk .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZE2GJXIIk .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZE2GJXIIk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE2GJXIIk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZE2GJXIIk .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZE2GJXIIk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZE2GJXIIk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE2GJXIIk .collapsed {
  flex-direction: row!important;
}
.cid-tZE2GJXIIk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZE2GJXIIk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZE2GJXIIk .navbar-caption {
  font-weight: 600!important;
}
.cid-tZE2GJXIIk .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZE2GJXIIk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZE2GJXIIk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZE2GJXIIk .dropdown-item.active,
.cid-tZE2GJXIIk .dropdown-item:active {
  background-color: transparent;
}
.cid-tZE2GJXIIk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZE2GJXIIk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZE2GJXIIk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZE2GJXIIk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZE2GJXIIk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZE2GJXIIk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZE2GJXIIk .navbar-buttons {
  text-align: center;
}
.cid-tZE2GJXIIk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZE2GJXIIk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZE2GJXIIk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZE2GJXIIk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE2GJXIIk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE2GJXIIk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZE2GJXIIk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE2GJXIIk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZE2GJXIIk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZE2GJXIIk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE2GJXIIk .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZE2GJXIIk .nav-link {
  font-weight: 600!important;
}
.cid-tZE2GJXIIk a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZE2GJXIIk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZE2GJXIIk .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZE2GJXIIk .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZE2GJXIIk .navbar {
    height: 77px;
  }
  .cid-tZE2GJXIIk .navbar.opened {
    height: auto;
  }
  .cid-tZE2GJXIIk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZE2GNK6lZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pe-1-982x457.jpg");
}
.cid-tZE2GNK6lZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE2GNK6lZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE2GNK6lZ .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZE2GP3A6V {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZE2GQ3RS9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZE2GQ3RS9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE2GQ3RS9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE2GQ3RS9 .mbr-section-title,
.cid-tZE2GQ3RS9 .mbr-section-subtitle {
  text-align: center;
}
.cid-tZE2GQ3RS9 .cost {
  word-break: normal;
}
.cid-tZE2GQ3RS9 .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZE2GQ3RS9 .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZE2GQ3RS9 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZE2GQ3RS9 .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZE2GRLkii {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZE2GRLkii .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZE2GRLkii .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZE2GRLkii textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZE2GRLkii .form-row {
    flex-direction: column;
  }
}
.cid-tZE2GRLkii h4 {
  margin-bottom: 2rem;
}
.cid-tZE2GRLkii .form-control,
.cid-tZE2GRLkii .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZE2GRLkii .form-control,
.cid-tZE2GRLkii .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZE2GRLkii .form-control::-webkit-input-placeholder,
.cid-tZE2GRLkii .field-input::-webkit-input-placeholder,
.cid-tZE2GRLkii .form-control::-webkit-input-placeholder,
.cid-tZE2GRLkii .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZE2GRLkii .form-control:-moz-placeholder,
.cid-tZE2GRLkii .field-input:-moz-placeholder,
.cid-tZE2GRLkii .form-control:-moz-placeholder,
.cid-tZE2GRLkii .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZE2GRLkii .form-control:hover,
.cid-tZE2GRLkii .field-input:hover,
.cid-tZE2GRLkii .form-control:focus,
.cid-tZE2GRLkii .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZE2GRLkii .form-control:hover::-webkit-input-placeholder,
.cid-tZE2GRLkii .field-input:hover::-webkit-input-placeholder,
.cid-tZE2GRLkii .form-control:focus::-webkit-input-placeholder,
.cid-tZE2GRLkii .field-input:focus::-webkit-input-placeholder,
.cid-tZE2GRLkii .form-control:hover::-webkit-input-placeholder,
.cid-tZE2GRLkii .field-input:hover::-webkit-input-placeholder,
.cid-tZE2GRLkii .form-control:focus::-webkit-input-placeholder,
.cid-tZE2GRLkii .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZE2GRLkii .form-control:hover:-moz-placeholder,
.cid-tZE2GRLkii .field-input:hover:-moz-placeholder,
.cid-tZE2GRLkii .form-control:focus:-moz-placeholder,
.cid-tZE2GRLkii .field-input:focus:-moz-placeholder,
.cid-tZE2GRLkii .form-control:hover:-moz-placeholder,
.cid-tZE2GRLkii .field-input:hover:-moz-placeholder,
.cid-tZE2GRLkii .form-control:focus:-moz-placeholder,
.cid-tZE2GRLkii .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZE2GRLkii .jq-number__spin:hover,
.cid-tZE2GRLkii .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZE2GRLkii .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZE2GRLkii .jq-selectbox li,
.cid-tZE2GRLkii .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZE2GRLkii .jq-selectbox li:hover,
.cid-tZE2GRLkii .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZE2GRLkii .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZE2GRLkii .jq-number__spin.minus:hover:after,
.cid-tZE2GRLkii .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZE2GRLkii .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZE2GRLkii .jq-number__spin.minus:after,
.cid-tZE2GRLkii .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZE2GRLkii input::-webkit-clear-button {
  display: none;
}
.cid-tZE2GRLkii input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZE2GRLkii input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZE2GRLkii input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZE2GRLkii H4 {
  color: #000000;
}
.cid-tZE2GWtu11 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZE2GWtu11 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE2GWtu11 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE2GWtu11 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZE2GWtu11 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZE2GWtu11 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZE2GWtu11 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZE2GWtu11 .container {
    max-width: 100%;
  }
  .cid-tZE2GWtu11 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZE2GWtu11 .item-wrap {
  width: 100%;
}
.cid-tZE2GWtu11 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZE2GWtu11 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZE2GWtu11 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZE2GWtu11 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE2GWtu11 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZE2GWtu11 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE2GWtu11 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZE2GWtu11 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZE2GWtu11 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZE2GWtu11 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZE2GWtu11 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZE2GWtu11 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZE2GWtu11 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZE2GWtu11 .col-links {
    padding-top: 20px;
  }
}
.cid-tZE2GWtu11 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZE2GWtu11 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZE2GWtu11 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZE2GWtu11 .list {
    text-align: center !important;
  }
}
.cid-tZE2GWtu11 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZE2GWtu11 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZE2GWtu11 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZE2GWtu11 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZE2GWtu11 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZE2GWtu11 .list a:hover:before {
  width: 100%;
}
.cid-tZE2GWtu11 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZE2GWtu11 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZE2GWtu11 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZE2GWtu11 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZE1JLwM7s .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE1JLwM7s .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZE1JLwM7s .nav-item:focus,
.cid-tZE1JLwM7s .nav-link:focus {
  outline: none;
}
.cid-tZE1JLwM7s .text-white:hover,
.cid-tZE1JLwM7s .text-white:active,
.cid-tZE1JLwM7s .text-white:focus {
  color: white!important;
}
.cid-tZE1JLwM7s .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZE1JLwM7s .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZE1JLwM7s .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZE1JLwM7s .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZE1JLwM7s .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZE1JLwM7s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZE1JLwM7s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZE1JLwM7s .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZE1JLwM7s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZE1JLwM7s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZE1JLwM7s .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZE1JLwM7s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZE1JLwM7s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZE1JLwM7s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZE1JLwM7s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZE1JLwM7s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZE1JLwM7s .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZE1JLwM7s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZE1JLwM7s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZE1JLwM7s .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZE1JLwM7s .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZE1JLwM7s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZE1JLwM7s .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZE1JLwM7s .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZE1JLwM7s .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZE1JLwM7s .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZE1JLwM7s .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZE1JLwM7s .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZE1JLwM7s .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZE1JLwM7s .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZE1JLwM7s .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZE1JLwM7s .dropdown-item:hover {
  color: black!important;
}
.cid-tZE1JLwM7s .dropdown-menu {
  background-color: white!important;
}
.cid-tZE1JLwM7s .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZE1JLwM7s .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE1JLwM7s .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZE1JLwM7s .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZE1JLwM7s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE1JLwM7s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZE1JLwM7s .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZE1JLwM7s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZE1JLwM7s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE1JLwM7s .collapsed {
  flex-direction: row!important;
}
.cid-tZE1JLwM7s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZE1JLwM7s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZE1JLwM7s .navbar-caption {
  font-weight: 600!important;
}
.cid-tZE1JLwM7s .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZE1JLwM7s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZE1JLwM7s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZE1JLwM7s .dropdown-item.active,
.cid-tZE1JLwM7s .dropdown-item:active {
  background-color: transparent;
}
.cid-tZE1JLwM7s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZE1JLwM7s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZE1JLwM7s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZE1JLwM7s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZE1JLwM7s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZE1JLwM7s ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZE1JLwM7s .navbar-buttons {
  text-align: center;
}
.cid-tZE1JLwM7s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZE1JLwM7s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZE1JLwM7s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZE1JLwM7s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE1JLwM7s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE1JLwM7s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZE1JLwM7s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE1JLwM7s nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZE1JLwM7s nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZE1JLwM7s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE1JLwM7s .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZE1JLwM7s .nav-link {
  font-weight: 600!important;
}
.cid-tZE1JLwM7s a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZE1JLwM7s .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZE1JLwM7s .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZE1JLwM7s .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZE1JLwM7s .navbar {
    height: 77px;
  }
  .cid-tZE1JLwM7s .navbar.opened {
    height: auto;
  }
  .cid-tZE1JLwM7s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZE1JNDzJk {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/img-20231127-130911-512-720x720.jpg");
}
.cid-tZE1JNDzJk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE1JNDzJk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE1JNDzJk .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZE1JOFFJG {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZE1JPDY1O {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZE1JPDY1O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE1JPDY1O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE1JPDY1O .mbr-section-title,
.cid-tZE1JPDY1O .mbr-section-subtitle {
  text-align: center;
}
.cid-tZE1JPDY1O .cost {
  word-break: normal;
}
.cid-tZE1JPDY1O .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZE1JPDY1O .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZE1JPDY1O .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZE1JPDY1O .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZE1JRepOK {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZE1JRepOK .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZE1JRepOK .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZE1JRepOK textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZE1JRepOK .form-row {
    flex-direction: column;
  }
}
.cid-tZE1JRepOK h4 {
  margin-bottom: 2rem;
}
.cid-tZE1JRepOK .form-control,
.cid-tZE1JRepOK .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZE1JRepOK .form-control,
.cid-tZE1JRepOK .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZE1JRepOK .form-control::-webkit-input-placeholder,
.cid-tZE1JRepOK .field-input::-webkit-input-placeholder,
.cid-tZE1JRepOK .form-control::-webkit-input-placeholder,
.cid-tZE1JRepOK .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZE1JRepOK .form-control:-moz-placeholder,
.cid-tZE1JRepOK .field-input:-moz-placeholder,
.cid-tZE1JRepOK .form-control:-moz-placeholder,
.cid-tZE1JRepOK .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZE1JRepOK .form-control:hover,
.cid-tZE1JRepOK .field-input:hover,
.cid-tZE1JRepOK .form-control:focus,
.cid-tZE1JRepOK .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZE1JRepOK .form-control:hover::-webkit-input-placeholder,
.cid-tZE1JRepOK .field-input:hover::-webkit-input-placeholder,
.cid-tZE1JRepOK .form-control:focus::-webkit-input-placeholder,
.cid-tZE1JRepOK .field-input:focus::-webkit-input-placeholder,
.cid-tZE1JRepOK .form-control:hover::-webkit-input-placeholder,
.cid-tZE1JRepOK .field-input:hover::-webkit-input-placeholder,
.cid-tZE1JRepOK .form-control:focus::-webkit-input-placeholder,
.cid-tZE1JRepOK .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZE1JRepOK .form-control:hover:-moz-placeholder,
.cid-tZE1JRepOK .field-input:hover:-moz-placeholder,
.cid-tZE1JRepOK .form-control:focus:-moz-placeholder,
.cid-tZE1JRepOK .field-input:focus:-moz-placeholder,
.cid-tZE1JRepOK .form-control:hover:-moz-placeholder,
.cid-tZE1JRepOK .field-input:hover:-moz-placeholder,
.cid-tZE1JRepOK .form-control:focus:-moz-placeholder,
.cid-tZE1JRepOK .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZE1JRepOK .jq-number__spin:hover,
.cid-tZE1JRepOK .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZE1JRepOK .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZE1JRepOK .jq-selectbox li,
.cid-tZE1JRepOK .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZE1JRepOK .jq-selectbox li:hover,
.cid-tZE1JRepOK .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZE1JRepOK .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZE1JRepOK .jq-number__spin.minus:hover:after,
.cid-tZE1JRepOK .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZE1JRepOK .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZE1JRepOK .jq-number__spin.minus:after,
.cid-tZE1JRepOK .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZE1JRepOK input::-webkit-clear-button {
  display: none;
}
.cid-tZE1JRepOK input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZE1JRepOK input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZE1JRepOK input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZE1JRepOK H4 {
  color: #000000;
}
.cid-tZE1JWS35M {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZE1JWS35M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE1JWS35M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE1JWS35M .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZE1JWS35M .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZE1JWS35M .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZE1JWS35M .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZE1JWS35M .container {
    max-width: 100%;
  }
  .cid-tZE1JWS35M .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZE1JWS35M .item-wrap {
  width: 100%;
}
.cid-tZE1JWS35M .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZE1JWS35M .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZE1JWS35M .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZE1JWS35M .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE1JWS35M .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZE1JWS35M .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE1JWS35M .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZE1JWS35M .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZE1JWS35M .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZE1JWS35M .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZE1JWS35M .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZE1JWS35M .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZE1JWS35M .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZE1JWS35M .col-links {
    padding-top: 20px;
  }
}
.cid-tZE1JWS35M .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZE1JWS35M .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZE1JWS35M .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZE1JWS35M .list {
    text-align: center !important;
  }
}
.cid-tZE1JWS35M .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZE1JWS35M .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZE1JWS35M .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZE1JWS35M .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZE1JWS35M .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZE1JWS35M .list a:hover:before {
  width: 100%;
}
.cid-tZE1JWS35M .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZE1JWS35M .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZE1JWS35M .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZE1JWS35M .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZE5aPv3K6 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE5aPv3K6 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZE5aPv3K6 .nav-item:focus,
.cid-tZE5aPv3K6 .nav-link:focus {
  outline: none;
}
.cid-tZE5aPv3K6 .text-white:hover,
.cid-tZE5aPv3K6 .text-white:active,
.cid-tZE5aPv3K6 .text-white:focus {
  color: white!important;
}
.cid-tZE5aPv3K6 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZE5aPv3K6 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZE5aPv3K6 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZE5aPv3K6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZE5aPv3K6 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZE5aPv3K6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZE5aPv3K6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZE5aPv3K6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZE5aPv3K6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZE5aPv3K6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZE5aPv3K6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZE5aPv3K6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZE5aPv3K6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZE5aPv3K6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZE5aPv3K6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZE5aPv3K6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZE5aPv3K6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZE5aPv3K6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZE5aPv3K6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZE5aPv3K6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZE5aPv3K6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZE5aPv3K6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZE5aPv3K6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZE5aPv3K6 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZE5aPv3K6 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZE5aPv3K6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZE5aPv3K6 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZE5aPv3K6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZE5aPv3K6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZE5aPv3K6 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZE5aPv3K6 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZE5aPv3K6 .dropdown-item:hover {
  color: black!important;
}
.cid-tZE5aPv3K6 .dropdown-menu {
  background-color: white!important;
}
.cid-tZE5aPv3K6 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZE5aPv3K6 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE5aPv3K6 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZE5aPv3K6 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZE5aPv3K6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE5aPv3K6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZE5aPv3K6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZE5aPv3K6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZE5aPv3K6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE5aPv3K6 .collapsed {
  flex-direction: row!important;
}
.cid-tZE5aPv3K6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZE5aPv3K6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZE5aPv3K6 .navbar-caption {
  font-weight: 600!important;
}
.cid-tZE5aPv3K6 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZE5aPv3K6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZE5aPv3K6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZE5aPv3K6 .dropdown-item.active,
.cid-tZE5aPv3K6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tZE5aPv3K6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZE5aPv3K6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZE5aPv3K6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZE5aPv3K6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZE5aPv3K6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZE5aPv3K6 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZE5aPv3K6 .navbar-buttons {
  text-align: center;
}
.cid-tZE5aPv3K6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZE5aPv3K6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZE5aPv3K6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZE5aPv3K6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE5aPv3K6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE5aPv3K6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZE5aPv3K6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE5aPv3K6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZE5aPv3K6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZE5aPv3K6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE5aPv3K6 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZE5aPv3K6 .nav-link {
  font-weight: 600!important;
}
.cid-tZE5aPv3K6 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZE5aPv3K6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZE5aPv3K6 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZE5aPv3K6 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZE5aPv3K6 .navbar {
    height: 77px;
  }
  .cid-tZE5aPv3K6 .navbar.opened {
    height: auto;
  }
  .cid-tZE5aPv3K6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZE5aUAKlC {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/gr-1600x890.jpg");
}
.cid-tZE5aUAKlC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE5aUAKlC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE5aUAKlC .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZE5aW2YVe {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZE5aXveQr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZE5aXveQr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE5aXveQr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE5aXveQr .mbr-section-title,
.cid-tZE5aXveQr .mbr-section-subtitle {
  text-align: center;
}
.cid-tZE5aXveQr .cost {
  word-break: normal;
}
.cid-tZE5aXveQr .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZE5aXveQr .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZE5aXveQr .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZE5aXveQr .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZE5aZGIf6 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZE5aZGIf6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZE5aZGIf6 .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZE5aZGIf6 textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZE5aZGIf6 .form-row {
    flex-direction: column;
  }
}
.cid-tZE5aZGIf6 h4 {
  margin-bottom: 2rem;
}
.cid-tZE5aZGIf6 .form-control,
.cid-tZE5aZGIf6 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZE5aZGIf6 .form-control,
.cid-tZE5aZGIf6 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZE5aZGIf6 .form-control::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .field-input::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .form-control::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZE5aZGIf6 .form-control:-moz-placeholder,
.cid-tZE5aZGIf6 .field-input:-moz-placeholder,
.cid-tZE5aZGIf6 .form-control:-moz-placeholder,
.cid-tZE5aZGIf6 .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZE5aZGIf6 .form-control:hover,
.cid-tZE5aZGIf6 .field-input:hover,
.cid-tZE5aZGIf6 .form-control:focus,
.cid-tZE5aZGIf6 .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZE5aZGIf6 .form-control:hover::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .field-input:hover::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .form-control:focus::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .field-input:focus::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .form-control:hover::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .field-input:hover::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .form-control:focus::-webkit-input-placeholder,
.cid-tZE5aZGIf6 .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZE5aZGIf6 .form-control:hover:-moz-placeholder,
.cid-tZE5aZGIf6 .field-input:hover:-moz-placeholder,
.cid-tZE5aZGIf6 .form-control:focus:-moz-placeholder,
.cid-tZE5aZGIf6 .field-input:focus:-moz-placeholder,
.cid-tZE5aZGIf6 .form-control:hover:-moz-placeholder,
.cid-tZE5aZGIf6 .field-input:hover:-moz-placeholder,
.cid-tZE5aZGIf6 .form-control:focus:-moz-placeholder,
.cid-tZE5aZGIf6 .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZE5aZGIf6 .jq-number__spin:hover,
.cid-tZE5aZGIf6 .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZE5aZGIf6 .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZE5aZGIf6 .jq-selectbox li,
.cid-tZE5aZGIf6 .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZE5aZGIf6 .jq-selectbox li:hover,
.cid-tZE5aZGIf6 .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZE5aZGIf6 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZE5aZGIf6 .jq-number__spin.minus:hover:after,
.cid-tZE5aZGIf6 .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZE5aZGIf6 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZE5aZGIf6 .jq-number__spin.minus:after,
.cid-tZE5aZGIf6 .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZE5aZGIf6 input::-webkit-clear-button {
  display: none;
}
.cid-tZE5aZGIf6 input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZE5aZGIf6 input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZE5aZGIf6 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZE5aZGIf6 H4 {
  color: #000000;
}
.cid-tZE5b4zJg7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZE5b4zJg7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE5b4zJg7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE5b4zJg7 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZE5b4zJg7 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZE5b4zJg7 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZE5b4zJg7 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZE5b4zJg7 .container {
    max-width: 100%;
  }
  .cid-tZE5b4zJg7 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZE5b4zJg7 .item-wrap {
  width: 100%;
}
.cid-tZE5b4zJg7 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZE5b4zJg7 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZE5b4zJg7 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZE5b4zJg7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE5b4zJg7 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZE5b4zJg7 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE5b4zJg7 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZE5b4zJg7 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZE5b4zJg7 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZE5b4zJg7 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZE5b4zJg7 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZE5b4zJg7 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZE5b4zJg7 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZE5b4zJg7 .col-links {
    padding-top: 20px;
  }
}
.cid-tZE5b4zJg7 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZE5b4zJg7 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZE5b4zJg7 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZE5b4zJg7 .list {
    text-align: center !important;
  }
}
.cid-tZE5b4zJg7 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZE5b4zJg7 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZE5b4zJg7 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZE5b4zJg7 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZE5b4zJg7 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZE5b4zJg7 .list a:hover:before {
  width: 100%;
}
.cid-tZE5b4zJg7 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZE5b4zJg7 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZE5b4zJg7 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZE5b4zJg7 .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZE69pacGM .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE69pacGM .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZE69pacGM .nav-item:focus,
.cid-tZE69pacGM .nav-link:focus {
  outline: none;
}
.cid-tZE69pacGM .text-white:hover,
.cid-tZE69pacGM .text-white:active,
.cid-tZE69pacGM .text-white:focus {
  color: white!important;
}
.cid-tZE69pacGM .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZE69pacGM .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZE69pacGM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZE69pacGM .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZE69pacGM .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZE69pacGM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZE69pacGM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZE69pacGM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZE69pacGM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZE69pacGM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZE69pacGM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZE69pacGM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZE69pacGM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZE69pacGM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZE69pacGM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZE69pacGM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZE69pacGM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZE69pacGM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZE69pacGM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZE69pacGM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZE69pacGM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZE69pacGM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZE69pacGM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZE69pacGM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZE69pacGM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZE69pacGM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZE69pacGM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZE69pacGM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZE69pacGM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZE69pacGM .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZE69pacGM .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZE69pacGM .dropdown-item:hover {
  color: black!important;
}
.cid-tZE69pacGM .dropdown-menu {
  background-color: white!important;
}
.cid-tZE69pacGM .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZE69pacGM .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE69pacGM .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZE69pacGM .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZE69pacGM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE69pacGM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZE69pacGM .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZE69pacGM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZE69pacGM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE69pacGM .collapsed {
  flex-direction: row!important;
}
.cid-tZE69pacGM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZE69pacGM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZE69pacGM .navbar-caption {
  font-weight: 600!important;
}
.cid-tZE69pacGM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZE69pacGM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZE69pacGM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZE69pacGM .dropdown-item.active,
.cid-tZE69pacGM .dropdown-item:active {
  background-color: transparent;
}
.cid-tZE69pacGM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZE69pacGM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZE69pacGM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZE69pacGM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZE69pacGM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZE69pacGM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZE69pacGM .navbar-buttons {
  text-align: center;
}
.cid-tZE69pacGM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZE69pacGM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZE69pacGM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZE69pacGM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE69pacGM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE69pacGM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZE69pacGM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE69pacGM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZE69pacGM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZE69pacGM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE69pacGM .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZE69pacGM .nav-link {
  font-weight: 600!important;
}
.cid-tZE69pacGM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZE69pacGM .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZE69pacGM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZE69pacGM .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZE69pacGM .navbar {
    height: 77px;
  }
  .cid-tZE69pacGM .navbar.opened {
    height: auto;
  }
  .cid-tZE69pacGM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZE69tLL4h {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-tZE69tLL4h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE69tLL4h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE69tLL4h .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZE69tLL4h .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tZE69tLL4h .mbr-section-title,
.cid-tZE69tLL4h .mbr-section-btn {
  color: #000000;
}
.cid-tZE69vH0Ar {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1470x980.jpg");
}
.cid-tZE69vH0Ar .mbr-overlay {
  background: #fafafa;
  opacity: 0.9;
}
.cid-tZE69vH0Ar .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tZE69vH0Ar .item-content {
  background: #442916;
  transition: all 0.3s;
  border: 2px solid #442916;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tZE69vH0Ar .item-content:hover {
  background: #000000;
  border-color: #000000;
}
@media (max-width: 767px) {
  .cid-tZE69vH0Ar .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tZE69vH0Ar .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #000000;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #fafafa;
}
@media (max-width: 767px) {
  .cid-tZE69vH0Ar .img-text {
    left: 1rem;
  }
}
.cid-tZE69vH0Ar img,
.cid-tZE69vH0Ar .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-tZE69vH0Ar .item:focus,
.cid-tZE69vH0Ar span:focus {
  outline: none;
}
.cid-tZE69vH0Ar .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZE69vH0Ar .mbr-section-title {
  color: #232323;
}
.cid-tZE69vH0Ar .mbr-text,
.cid-tZE69vH0Ar .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-tZE69vH0Ar .item-title {
  text-align: left;
  color: #fafafa;
}
.cid-tZE69vH0Ar .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tZE69vH0Ar .mbr-section-subtitle {
  color: #633615;
}
.cid-tZE69yKZdn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZE69yKZdn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE69yKZdn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE69yKZdn .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZE69yKZdn .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZE69yKZdn .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZE69yKZdn .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZE69yKZdn .container {
    max-width: 100%;
  }
  .cid-tZE69yKZdn .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZE69yKZdn .item-wrap {
  width: 100%;
}
.cid-tZE69yKZdn .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZE69yKZdn .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZE69yKZdn .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZE69yKZdn .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE69yKZdn .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZE69yKZdn .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE69yKZdn .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZE69yKZdn .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZE69yKZdn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZE69yKZdn .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZE69yKZdn .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZE69yKZdn .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZE69yKZdn .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZE69yKZdn .col-links {
    padding-top: 20px;
  }
}
.cid-tZE69yKZdn .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZE69yKZdn .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZE69yKZdn .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZE69yKZdn .list {
    text-align: center !important;
  }
}
.cid-tZE69yKZdn .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZE69yKZdn .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZE69yKZdn .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZE69yKZdn .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZE69yKZdn .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZE69yKZdn .list a:hover:before {
  width: 100%;
}
.cid-tZE69yKZdn .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZE69yKZdn .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZE69yKZdn .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZE69yKZdn .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZE81QXysW .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE81QXysW .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZE81QXysW .nav-item:focus,
.cid-tZE81QXysW .nav-link:focus {
  outline: none;
}
.cid-tZE81QXysW .text-white:hover,
.cid-tZE81QXysW .text-white:active,
.cid-tZE81QXysW .text-white:focus {
  color: white!important;
}
.cid-tZE81QXysW .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZE81QXysW .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZE81QXysW .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZE81QXysW .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZE81QXysW .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZE81QXysW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZE81QXysW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZE81QXysW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZE81QXysW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZE81QXysW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZE81QXysW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZE81QXysW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZE81QXysW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZE81QXysW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZE81QXysW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZE81QXysW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZE81QXysW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZE81QXysW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZE81QXysW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZE81QXysW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZE81QXysW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZE81QXysW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZE81QXysW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZE81QXysW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZE81QXysW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZE81QXysW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZE81QXysW .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZE81QXysW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZE81QXysW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZE81QXysW .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZE81QXysW .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZE81QXysW .dropdown-item:hover {
  color: black!important;
}
.cid-tZE81QXysW .dropdown-menu {
  background-color: white!important;
}
.cid-tZE81QXysW .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZE81QXysW .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZE81QXysW .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZE81QXysW .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZE81QXysW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE81QXysW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZE81QXysW .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZE81QXysW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZE81QXysW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZE81QXysW .collapsed {
  flex-direction: row!important;
}
.cid-tZE81QXysW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZE81QXysW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZE81QXysW .navbar-caption {
  font-weight: 600!important;
}
.cid-tZE81QXysW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZE81QXysW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZE81QXysW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZE81QXysW .dropdown-item.active,
.cid-tZE81QXysW .dropdown-item:active {
  background-color: transparent;
}
.cid-tZE81QXysW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZE81QXysW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZE81QXysW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZE81QXysW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZE81QXysW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZE81QXysW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZE81QXysW .navbar-buttons {
  text-align: center;
}
.cid-tZE81QXysW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZE81QXysW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZE81QXysW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZE81QXysW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE81QXysW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZE81QXysW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZE81QXysW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE81QXysW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZE81QXysW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZE81QXysW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZE81QXysW .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZE81QXysW .nav-link {
  font-weight: 600!important;
}
.cid-tZE81QXysW a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZE81QXysW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZE81QXysW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZE81QXysW .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZE81QXysW .navbar {
    height: 77px;
  }
  .cid-tZE81QXysW .navbar.opened {
    height: auto;
  }
  .cid-tZE81QXysW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZE81Vvg4u {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/seremigrat-1-1200x800.jpg");
}
.cid-tZE81Vvg4u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE81Vvg4u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE81Vvg4u .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZE81XxFzo {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZE81ZT9rU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZE81ZT9rU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE81ZT9rU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE81ZT9rU .mbr-section-title,
.cid-tZE81ZT9rU .mbr-section-subtitle {
  text-align: center;
}
.cid-tZE81ZT9rU .cost {
  word-break: normal;
}
.cid-tZE81ZT9rU .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZE81ZT9rU .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZE81ZT9rU .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZE81ZT9rU .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZE821I5fg {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZE821I5fg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZE821I5fg .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZE821I5fg textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZE821I5fg .form-row {
    flex-direction: column;
  }
}
.cid-tZE821I5fg h4 {
  margin-bottom: 2rem;
}
.cid-tZE821I5fg .form-control,
.cid-tZE821I5fg .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZE821I5fg .form-control,
.cid-tZE821I5fg .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZE821I5fg .form-control::-webkit-input-placeholder,
.cid-tZE821I5fg .field-input::-webkit-input-placeholder,
.cid-tZE821I5fg .form-control::-webkit-input-placeholder,
.cid-tZE821I5fg .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZE821I5fg .form-control:-moz-placeholder,
.cid-tZE821I5fg .field-input:-moz-placeholder,
.cid-tZE821I5fg .form-control:-moz-placeholder,
.cid-tZE821I5fg .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZE821I5fg .form-control:hover,
.cid-tZE821I5fg .field-input:hover,
.cid-tZE821I5fg .form-control:focus,
.cid-tZE821I5fg .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZE821I5fg .form-control:hover::-webkit-input-placeholder,
.cid-tZE821I5fg .field-input:hover::-webkit-input-placeholder,
.cid-tZE821I5fg .form-control:focus::-webkit-input-placeholder,
.cid-tZE821I5fg .field-input:focus::-webkit-input-placeholder,
.cid-tZE821I5fg .form-control:hover::-webkit-input-placeholder,
.cid-tZE821I5fg .field-input:hover::-webkit-input-placeholder,
.cid-tZE821I5fg .form-control:focus::-webkit-input-placeholder,
.cid-tZE821I5fg .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZE821I5fg .form-control:hover:-moz-placeholder,
.cid-tZE821I5fg .field-input:hover:-moz-placeholder,
.cid-tZE821I5fg .form-control:focus:-moz-placeholder,
.cid-tZE821I5fg .field-input:focus:-moz-placeholder,
.cid-tZE821I5fg .form-control:hover:-moz-placeholder,
.cid-tZE821I5fg .field-input:hover:-moz-placeholder,
.cid-tZE821I5fg .form-control:focus:-moz-placeholder,
.cid-tZE821I5fg .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZE821I5fg .jq-number__spin:hover,
.cid-tZE821I5fg .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZE821I5fg .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZE821I5fg .jq-selectbox li,
.cid-tZE821I5fg .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZE821I5fg .jq-selectbox li:hover,
.cid-tZE821I5fg .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZE821I5fg .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZE821I5fg .jq-number__spin.minus:hover:after,
.cid-tZE821I5fg .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZE821I5fg .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZE821I5fg .jq-number__spin.minus:after,
.cid-tZE821I5fg .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZE821I5fg input::-webkit-clear-button {
  display: none;
}
.cid-tZE821I5fg input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZE821I5fg input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZE821I5fg input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZE821I5fg H4 {
  color: #000000;
}
.cid-tZE827gvYE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZE827gvYE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE827gvYE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZE827gvYE .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZE827gvYE .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZE827gvYE .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZE827gvYE .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZE827gvYE .container {
    max-width: 100%;
  }
  .cid-tZE827gvYE .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZE827gvYE .item-wrap {
  width: 100%;
}
.cid-tZE827gvYE .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZE827gvYE .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZE827gvYE .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZE827gvYE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE827gvYE .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZE827gvYE .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZE827gvYE .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZE827gvYE .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZE827gvYE .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZE827gvYE .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZE827gvYE .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZE827gvYE .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZE827gvYE .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZE827gvYE .col-links {
    padding-top: 20px;
  }
}
.cid-tZE827gvYE .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZE827gvYE .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZE827gvYE .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZE827gvYE .list {
    text-align: center !important;
  }
}
.cid-tZE827gvYE .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZE827gvYE .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZE827gvYE .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZE827gvYE .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZE827gvYE .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZE827gvYE .list a:hover:before {
  width: 100%;
}
.cid-tZE827gvYE .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZE827gvYE .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZE827gvYE .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZE827gvYE .copyright {
  color: #000000;
  padding: 40px 0;
}
.cid-tZEapZAzp4 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZEapZAzp4 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tZEapZAzp4 .nav-item:focus,
.cid-tZEapZAzp4 .nav-link:focus {
  outline: none;
}
.cid-tZEapZAzp4 .text-white:hover,
.cid-tZEapZAzp4 .text-white:active,
.cid-tZEapZAzp4 .text-white:focus {
  color: white!important;
}
.cid-tZEapZAzp4 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tZEapZAzp4 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tZEapZAzp4 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tZEapZAzp4 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZEapZAzp4 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZEapZAzp4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZEapZAzp4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZEapZAzp4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZEapZAzp4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZEapZAzp4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZEapZAzp4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tZEapZAzp4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZEapZAzp4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZEapZAzp4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZEapZAzp4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZEapZAzp4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZEapZAzp4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZEapZAzp4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZEapZAzp4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZEapZAzp4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tZEapZAzp4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZEapZAzp4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZEapZAzp4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZEapZAzp4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZEapZAzp4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZEapZAzp4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZEapZAzp4 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tZEapZAzp4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZEapZAzp4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZEapZAzp4 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tZEapZAzp4 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tZEapZAzp4 .dropdown-item:hover {
  color: black!important;
}
.cid-tZEapZAzp4 .dropdown-menu {
  background-color: white!important;
}
.cid-tZEapZAzp4 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tZEapZAzp4 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tZEapZAzp4 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tZEapZAzp4 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tZEapZAzp4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZEapZAzp4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZEapZAzp4 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tZEapZAzp4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZEapZAzp4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZEapZAzp4 .collapsed {
  flex-direction: row!important;
}
.cid-tZEapZAzp4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZEapZAzp4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZEapZAzp4 .navbar-caption {
  font-weight: 600!important;
}
.cid-tZEapZAzp4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZEapZAzp4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZEapZAzp4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZEapZAzp4 .dropdown-item.active,
.cid-tZEapZAzp4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tZEapZAzp4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZEapZAzp4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZEapZAzp4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZEapZAzp4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZEapZAzp4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZEapZAzp4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZEapZAzp4 .navbar-buttons {
  text-align: center;
}
.cid-tZEapZAzp4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZEapZAzp4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #633615;
}
.cid-tZEapZAzp4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZEapZAzp4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZEapZAzp4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZEapZAzp4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZEapZAzp4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZEapZAzp4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZEapZAzp4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZEapZAzp4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZEapZAzp4 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZEapZAzp4 .nav-link {
  font-weight: 600!important;
}
.cid-tZEapZAzp4 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZEapZAzp4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZEapZAzp4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZEapZAzp4 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZEapZAzp4 .navbar {
    height: 77px;
  }
  .cid-tZEapZAzp4 .navbar.opened {
    height: auto;
  }
  .cid-tZEapZAzp4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZEaq3ZkeG {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/migratslidpict-1500x900.jpg");
}
.cid-tZEaq3ZkeG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZEaq3ZkeG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZEaq3ZkeG .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZEaq7jaZ2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZEaq8Xt0p {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZEaq8Xt0p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZEaq8Xt0p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZEaq8Xt0p .mbr-section-title,
.cid-tZEaq8Xt0p .mbr-section-subtitle {
  text-align: center;
}
.cid-tZEaq8Xt0p .cost {
  word-break: normal;
}
.cid-tZEaq8Xt0p .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tZEaq8Xt0p .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tZEaq8Xt0p .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZEaq8Xt0p .card-wrapper {
    padding: 1rem;
  }
}
.cid-tZEaqaGmE7 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/hiking-through-a-forest-1200x900.jpeg");
}
.cid-tZEaqaGmE7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-tZEaqaGmE7 .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tZEaqaGmE7 textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tZEaqaGmE7 .form-row {
    flex-direction: column;
  }
}
.cid-tZEaqaGmE7 h4 {
  margin-bottom: 2rem;
}
.cid-tZEaqaGmE7 .form-control,
.cid-tZEaqaGmE7 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tZEaqaGmE7 .form-control,
.cid-tZEaqaGmE7 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZEaqaGmE7 .form-control::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .field-input::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .form-control::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZEaqaGmE7 .form-control:-moz-placeholder,
.cid-tZEaqaGmE7 .field-input:-moz-placeholder,
.cid-tZEaqaGmE7 .form-control:-moz-placeholder,
.cid-tZEaqaGmE7 .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tZEaqaGmE7 .form-control:hover,
.cid-tZEaqaGmE7 .field-input:hover,
.cid-tZEaqaGmE7 .form-control:focus,
.cid-tZEaqaGmE7 .field-input:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tZEaqaGmE7 .form-control:hover::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .field-input:hover::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .form-control:focus::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .field-input:focus::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .form-control:hover::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .field-input:hover::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .form-control:focus::-webkit-input-placeholder,
.cid-tZEaqaGmE7 .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tZEaqaGmE7 .form-control:hover:-moz-placeholder,
.cid-tZEaqaGmE7 .field-input:hover:-moz-placeholder,
.cid-tZEaqaGmE7 .form-control:focus:-moz-placeholder,
.cid-tZEaqaGmE7 .field-input:focus:-moz-placeholder,
.cid-tZEaqaGmE7 .form-control:hover:-moz-placeholder,
.cid-tZEaqaGmE7 .field-input:hover:-moz-placeholder,
.cid-tZEaqaGmE7 .form-control:focus:-moz-placeholder,
.cid-tZEaqaGmE7 .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tZEaqaGmE7 .jq-number__spin:hover,
.cid-tZEaqaGmE7 .jq-number__spin:focus {
  background-color: #e1e1e1;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tZEaqaGmE7 .jq-number__spin {
  background-color: #bbbbbb;
  border-color: #633615;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tZEaqaGmE7 .jq-selectbox li,
.cid-tZEaqaGmE7 .jq-selectbox li {
  background-color: #bbbbbb;
  color: #000000;
}
.cid-tZEaqaGmE7 .jq-selectbox li:hover,
.cid-tZEaqaGmE7 .jq-selectbox li.selected {
  background-color: #e1e1e1;
  color: #000000;
}
.cid-tZEaqaGmE7 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tZEaqaGmE7 .jq-number__spin.minus:hover:after,
.cid-tZEaqaGmE7 .jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.cid-tZEaqaGmE7 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tZEaqaGmE7 .jq-number__spin.minus:after,
.cid-tZEaqaGmE7 .jq-number__spin.plus:after {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}
.cid-tZEaqaGmE7 input::-webkit-clear-button {
  display: none;
}
.cid-tZEaqaGmE7 input::-webkit-inner-spin-button {
  display: none;
}
.cid-tZEaqaGmE7 input::-webkit-outer-spin-button {
  display: none;
}
.cid-tZEaqaGmE7 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tZEaqaGmE7 H4 {
  color: #000000;
}
.cid-tZEaqf8Lm3 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZEaqf8Lm3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZEaqf8Lm3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZEaqf8Lm3 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tZEaqf8Lm3 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tZEaqf8Lm3 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tZEaqf8Lm3 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tZEaqf8Lm3 .container {
    max-width: 100%;
  }
  .cid-tZEaqf8Lm3 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tZEaqf8Lm3 .item-wrap {
  width: 100%;
}
.cid-tZEaqf8Lm3 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tZEaqf8Lm3 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tZEaqf8Lm3 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tZEaqf8Lm3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZEaqf8Lm3 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tZEaqf8Lm3 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tZEaqf8Lm3 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tZEaqf8Lm3 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tZEaqf8Lm3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9966, #23272b);
  transition: 0.4s all;
}
.cid-tZEaqf8Lm3 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tZEaqf8Lm3 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tZEaqf8Lm3 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tZEaqf8Lm3 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZEaqf8Lm3 .col-links {
    padding-top: 20px;
  }
}
.cid-tZEaqf8Lm3 .mbr-section-subtitle {
  color: #633615;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tZEaqf8Lm3 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tZEaqf8Lm3 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #000000;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tZEaqf8Lm3 .list {
    text-align: center !important;
  }
}
.cid-tZEaqf8Lm3 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tZEaqf8Lm3 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tZEaqf8Lm3 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tZEaqf8Lm3 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #633615;
  transition: 0.4s all;
}
.cid-tZEaqf8Lm3 .list a:hover {
  color: #633615 !important;
  line-height: inherit !important;
}
.cid-tZEaqf8Lm3 .list a:hover:before {
  width: 100%;
}
.cid-tZEaqf8Lm3 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tZEaqf8Lm3 .col-copyright {
    padding-top: 40px;
  }
}
.cid-tZEaqf8Lm3 .border-item {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
}
.cid-tZEaqf8Lm3 .copyright {
  color: #000000;
  padding: 40px 0;
}
