body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', 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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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: #332002 !important;
}
.bg-success {
  background-color: #a29475 !important;
}
.bg-info {
  background-color: #4a3514 !important;
}
.bg-warning {
  background-color: #a29475 !important;
}
.bg-danger {
  background-color: #4a3514 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #332002 !important;
  border-color: #332002 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary: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-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.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-secondary.disabled,
.btn-secondary:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-info,
.btn-info:active {
  background-color: #4a3514 !important;
  border-color: #4a3514 !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: #060402 !important;
  border-color: #060402 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #060402 !important;
  border-color: #060402 !important;
}
.btn-success,
.btn-success:active {
  background-color: #a29475 !important;
  border-color: #a29475 !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: #73674d !important;
  border-color: #73674d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #73674d !important;
  border-color: #73674d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #a29475 !important;
  border-color: #a29475 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #73674d !important;
  border-color: #73674d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #73674d !important;
  border-color: #73674d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #4a3514 !important;
  border-color: #4a3514 !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: #060402 !important;
  border-color: #060402 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #060402 !important;
  border-color: #060402 !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: #332002;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #332002 !important;
  border-color: #332002 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4a3514;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #060402 !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: #4a3514 !important;
  border-color: #4a3514 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a29475;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #73674d !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: #a29475 !important;
  border-color: #a29475 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a29475;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #73674d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a29475 !important;
  border-color: #a29475 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4a3514;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #060402 !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: #4a3514 !important;
  border-color: #4a3514 !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: #332002 !important;
}
.text-secondary {
  color: #fafafa !important;
}
.text-success {
  color: #a29475 !important;
}
.text-info {
  color: #4a3514 !important;
}
.text-warning {
  color: #a29475 !important;
}
.text-danger {
  color: #4a3514 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c7c7c7 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #6a5f47 !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: #6a5f47 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #332002;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4a3514;
}
.alert-warning {
  background-color: #a29475;
}
.alert-danger {
  background-color: #4a3514;
}
.mbr-gallery-filter li.active .btn {
  background-color: #332002;
  border-color: #332002;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #332002;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f6a524;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d5cfc1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d7ae6c;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d5cfc1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d7ae6c;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #332002 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #332002;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #332002;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #332002;
}
.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: #332002;
  border-bottom-color: #332002;
}
.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: #332002 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #fafafa !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='%23332002' %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-seyoDU0wcI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-9184-2000x3000.jpeg");
}
.cid-seyoDU0wcI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-seyoDU0wcI .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #a29475;
  transition: all 0.3s;
  color: #a29475;
}
.cid-seyoDU0wcI .social-row .soc-item .mbr-iconfont:hover {
  background-color: #a29475;
  color: #ffffff;
}
.cid-seyoDU0wcI .mbr-section-title {
  color: #ffffff;
}
.cid-seyoDU0wcI .mbr-text,
.cid-seyoDU0wcI .mbr-section-btn,
.cid-seyoDU0wcI .social-row {
  color: #bbbbbb;
}
.cid-seyoDU0wcI .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-seyoJ2AFtx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-seyoJ2AFtx nav.navbar {
  position: fixed;
}
.cid-seyoJ2AFtx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seyoJ2AFtx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-seyoJ2AFtx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-seyoJ2AFtx .dropdown-item:hover,
.cid-seyoJ2AFtx .dropdown-item:focus {
  background: #332002 !important;
  color: white !important;
}
.cid-seyoJ2AFtx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-seyoJ2AFtx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-seyoJ2AFtx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-seyoJ2AFtx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-seyoJ2AFtx .nav-link {
  position: relative;
}
.cid-seyoJ2AFtx .container {
  display: flex;
  margin: auto;
}
.cid-seyoJ2AFtx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-seyoJ2AFtx .dropdown-menu,
.cid-seyoJ2AFtx .navbar.opened {
  background: #332002 !important;
}
.cid-seyoJ2AFtx .nav-item:focus,
.cid-seyoJ2AFtx .nav-link:focus {
  outline: none;
}
.cid-seyoJ2AFtx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seyoJ2AFtx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-seyoJ2AFtx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-seyoJ2AFtx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seyoJ2AFtx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seyoJ2AFtx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seyoJ2AFtx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #332002;
}
.cid-seyoJ2AFtx .navbar.opened {
  transition: all 0.3s;
}
.cid-seyoJ2AFtx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-seyoJ2AFtx .navbar .navbar-logo img {
  width: auto;
}
.cid-seyoJ2AFtx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seyoJ2AFtx .navbar.collapsed {
  justify-content: center;
}
.cid-seyoJ2AFtx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seyoJ2AFtx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-seyoJ2AFtx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seyoJ2AFtx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-seyoJ2AFtx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-seyoJ2AFtx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seyoJ2AFtx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-seyoJ2AFtx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-seyoJ2AFtx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seyoJ2AFtx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seyoJ2AFtx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seyoJ2AFtx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-seyoJ2AFtx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-seyoJ2AFtx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-seyoJ2AFtx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seyoJ2AFtx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-seyoJ2AFtx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-seyoJ2AFtx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seyoJ2AFtx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-seyoJ2AFtx .navbar.navbar-short {
  min-height: 60px;
}
.cid-seyoJ2AFtx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-seyoJ2AFtx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-seyoJ2AFtx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seyoJ2AFtx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seyoJ2AFtx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seyoJ2AFtx .dropdown-item.active,
.cid-seyoJ2AFtx .dropdown-item:active {
  background-color: transparent;
}
.cid-seyoJ2AFtx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-seyoJ2AFtx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seyoJ2AFtx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seyoJ2AFtx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #332002;
}
.cid-seyoJ2AFtx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seyoJ2AFtx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seyoJ2AFtx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seyoJ2AFtx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-seyoJ2AFtx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-seyoJ2AFtx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-seyoJ2AFtx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-seyoJ2AFtx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-seyoJ2AFtx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-seyoJ2AFtx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-seyoJ2AFtx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-seyoJ2AFtx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-seyoJ2AFtx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-seyoJ2AFtx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-seyoJ2AFtx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-seyoJ2AFtx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-seyoJ2AFtx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seyoJ2AFtx .navbar {
    height: 70px;
  }
  .cid-seyoJ2AFtx .navbar.opened {
    height: auto;
  }
  .cid-seyoJ2AFtx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlnHkVSH1U {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlnHkVSH1U .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tlnHkVSH1U .mbr-text {
  color: #332002;
}
.cid-t52jZe12nI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t52jZe12nI .video-wrapper iframe {
  width: 100%;
}
.cid-t52jZe12nI .mbr-section-title,
.cid-t52jZe12nI .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t52jZe12nI .text-wrapper {
    padding: 2rem;
  }
}
.cid-t52jZe12nI .mbr-text {
  color: #332002;
}
.cid-t52jZe12nI .mbr-section-subtitle {
  color: #332002;
}
.cid-sTVSIB3j8k {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sTVSIB3j8k .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTVSIB3j8k .mbr-text {
  color: #332002;
}
.cid-sU1b9eJlLT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sU1b9eJlLT .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sU1b9eJlLT .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sU1b9eJlLT .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #a29475;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-sU1b9eJlLT .mbr-text {
  color: #332002;
}
.cid-sU1bUT7BdN {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 767px) {
  .cid-sU1bUT7BdN .card-box {
    padding: 1rem;
  }
  .cid-sU1bUT7BdN .mbr-section-btn,
  .cid-sU1bUT7BdN .price {
    text-align: center;
  }
  .cid-sU1bUT7BdN .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cid-sU1bUT7BdN .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sU1bUT7BdN .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sU1bUT7BdN .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sU1bUT7BdN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sU1bUT7BdN .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sU1bUT7BdN .card-title {
  color: #332002;
}
.cid-tvL7iWVvgv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvL7iWVvgv .video-wrapper iframe {
  width: 100%;
}
.cid-tvL7iWVvgv .mbr-section-title,
.cid-tvL7iWVvgv .mbr-section-subtitle,
.cid-tvL7iWVvgv .mbr-text {
  text-align: center;
}
.cid-sTVVqCYk5N {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sTVVqCYk5N .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTVVqCYk5N .mbr-text {
  color: #332002;
}
.cid-sU0S9NK84Y {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #332002;
}
.cid-sU0S9NK84Y img,
.cid-sU0S9NK84Y .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sU0S9NK84Y .item:focus,
.cid-sU0S9NK84Y span:focus {
  outline: none;
}
.cid-sU0S9NK84Y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sU0S9NK84Y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sU0S9NK84Y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sU0S9NK84Y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sU0S9NK84Y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sU0S9NK84Y .mbr-section-title {
  color: #232323;
}
.cid-sU0S9NK84Y .mbr-text,
.cid-sU0S9NK84Y .mbr-section-btn {
  text-align: left;
  color: #332002;
}
.cid-sU0S9NK84Y .item-title {
  text-align: left;
  color: #332002;
}
.cid-sU0S9NK84Y .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-sTVVr2eoJK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTVVr2eoJK .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTVVr2eoJK .mbr-text {
  color: #332002;
}
.cid-sU0WdeElp2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sU0WdeElp2 .container {
    max-width: 1400px;
  }
}
.cid-sU0WdeElp2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #a29475;
  margin-bottom: 2rem;
}
.cid-sU0WdeElp2 .card-wrapper {
  margin-top: 3rem;
}
.cid-sU0WdeElp2 .row {
  justify-content: center;
}
.cid-sU178xgAIh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sU178xgAIh .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sU178xgAIh .mbr-text {
  color: #332002;
}
.cid-tlnXt7aiT3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #332002;
}
.cid-tlnXt7aiT3 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tlnXt7aiT3 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tlnXt7aiT3 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #a29475;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tlnXt7aiT3 .mbr-text {
  color: #ffffff;
}
.cid-tlnXt7aiT3 .mbr-section-title {
  color: #ffffff;
}
.cid-t6mxHTb3hm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6mxHTb3hm .video-wrapper iframe {
  width: 100%;
}
.cid-t6mxHTb3hm .mbr-section-title,
.cid-t6mxHTb3hm .mbr-section-subtitle,
.cid-t6mxHTb3hm .mbr-text {
  text-align: center;
}
.cid-sU16k1zAZ2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sU16k1zAZ2 .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sU16k1zAZ2 .mbr-text {
  color: #332002;
}
.cid-sU14Avy0GQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sU14Avy0GQ .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-sU14Avy0GQ .item .icon-wrap {
  text-align: center;
}
.cid-sU14Avy0GQ .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 97%;
  color: #a29475;
  transform: translate(-50%, 0);
}
.cid-sU14Avy0GQ .item:last-child:before {
  display: none;
}
.cid-sU14Avy0GQ .item.last::before {
  display: none;
}
.cid-sU14Avy0GQ .icon-box {
  background: #a29475;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-sU14Avy0GQ .text-box {
  text-align: center;
}
.cid-sU14Avy0GQ span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-sU14Avy0GQ .card {
    margin-bottom: 2rem;
  }
  .cid-sU14Avy0GQ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sU14Avy0GQ .card-title,
.cid-sU14Avy0GQ .card-box {
  color: #332002;
}
.cid-sU14Avy0GQ .mbr-text,
.cid-sU14Avy0GQ .mbr-section-btn {
  color: #332002;
}
.cid-sU14Avy0GQ .icon-text {
  color: #332002;
}
.cid-sU14Avy0GQ .icon-title,
.cid-sU14Avy0GQ .item .icon-wrap {
  color: #332002;
}
.cid-sU0YY15rlV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sU0YY15rlV .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sU0YY15rlV .mbr-text {
  color: #332002;
}
.cid-sU0ZsWc7pu {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sU0ZsWc7pu .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sU0ZsWc7pu .team-card:hover {
  transform: translateY(-10px);
}
.cid-sU0ZsWc7pu .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sU0ZsWc7pu .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sU0ZsWc7pu .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sU0ZsWc7pu .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sU0ZsWc7pu .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sU0ZsWc7pu .social-row {
  text-align: center;
}
.cid-sU0ZsWc7pu .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sU0ZsWc7pu .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sU0ZsWc7pu .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sU0ZsWc7pu .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sU0Z5aVomD {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sU0Z5aVomD .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sU0Z5aVomD .mbr-text {
  color: #332002;
}
.cid-sYQT6s7Dnd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sYQT6s7Dnd .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYQT6s7Dnd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sYQT6s7Dnd .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sYQT6s7Dnd .name {
  text-align: left;
}
.cid-sYQTm3P0kV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQTm3P0kV .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sYQTm3P0kV .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYQTm3P0kV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sYQTm3P0kV .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sU14kSeCee {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sU14kSeCee .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sU14kSeCee .mbr-text {
  color: #332002;
}
.cid-sU14eC4301 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #a29475;
}
.cid-sU14eC4301 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-sU14eC4301 form {
    width: 50%;
  }
}
.cid-sU14eC4301 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sU14eC4301 form .mbr-section-btn .btn {
  width: 100%;
}
.cid-sU13OL3t43 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #332002;
}
.cid-sU13OL3t43 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sU13OL3t43 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sU13OL3t43 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sU13OL3t43 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sU13OL3t43 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sU13OL3t43 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sU13OL3t43 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sU13OL3t43 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sU13OL3t43 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sU13OL3t43 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sU13OL3t43 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sU13OL3t43 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sU13OL3t43 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sU13OL3t43 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tkGh7ddCtK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/1772160446-0-322-3068-2048-1920x0-80-0-0-863dcd2722477df941cfc3f88849cc2e-1920x1080.jpg");
}
.cid-tkGh7ddCtK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tkGh7ddCtK .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #a29475;
  transition: all 0.3s;
  color: #a29475;
}
.cid-tkGh7ddCtK .social-row .soc-item .mbr-iconfont:hover {
  background-color: #a29475;
  color: #ffffff;
}
.cid-tkGh7ddCtK .mbr-section-title {
  color: #ffffff;
}
.cid-tkGh7ddCtK .mbr-text,
.cid-tkGh7ddCtK .mbr-section-btn,
.cid-tkGh7ddCtK .social-row {
  color: #332002;
}
.cid-tkGh7e5R0v {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tkGh7e5R0v nav.navbar {
  position: fixed;
}
.cid-tkGh7e5R0v .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkGh7e5R0v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkGh7e5R0v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkGh7e5R0v .dropdown-item:hover,
.cid-tkGh7e5R0v .dropdown-item:focus {
  background: #332002 !important;
  color: white !important;
}
.cid-tkGh7e5R0v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkGh7e5R0v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkGh7e5R0v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkGh7e5R0v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkGh7e5R0v .nav-link {
  position: relative;
}
.cid-tkGh7e5R0v .container {
  display: flex;
  margin: auto;
}
.cid-tkGh7e5R0v .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkGh7e5R0v .dropdown-menu,
.cid-tkGh7e5R0v .navbar.opened {
  background: #332002 !important;
}
.cid-tkGh7e5R0v .nav-item:focus,
.cid-tkGh7e5R0v .nav-link:focus {
  outline: none;
}
.cid-tkGh7e5R0v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkGh7e5R0v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkGh7e5R0v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkGh7e5R0v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkGh7e5R0v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkGh7e5R0v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkGh7e5R0v .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #332002;
}
.cid-tkGh7e5R0v .navbar.opened {
  transition: all 0.3s;
}
.cid-tkGh7e5R0v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkGh7e5R0v .navbar .navbar-logo img {
  width: auto;
}
.cid-tkGh7e5R0v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkGh7e5R0v .navbar.collapsed {
  justify-content: center;
}
.cid-tkGh7e5R0v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkGh7e5R0v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tkGh7e5R0v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkGh7e5R0v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkGh7e5R0v .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tkGh7e5R0v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkGh7e5R0v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkGh7e5R0v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkGh7e5R0v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkGh7e5R0v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkGh7e5R0v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkGh7e5R0v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkGh7e5R0v .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tkGh7e5R0v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkGh7e5R0v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkGh7e5R0v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkGh7e5R0v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkGh7e5R0v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkGh7e5R0v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tkGh7e5R0v .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkGh7e5R0v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkGh7e5R0v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkGh7e5R0v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkGh7e5R0v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkGh7e5R0v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkGh7e5R0v .dropdown-item.active,
.cid-tkGh7e5R0v .dropdown-item:active {
  background-color: transparent;
}
.cid-tkGh7e5R0v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkGh7e5R0v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkGh7e5R0v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkGh7e5R0v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #332002;
}
.cid-tkGh7e5R0v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkGh7e5R0v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkGh7e5R0v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkGh7e5R0v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkGh7e5R0v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkGh7e5R0v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tkGh7e5R0v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkGh7e5R0v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkGh7e5R0v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkGh7e5R0v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkGh7e5R0v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkGh7e5R0v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkGh7e5R0v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkGh7e5R0v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkGh7e5R0v .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tkGh7e5R0v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkGh7e5R0v .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tkGh7e5R0v .navbar {
    height: 70px;
  }
  .cid-tkGh7e5R0v .navbar.opened {
    height: auto;
  }
  .cid-tkGh7e5R0v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkGh7fdLYg {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkGh7fdLYg .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tkGh7fdLYg .mbr-text {
  color: #332002;
}
.cid-tlraXS5De1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlraXS5De1 .mbr-text {
  color: #332002;
}
.cid-tkGh7gzrsV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkGh7gzrsV .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tkGh7gzrsV .mbr-text {
  color: #332002;
}
.cid-tlrbgITYaY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlrbgITYaY .mbr-text {
  color: #332002;
}
.cid-tkGh7hYoO2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkGh7hYoO2 .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tkGh7hYoO2 .mbr-text {
  color: #332002;
}
.cid-tlrbyKP1EO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tlrbyKP1EO .mbr-text {
  color: #332002;
}
.cid-tvLHt00QQS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tvLHt00QQS .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tvLHt00QQS .mbr-text {
  color: #332002;
}
.cid-tvLHqzqyoO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tvLHqzqyoO .video-wrapper iframe {
  width: 100%;
}
.cid-tvLHqzqyoO .mbr-section-title,
.cid-tvLHqzqyoO .mbr-section-subtitle,
.cid-tvLHqzqyoO .mbr-text {
  text-align: center;
}
.cid-tkGh7iz4Bs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tkGh7iz4Bs .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tkGh7iz4Bs .mbr-text {
  color: #332002;
}
.cid-tkGh7iL2ik {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #332002;
}
.cid-tkGh7iL2ik .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkGh7iL2ik .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkGh7iL2ik .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #a29475;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tkGh7iL2ik .mbr-text {
  color: #ffffff;
}
.cid-tkGh7jis9H {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkGh7jis9H .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tkGh7jis9H .mbr-text {
  color: #332002;
}
.cid-tkGh7jtfDq {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkGh7jtfDq .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-tkGh7jtfDq .item .icon-wrap {
  text-align: center;
}
.cid-tkGh7jtfDq .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 97%;
  color: #a29475;
  transform: translate(-50%, 0);
}
.cid-tkGh7jtfDq .item:last-child:before {
  display: none;
}
.cid-tkGh7jtfDq .item.last::before {
  display: none;
}
.cid-tkGh7jtfDq .icon-box {
  background: #a29475;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tkGh7jtfDq .text-box {
  text-align: center;
}
.cid-tkGh7jtfDq span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-tkGh7jtfDq .card {
    margin-bottom: 2rem;
  }
  .cid-tkGh7jtfDq .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tkGh7jtfDq .card-title,
.cid-tkGh7jtfDq .card-box {
  color: #332002;
}
.cid-tkGh7jtfDq .mbr-text,
.cid-tkGh7jtfDq .mbr-section-btn {
  color: #332002;
}
.cid-tkGh7jtfDq .icon-text {
  color: #332002;
}
.cid-tkGh7jtfDq .icon-title,
.cid-tkGh7jtfDq .item .icon-wrap {
  color: #332002;
}
.cid-tkGh7mz30s {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tkGh7mz30s .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tkGh7mz30s .mbr-text {
  color: #332002;
}
.cid-tkGh7mU8HI {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #a29475;
}
.cid-tkGh7mU8HI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-tkGh7mU8HI form {
    width: 50%;
  }
}
.cid-tkGh7mU8HI form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tkGh7mU8HI form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tkGh7nfFyt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #332002;
}
.cid-tkGh7nfFyt .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tkGh7nfFyt .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tkGh7nfFyt .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tkGh7nfFyt .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tkGh7nfFyt .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tkGh7nfFyt .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tkGh7nfFyt .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tkGh7nfFyt .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tkGh7nfFyt .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tkGh7nfFyt .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tkGh7nfFyt .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tkGh7nfFyt .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tkGh7nfFyt .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tkGh7nfFyt .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tlrdvwRYrE {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/a0f14991e1249b74859c359a9b774357.webp");
}
.cid-tlrdvwRYrE .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tlrdvwRYrE .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #a29475;
  transition: all 0.3s;
  color: #a29475;
}
.cid-tlrdvwRYrE .social-row .soc-item .mbr-iconfont:hover {
  background-color: #a29475;
  color: #ffffff;
}
.cid-tlrdvwRYrE .mbr-section-title {
  color: #ffffff;
}
.cid-tlrdvwRYrE .mbr-text,
.cid-tlrdvwRYrE .mbr-section-btn,
.cid-tlrdvwRYrE .social-row {
  color: #332002;
}
.cid-tlrdvAfNjI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlrdvAfNjI nav.navbar {
  position: fixed;
}
.cid-tlrdvAfNjI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlrdvAfNjI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlrdvAfNjI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlrdvAfNjI .dropdown-item:hover,
.cid-tlrdvAfNjI .dropdown-item:focus {
  background: #332002 !important;
  color: white !important;
}
.cid-tlrdvAfNjI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlrdvAfNjI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlrdvAfNjI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlrdvAfNjI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlrdvAfNjI .nav-link {
  position: relative;
}
.cid-tlrdvAfNjI .container {
  display: flex;
  margin: auto;
}
.cid-tlrdvAfNjI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlrdvAfNjI .dropdown-menu,
.cid-tlrdvAfNjI .navbar.opened {
  background: #332002 !important;
}
.cid-tlrdvAfNjI .nav-item:focus,
.cid-tlrdvAfNjI .nav-link:focus {
  outline: none;
}
.cid-tlrdvAfNjI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlrdvAfNjI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlrdvAfNjI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlrdvAfNjI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlrdvAfNjI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlrdvAfNjI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlrdvAfNjI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #332002;
}
.cid-tlrdvAfNjI .navbar.opened {
  transition: all 0.3s;
}
.cid-tlrdvAfNjI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlrdvAfNjI .navbar .navbar-logo img {
  width: auto;
}
.cid-tlrdvAfNjI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlrdvAfNjI .navbar.collapsed {
  justify-content: center;
}
.cid-tlrdvAfNjI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlrdvAfNjI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tlrdvAfNjI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlrdvAfNjI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlrdvAfNjI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlrdvAfNjI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlrdvAfNjI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlrdvAfNjI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlrdvAfNjI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlrdvAfNjI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlrdvAfNjI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlrdvAfNjI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlrdvAfNjI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlrdvAfNjI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlrdvAfNjI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlrdvAfNjI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlrdvAfNjI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlrdvAfNjI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlrdvAfNjI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tlrdvAfNjI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlrdvAfNjI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlrdvAfNjI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlrdvAfNjI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlrdvAfNjI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlrdvAfNjI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlrdvAfNjI .dropdown-item.active,
.cid-tlrdvAfNjI .dropdown-item:active {
  background-color: transparent;
}
.cid-tlrdvAfNjI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlrdvAfNjI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlrdvAfNjI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlrdvAfNjI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #332002;
}
.cid-tlrdvAfNjI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlrdvAfNjI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlrdvAfNjI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlrdvAfNjI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlrdvAfNjI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlrdvAfNjI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tlrdvAfNjI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlrdvAfNjI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlrdvAfNjI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlrdvAfNjI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlrdvAfNjI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlrdvAfNjI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlrdvAfNjI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlrdvAfNjI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlrdvAfNjI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlrdvAfNjI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlrdvAfNjI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tlrdvAfNjI .navbar {
    height: 70px;
  }
  .cid-tlrdvAfNjI .navbar.opened {
    height: auto;
  }
  .cid-tlrdvAfNjI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlrdvBjipw {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tlrdvBjipw .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tlrdvBjipw .mbr-text {
  color: #332002;
}
.cid-tlrdvBEi73 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlrdvBEi73 .mbr-text {
  color: #332002;
}
.cid-tlrdvBWrxE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tlrdvBWrxE .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tlrdvBWrxE .mbr-text {
  color: #332002;
}
.cid-tlrdvC8efX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlrdvC8efX .mbr-text {
  color: #332002;
}
.cid-tlrdvClNvn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlrdvClNvn .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tlrdvClNvn .mbr-text {
  color: #332002;
}
.cid-tlrfdkPqaF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlrfdkPqaF .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tlrfdkPqaF .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tlrfdkPqaF .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #a29475;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tlrdvCxV3h {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tlrdvCxV3h .mbr-text {
  color: #332002;
}
.cid-tlrdvCK7AP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tlrdvCK7AP .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tlrdvCK7AP .mbr-text {
  color: #332002;
}
.cid-tlrdvCWdY2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #332002;
}
.cid-tlrdvCWdY2 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tlrdvCWdY2 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tlrdvCWdY2 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #a29475;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tlrdvCWdY2 .mbr-text {
  color: #ffffff;
}
.cid-tlrdvDdUrn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlrdvDdUrn .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tlrdvDdUrn .mbr-text {
  color: #332002;
}
.cid-tlrdvDp63t {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlrdvDp63t .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-tlrdvDp63t .item .icon-wrap {
  text-align: center;
}
.cid-tlrdvDp63t .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 97%;
  color: #a29475;
  transform: translate(-50%, 0);
}
.cid-tlrdvDp63t .item:last-child:before {
  display: none;
}
.cid-tlrdvDp63t .item.last::before {
  display: none;
}
.cid-tlrdvDp63t .icon-box {
  background: #a29475;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tlrdvDp63t .text-box {
  text-align: center;
}
.cid-tlrdvDp63t span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-tlrdvDp63t .card {
    margin-bottom: 2rem;
  }
  .cid-tlrdvDp63t .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tlrdvDp63t .card-title,
.cid-tlrdvDp63t .card-box {
  color: #332002;
}
.cid-tlrdvDp63t .mbr-text,
.cid-tlrdvDp63t .mbr-section-btn {
  color: #332002;
}
.cid-tlrdvDp63t .icon-text {
  color: #332002;
}
.cid-tlrdvDp63t .icon-title,
.cid-tlrdvDp63t .item .icon-wrap {
  color: #332002;
}
.cid-tlrdvEaTFT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tlrdvEaTFT .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tlrdvEaTFT .mbr-text {
  color: #332002;
}
.cid-tlrdvEnYrV {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #a29475;
}
.cid-tlrdvEnYrV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-tlrdvEnYrV form {
    width: 50%;
  }
}
.cid-tlrdvEnYrV form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlrdvEnYrV form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tlrdvEG81H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #332002;
}
.cid-tlrdvEG81H .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlrdvEG81H .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlrdvEG81H .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlrdvEG81H .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlrdvEG81H .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlrdvEG81H .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tlrdvEG81H .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlrdvEG81H .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlrdvEG81H .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlrdvEG81H .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlrdvEG81H .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlrdvEG81H .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlrdvEG81H .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlrdvEG81H .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tlrhra4Aaj {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/tanya-1280x878.jpg");
}
.cid-tlrhra4Aaj .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tlrhra4Aaj .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #a29475;
  transition: all 0.3s;
  color: #a29475;
}
.cid-tlrhra4Aaj .social-row .soc-item .mbr-iconfont:hover {
  background-color: #a29475;
  color: #ffffff;
}
.cid-tlrhra4Aaj .mbr-section-title {
  color: #ffffff;
}
.cid-tlrhra4Aaj .mbr-text,
.cid-tlrhra4Aaj .mbr-section-btn,
.cid-tlrhra4Aaj .social-row {
  color: #332002;
}
.cid-tlrhrcpKp4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlrhrcpKp4 nav.navbar {
  position: fixed;
}
.cid-tlrhrcpKp4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlrhrcpKp4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlrhrcpKp4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlrhrcpKp4 .dropdown-item:hover,
.cid-tlrhrcpKp4 .dropdown-item:focus {
  background: #332002 !important;
  color: white !important;
}
.cid-tlrhrcpKp4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlrhrcpKp4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlrhrcpKp4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlrhrcpKp4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlrhrcpKp4 .nav-link {
  position: relative;
}
.cid-tlrhrcpKp4 .container {
  display: flex;
  margin: auto;
}
.cid-tlrhrcpKp4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlrhrcpKp4 .dropdown-menu,
.cid-tlrhrcpKp4 .navbar.opened {
  background: #332002 !important;
}
.cid-tlrhrcpKp4 .nav-item:focus,
.cid-tlrhrcpKp4 .nav-link:focus {
  outline: none;
}
.cid-tlrhrcpKp4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlrhrcpKp4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlrhrcpKp4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlrhrcpKp4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlrhrcpKp4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlrhrcpKp4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlrhrcpKp4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #332002;
}
.cid-tlrhrcpKp4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tlrhrcpKp4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlrhrcpKp4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tlrhrcpKp4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlrhrcpKp4 .navbar.collapsed {
  justify-content: center;
}
.cid-tlrhrcpKp4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlrhrcpKp4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tlrhrcpKp4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlrhrcpKp4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlrhrcpKp4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlrhrcpKp4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlrhrcpKp4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlrhrcpKp4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlrhrcpKp4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlrhrcpKp4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlrhrcpKp4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlrhrcpKp4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlrhrcpKp4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlrhrcpKp4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlrhrcpKp4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlrhrcpKp4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlrhrcpKp4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlrhrcpKp4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlrhrcpKp4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tlrhrcpKp4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlrhrcpKp4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlrhrcpKp4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlrhrcpKp4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlrhrcpKp4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlrhrcpKp4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlrhrcpKp4 .dropdown-item.active,
.cid-tlrhrcpKp4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tlrhrcpKp4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlrhrcpKp4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlrhrcpKp4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlrhrcpKp4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #332002;
}
.cid-tlrhrcpKp4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlrhrcpKp4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlrhrcpKp4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlrhrcpKp4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlrhrcpKp4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlrhrcpKp4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tlrhrcpKp4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlrhrcpKp4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlrhrcpKp4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlrhrcpKp4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlrhrcpKp4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlrhrcpKp4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlrhrcpKp4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlrhrcpKp4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlrhrcpKp4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlrhrcpKp4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlrhrcpKp4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tlrhrcpKp4 .navbar {
    height: 70px;
  }
  .cid-tlrhrcpKp4 .navbar.opened {
    height: auto;
  }
  .cid-tlrhrcpKp4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlrijbRxHD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tlrijbRxHD .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tlrijbRxHD .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tlrijbRxHD .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #a29475;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tlrijbRxHD .mbr-text {
  color: #332002;
}
.cid-tlrhrmwFpp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tlrhrmwFpp .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tlrhrmwFpp .mbr-text {
  color: #332002;
}
.cid-tlrhrnbAor {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #a29475;
}
.cid-tlrhrnbAor .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-tlrhrnbAor form {
    width: 50%;
  }
}
.cid-tlrhrnbAor form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tlrhrnbAor form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tlrl4FWHGR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tlrl4FWHGR .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #332002;
  margin-bottom: 2rem;
}
.cid-tlrl4FWHGR .card-wrapper {
  padding: 3rem;
  background: #332002;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tlrl4FWHGR .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tlrl4FWHGR .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tlrl4FWHGR .mbr-section-title {
  color: #a29475;
}
.cid-tlrl4FWHGR .card-title {
  color: #ffffff;
}
.cid-tlrl4FWHGR .mbr-text {
  color: #ffffff;
}
.cid-tlrhromeot {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #332002;
}
.cid-tlrhromeot .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tlrhromeot .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tlrhromeot .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tlrhromeot .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlrhromeot .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlrhromeot .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tlrhromeot .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlrhromeot .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlrhromeot .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlrhromeot .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlrhromeot .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlrhromeot .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlrhromeot .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlrhromeot .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-txyRwl8ojw {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/podbor-personala-1600x1023.jpg");
}
.cid-txyRwl8ojw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-txyRwl8ojw .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #a29475;
  transition: all 0.3s;
  color: #a29475;
}
.cid-txyRwl8ojw .social-row .soc-item .mbr-iconfont:hover {
  background-color: #a29475;
  color: #ffffff;
}
.cid-txyRwl8ojw .mbr-section-title {
  color: #ffffff;
}
.cid-txyRwl8ojw .mbr-text,
.cid-txyRwl8ojw .mbr-section-btn,
.cid-txyRwl8ojw .social-row {
  color: #332002;
}
.cid-txyZL08P5w {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txyZL08P5w .mbr-text {
  color: #332002;
}
.cid-txyRwlq2VN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-txyRwlq2VN nav.navbar {
  position: fixed;
}
.cid-txyRwlq2VN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txyRwlq2VN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txyRwlq2VN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txyRwlq2VN .dropdown-item:hover,
.cid-txyRwlq2VN .dropdown-item:focus {
  background: #332002 !important;
  color: white !important;
}
.cid-txyRwlq2VN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txyRwlq2VN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txyRwlq2VN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-txyRwlq2VN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txyRwlq2VN .nav-link {
  position: relative;
}
.cid-txyRwlq2VN .container {
  display: flex;
  margin: auto;
}
.cid-txyRwlq2VN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-txyRwlq2VN .dropdown-menu,
.cid-txyRwlq2VN .navbar.opened {
  background: #332002 !important;
}
.cid-txyRwlq2VN .nav-item:focus,
.cid-txyRwlq2VN .nav-link:focus {
  outline: none;
}
.cid-txyRwlq2VN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txyRwlq2VN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txyRwlq2VN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-txyRwlq2VN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txyRwlq2VN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txyRwlq2VN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txyRwlq2VN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #332002;
}
.cid-txyRwlq2VN .navbar.opened {
  transition: all 0.3s;
}
.cid-txyRwlq2VN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txyRwlq2VN .navbar .navbar-logo img {
  width: auto;
}
.cid-txyRwlq2VN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txyRwlq2VN .navbar.collapsed {
  justify-content: center;
}
.cid-txyRwlq2VN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txyRwlq2VN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-txyRwlq2VN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txyRwlq2VN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txyRwlq2VN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-txyRwlq2VN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txyRwlq2VN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-txyRwlq2VN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-txyRwlq2VN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txyRwlq2VN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txyRwlq2VN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txyRwlq2VN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txyRwlq2VN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-txyRwlq2VN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txyRwlq2VN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txyRwlq2VN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txyRwlq2VN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txyRwlq2VN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txyRwlq2VN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-txyRwlq2VN .navbar.navbar-short {
  min-height: 60px;
}
.cid-txyRwlq2VN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txyRwlq2VN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txyRwlq2VN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txyRwlq2VN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txyRwlq2VN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txyRwlq2VN .dropdown-item.active,
.cid-txyRwlq2VN .dropdown-item:active {
  background-color: transparent;
}
.cid-txyRwlq2VN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txyRwlq2VN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txyRwlq2VN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txyRwlq2VN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #332002;
}
.cid-txyRwlq2VN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txyRwlq2VN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txyRwlq2VN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-txyRwlq2VN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txyRwlq2VN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txyRwlq2VN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txyRwlq2VN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txyRwlq2VN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txyRwlq2VN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txyRwlq2VN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txyRwlq2VN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txyRwlq2VN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txyRwlq2VN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txyRwlq2VN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txyRwlq2VN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txyRwlq2VN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txyRwlq2VN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txyRwlq2VN .navbar {
    height: 70px;
  }
  .cid-txyRwlq2VN .navbar.opened {
    height: auto;
  }
  .cid-txyRwlq2VN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txyTRWDS6f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txyTRWDS6f .mbr-fallback-image.disabled {
  display: none;
}
.cid-txyTRWDS6f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txyTRWDS6f .nav-tabs .nav-item.open .nav-link:focus,
.cid-txyTRWDS6f .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-txyTRWDS6f .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #4a3514;
}
@media (max-width: 767px) {
  .cid-txyTRWDS6f .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-txyTRWDS6f .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-txyTRWDS6f .nav-tabs .nav-link:not(.active) {
  color: #a29475;
}
.cid-txyTRWDS6f .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-txyTRWDS6f .nav-link,
.cid-txyTRWDS6f .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-txyTRWDS6f .nav-tabs .nav-link.active {
  color: #4a3514;
  border-bottom: 3px solid #4a3514;
}
.cid-txyTRWDS6f H4 {
  text-align: center;
}
.cid-txyTRWDS6f H3 {
  text-align: center;
}
.cid-txyTRWDS6f P {
  color: #332002;
}
.cid-txyRwlWk7u {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txyRwlWk7u .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txyRwlWk7u .mbr-text {
  color: #332002;
}
.cid-txyRwmOr4x {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #332002;
}
.cid-txyRwmOr4x .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-txyRwmOr4x .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-txyRwmOr4x .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #a29475;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-txyRwmOr4x .mbr-text {
  color: #ffffff;
}
.cid-txyRwmg5aO {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txyRwmg5aO .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txyRwmg5aO .mbr-text {
  color: #332002;
}
.cid-txyVUqKGLd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txyVUqKGLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-txyVUqKGLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-txyVUqKGLd .container {
    max-width: 1400px;
  }
}
.cid-txyVUqKGLd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #a29475;
  margin-bottom: 2rem;
}
.cid-txyVUqKGLd .card-wrapper {
  margin-top: 3rem;
}
.cid-txyVUqKGLd .row {
  justify-content: center;
}
.cid-txyVUqKGLd .card-text {
  color: #332002;
}
.cid-txyW3TdcEP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txyW3TdcEP .mbr-fallback-image.disabled {
  display: none;
}
.cid-txyW3TdcEP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-txyW3TdcEP .container {
    max-width: 1400px;
  }
}
.cid-txyW3TdcEP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #a29475;
  margin-bottom: 2rem;
}
.cid-txyW3TdcEP .card-wrapper {
  margin-top: 3rem;
}
.cid-txyW3TdcEP .row {
  justify-content: center;
}
.cid-txyW3TdcEP .card-text {
  color: #332002;
}
.cid-txyRwmXpy4 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txyRwmXpy4 .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txyRwmXpy4 .mbr-text {
  color: #332002;
}
.cid-txyU3FGTaJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txyU3FGTaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txyU3FGTaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txyU3FGTaJ .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-txyU3FGTaJ .item {
    margin-bottom: 4rem;
  }
}
.cid-txyU3FGTaJ .item:last-child .icon-box:before {
  display: none;
}
.cid-txyU3FGTaJ .item.last .icon-box:before {
  display: none;
}
.cid-txyU3FGTaJ .icon-box {
  background: #a29475;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-txyU3FGTaJ .icon-box {
    margin-right: 1rem;
  }
}
.cid-txyU3FGTaJ .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #a29475;
  transform: translate(-50%, 0);
}
.cid-txyU3FGTaJ span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-txyU3FGTaJ .card {
    margin-bottom: 2rem;
  }
  .cid-txyU3FGTaJ .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-txyU3FGTaJ .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-txyU3FGTaJ .icon-box::before {
    top: 114%;
  }
}
.cid-txyU3FGTaJ .icon-title {
  color: #a29475;
}
.cid-txyU3FGTaJ .icon-text {
  color: #332002;
}
.cid-txyYyJ53le {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txyYyJ53le .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txyYyJ53le .mbr-text {
  color: #332002;
}
.cid-txyYT9D48h {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-txyYT9D48h .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-txyYT9D48h .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-txyYT9D48h .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #a29475;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-txyYT9D48h .mbr-text {
  color: #332002;
}
.cid-txyRwnCg0F {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txyRwnCg0F .line {
  background-color: #4a3514;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txyRwnCg0F .mbr-text {
  color: #332002;
}
.cid-txyRwnNogL {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #a29475;
}
.cid-txyRwnNogL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-txyRwnNogL form {
    width: 50%;
  }
}
.cid-txyRwnNogL form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-txyRwnNogL form .mbr-section-btn .btn {
  width: 100%;
}
.cid-txyRwnY9N1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #332002;
}
.cid-txyRwnY9N1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-txyRwnY9N1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-txyRwnY9N1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-txyRwnY9N1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-txyRwnY9N1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-txyRwnY9N1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-txyRwnY9N1 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txyRwnY9N1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-txyRwnY9N1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txyRwnY9N1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-txyRwnY9N1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txyRwnY9N1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-txyRwnY9N1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-txyRwnY9N1 .media-container-row .row-copirayt p {
  width: 100%;
}
