body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Vollkorn', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Vollkorn', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Edmunds Distressed (1)';
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2rem;
}
.display-5 {
  font-family: 'Vollkorn', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Vollkorn', serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #72ad13 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffdf53 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #72ad13 !important;
  border-color: #72ad13 !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: #3f5f0a !important;
  border-color: #3f5f0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3f5f0a !important;
  border-color: #3f5f0a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffdf53 !important;
  border-color: #ffdf53 !important;
  color: #534400 !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: #000000 !important;
  background-color: #fbcd00 !important;
  border-color: #fbcd00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #534400 !important;
  background-color: #fbcd00 !important;
  border-color: #fbcd00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #72ad13;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3f5f0a !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: #72ad13 !important;
  border-color: #72ad13 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b39617 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdf53;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fbcd00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #534400 !important;
  background-color: #ffdf53 !important;
  border-color: #ffdf53 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #72ad13 !important;
}
.text-secondary {
  color: #e6c63b !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffdf53 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #355109 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a68b15 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ecc000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #72ad13;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffdf53;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #72ad13;
  border-color: #72ad13;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #72ad13;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b2ec53;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Edmunds Distressed (1)';
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
.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: #72ad13 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Edmunds Distressed (1)';
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #72ad13;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #72ad13;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #72ad13;
}
.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: #72ad13;
  border-bottom-color: #72ad13;
}
.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: #000000 !important;
  background-color: #72ad13 !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: #e6c63b !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='%2372ad13' %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-tDdgR9GX9r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDdgR9GX9r nav.navbar {
  position: fixed;
}
.cid-tDdgR9GX9r .nav-link {
  justify-content: center;
  transition: all .5s;
  border-bottom: 1px solid transparent;
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-tDdgR9GX9r .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-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-tDdgR9GX9r .nav-link:hover,
.cid-tDdgR9GX9r .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-tDdgR9GX9r .nav-item {
    position: relative;
  }
}
.cid-tDdgR9GX9r .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tDdgR9GX9r .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDdgR9GX9r .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show .brand-container,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tDdgR9GX9r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDdgR9GX9r .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-tDdgR9GX9r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDdgR9GX9r .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tDdgR9GX9r .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tDdgR9GX9r .navbar .right-menu,
  .cid-tDdgR9GX9r .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tDdgR9GX9r .navbar.navbar-short {
  min-height: 60px;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar {
    padding: 2rem 1rem;
  }
  .cid-tDdgR9GX9r .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tDdgR9GX9r .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDdgR9GX9r .dropdown-item.active,
.cid-tDdgR9GX9r .dropdown-item:active {
  background-color: transparent;
}
.cid-tDdgR9GX9r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDdgR9GX9r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDdgR9GX9r ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tDdgR9GX9r .navbar-buttons {
  margin-left: auto;
}
.cid-tDdgR9GX9r button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:hover {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:active {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r .navbar-dropdown {
  position: fixed;
}
.cid-tDdgR9GX9r a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tDdgR9GX9r .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDdgR9GX9r .right-menu,
.cid-tDdgR9GX9r .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .brand-container {
    padding: 0;
  }
}
.cid-tDdgR9GX9r .card-wrapper {
  z-index: 3;
}
.cid-tDdgR9GX9r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tDdgR9GX9r .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
.cid-tDdgR9GX9r .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tDdgR9GX9r .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tDdgR9GX9r .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    border: 1px solid #41392e;
  }
}
.cid-tDdgR9GX9r .navbar-caption {
  color: #ffffff;
}
.cid-tDdgR9GX9r .navbar-caption:hover {
  color: #ffffff;
}
.cid-tDdgR9GX9r .dropdown-item:hover {
  color: #72ad13 !important;
}
.cid-tDdgR9GX9r a:hover .line-animation,
.cid-tDdgR9GX9r a:focus .line-animation {
  opacity: 1;
}
.cid-tDdgR9GX9r .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDdgR9GX9r .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-tD8Wha3hZb {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tD8Wha3hZb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD8Wha3hZb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD8Wha3hZb .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tD8Wha3hZb .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-tD8Wha3hZb .mbr-section-title {
  color: #e6c63b;
}
.cid-tD8Wha3hZb .mbr-text,
.cid-tD8Wha3hZb .mbr-section-btn {
  color: #ffffff;
}
.cid-tDcukPbCDk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDcukPbCDk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcukPbCDk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcukPbCDk .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tDcukPbCDk .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tDcukPbCDk .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tDcukPbCDk .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tDcukPbCDk .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tDcukPbCDk .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tDcukPbCDk .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tDcukPbCDk .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tDcukPbCDk .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tDcukPbCDk .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tDcukPbCDk .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tDcukPbCDk .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tDcukPbCDk .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tDcukPbCDk .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tDcukPbCDk [class^="socicon-"]:before,
.cid-tDcukPbCDk [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tDcsfYwpS1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDcsfYwpS1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcsfYwpS1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDcsfYwpS1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDcsfYwpS1 img {
  border-radius: 2rem;
}
.cid-tDcsfYwpS1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tDcsfYwpS1 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tDcsfYwpS1 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDcsfYwpS1 .mbr-section-title {
  color: #e6c63b;
}
.cid-tDcsfYwpS1 .mbr-text,
.cid-tDcsfYwpS1 .mbr-section-btn {
  color: #ffffff;
}
.cid-tDdh9n25sr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDdh9n25sr .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tDdh9n25sr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tDdh9n25sr .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdh9n25sr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tDdh9n25sr .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDdh9n25sr .media-container-row .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDdh9n25sr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDdh9n25sr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDdh9n25sr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .mbr-text {
  color: #e6c63b;
}
.cid-tDcGHCmgrR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDcGHCmgrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcGHCmgrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcGHCmgrR .row {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-tDcGHCmgrR .row {
    flex-direction: column-reverse;
  }
  .cid-tDcGHCmgrR .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-tDcGHCmgrR .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tDcGHCmgrR .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDcGHCmgrR .media-content,
.cid-tDcGHCmgrR .mbr-figure {
  align-self: center;
}
.cid-tDcGHCmgrR .mbr-figure iframe {
  width: 100%;
}
.cid-tDcGHCmgrR .mbr-section-title {
  color: #e6c63b;
}
.cid-tDcGHCmgrR .mbr-text,
.cid-tDcGHCmgrR .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tDcyJJJgid {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDcyJJJgid .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcyJJJgid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcyJJJgid .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tDcyJJJgid .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tDcyJJJgid .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tDcyJJJgid .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tDcyJJJgid .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tDcyJJJgid .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tDcyJJJgid .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tDcyJJJgid .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tDcyJJJgid .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tDcyJJJgid .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tDcyJJJgid .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tDcyJJJgid .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tDcyJJJgid .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tDcyJJJgid .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tDcyJJJgid [class^="socicon-"]:before,
.cid-tDcyJJJgid [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tDcyJKaKZu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDcyJKaKZu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcyJKaKZu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcyJKaKZu .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tDcyJKaKZu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDcyJKaKZu img {
  border-radius: 2rem;
}
.cid-tDcyJKaKZu .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tDcyJKaKZu .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tDcyJKaKZu .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDcyJKaKZu .mbr-section-title {
  color: #e6c63b;
}
.cid-tDcyJKaKZu .mbr-text,
.cid-tDcyJKaKZu .mbr-section-btn {
  color: #ffffff;
}
.cid-tDcNCIlV0v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDcNCIlV0v .line {
  background-color: #6b4c3e;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDcL0GAFmf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDcL0GAFmf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcL0GAFmf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDcL0GAFmf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDcL0GAFmf img {
  border-radius: 2rem;
}
.cid-tDcL0GAFmf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tDcL0GAFmf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tDcL0GAFmf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDcL0GAFmf .mbr-section-title {
  color: #e6c63b;
}
.cid-tDcL0GAFmf .mbr-text,
.cid-tDcL0GAFmf .mbr-section-btn {
  color: #ffffff;
}
.cid-tDcNL42Lwf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDcNL42Lwf .line {
  background-color: #6b4c3e;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDcMjXi9f8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDcMjXi9f8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcMjXi9f8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcMjXi9f8 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tDcMjXi9f8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDcMjXi9f8 img {
  border-radius: 2rem;
}
.cid-tDcMjXi9f8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tDcMjXi9f8 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tDcMjXi9f8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDcMjXi9f8 .mbr-section-title {
  color: #e6c63b;
}
.cid-tDcMjXi9f8 .mbr-text,
.cid-tDcMjXi9f8 .mbr-section-btn {
  color: #ffffff;
}
.cid-tDdgR9GX9r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDdgR9GX9r nav.navbar {
  position: fixed;
}
.cid-tDdgR9GX9r .nav-link {
  justify-content: center;
  transition: all .5s;
  border-bottom: 1px solid transparent;
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-tDdgR9GX9r .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-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-tDdgR9GX9r .nav-link:hover,
.cid-tDdgR9GX9r .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-tDdgR9GX9r .nav-item {
    position: relative;
  }
}
.cid-tDdgR9GX9r .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tDdgR9GX9r .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDdgR9GX9r .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show .brand-container,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tDdgR9GX9r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDdgR9GX9r .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-tDdgR9GX9r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDdgR9GX9r .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tDdgR9GX9r .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tDdgR9GX9r .navbar .right-menu,
  .cid-tDdgR9GX9r .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tDdgR9GX9r .navbar.navbar-short {
  min-height: 60px;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar {
    padding: 2rem 1rem;
  }
  .cid-tDdgR9GX9r .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tDdgR9GX9r .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDdgR9GX9r .dropdown-item.active,
.cid-tDdgR9GX9r .dropdown-item:active {
  background-color: transparent;
}
.cid-tDdgR9GX9r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDdgR9GX9r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDdgR9GX9r ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tDdgR9GX9r .navbar-buttons {
  margin-left: auto;
}
.cid-tDdgR9GX9r button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:hover {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:active {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r .navbar-dropdown {
  position: fixed;
}
.cid-tDdgR9GX9r a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tDdgR9GX9r .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDdgR9GX9r .right-menu,
.cid-tDdgR9GX9r .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .brand-container {
    padding: 0;
  }
}
.cid-tDdgR9GX9r .card-wrapper {
  z-index: 3;
}
.cid-tDdgR9GX9r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tDdgR9GX9r .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
.cid-tDdgR9GX9r .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tDdgR9GX9r .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tDdgR9GX9r .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    border: 1px solid #41392e;
  }
}
.cid-tDdgR9GX9r .navbar-caption {
  color: #ffffff;
}
.cid-tDdgR9GX9r .navbar-caption:hover {
  color: #ffffff;
}
.cid-tDdgR9GX9r .dropdown-item:hover {
  color: #72ad13 !important;
}
.cid-tDdgR9GX9r a:hover .line-animation,
.cid-tDdgR9GX9r a:focus .line-animation {
  opacity: 1;
}
.cid-tDdgR9GX9r .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDdgR9GX9r .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-tDdh9n25sr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDdh9n25sr .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tDdh9n25sr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tDdh9n25sr .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdh9n25sr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tDdh9n25sr .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDdh9n25sr .media-container-row .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDdh9n25sr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDdh9n25sr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDdh9n25sr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .mbr-text {
  color: #e6c63b;
}
.cid-tDczKNtlBG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDczKNtlBG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDczKNtlBG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tDczKNtlBG .row {
    flex-direction: column-reverse;
  }
  .cid-tDczKNtlBG .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-tDczKNtlBG .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tDczKNtlBG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDczKNtlBG .media-content,
.cid-tDczKNtlBG .mbr-figure {
  align-self: center;
}
.cid-tDczKNtlBG .mbr-figure iframe {
  width: 100%;
}
.cid-tDczKNtlBG .mbr-section-title {
  color: #e6c63b;
}
.cid-tDczKNtlBG .mbr-text,
.cid-tDczKNtlBG .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tDcAhxFxZQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDcAhxFxZQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcAhxFxZQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDcAhxFxZQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDcAhxFxZQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tDcAhxFxZQ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDcAN2Bsgk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDcAN2Bsgk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcAN2Bsgk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcAN2Bsgk .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tDcAN2Bsgk .container-fluid {
    padding: 0 12px;
  }
}
.cid-tDcAN2Bsgk .row {
  margin-top: -3px;
  display: flex;
  justify-content: center;
  padding: 64px 28px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tDcAN2Bsgk .row {
    padding: 48px 20px;
  }
}
.cid-tDcAN2Bsgk .row:before {
  content: '';
  position: absolute;
  top: 8rem;
  width: 200vh;
  height: 300px;
  display: block;
  background-color: transparent;
  border: 5px solid #ff773d;
  border-radius: 100%;
}
.cid-tDcAN2Bsgk .card {
  border-right: 0;
  transform: rotate(17deg);
}
@media (max-width: 992px) {
  .cid-tDcAN2Bsgk .card {
    margin: 0 !important;
  }
}
.cid-tDcAN2Bsgk .card:nth-child(2) {
  transform: rotate(347deg);
  margin-top: 5rem;
}
.cid-tDcAN2Bsgk .card:last-child {
  transform: rotate(1deg);
  margin-left: -3rem;
  margin-top: -2.5rem;
}
.cid-tDcAN2Bsgk .card .image-wrapper {
  padding: 20px;
  border-radius: 16px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tDcAN2Bsgk .card .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-tDcAN2Bsgk .card .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
.cid-tDcAN2Bsgk .card .image-wrapper .mbr-text {
  margin-bottom: 0;
  margin-top: 10px;
}
.cid-tDcAN2Bsgk .mbr-text {
  color: #07553B;
  text-align: center;
}
.cid-tDcyLpGTaC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDcyLpGTaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcyLpGTaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcyLpGTaC .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tDcyLpGTaC .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tDcyLpGTaC .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tDcyLpGTaC .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tDcyLpGTaC .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tDcyLpGTaC .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tDcyLpGTaC .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tDcyLpGTaC .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tDcyLpGTaC .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tDcyLpGTaC .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tDcyLpGTaC .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tDcyLpGTaC .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tDcyLpGTaC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tDcyLpGTaC .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tDcyLpGTaC [class^="socicon-"]:before,
.cid-tDcyLpGTaC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tDdgR9GX9r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDdgR9GX9r nav.navbar {
  position: fixed;
}
.cid-tDdgR9GX9r .nav-link {
  justify-content: center;
  transition: all .5s;
  border-bottom: 1px solid transparent;
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-tDdgR9GX9r .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-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-tDdgR9GX9r .nav-link:hover,
.cid-tDdgR9GX9r .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-tDdgR9GX9r .nav-item {
    position: relative;
  }
}
.cid-tDdgR9GX9r .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tDdgR9GX9r .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDdgR9GX9r .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show .brand-container,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tDdgR9GX9r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDdgR9GX9r .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-tDdgR9GX9r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDdgR9GX9r .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tDdgR9GX9r .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tDdgR9GX9r .navbar .right-menu,
  .cid-tDdgR9GX9r .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tDdgR9GX9r .navbar.navbar-short {
  min-height: 60px;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar {
    padding: 2rem 1rem;
  }
  .cid-tDdgR9GX9r .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tDdgR9GX9r .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDdgR9GX9r .dropdown-item.active,
.cid-tDdgR9GX9r .dropdown-item:active {
  background-color: transparent;
}
.cid-tDdgR9GX9r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDdgR9GX9r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDdgR9GX9r ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tDdgR9GX9r .navbar-buttons {
  margin-left: auto;
}
.cid-tDdgR9GX9r button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:hover {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:active {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r .navbar-dropdown {
  position: fixed;
}
.cid-tDdgR9GX9r a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tDdgR9GX9r .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDdgR9GX9r .right-menu,
.cid-tDdgR9GX9r .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .brand-container {
    padding: 0;
  }
}
.cid-tDdgR9GX9r .card-wrapper {
  z-index: 3;
}
.cid-tDdgR9GX9r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tDdgR9GX9r .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
.cid-tDdgR9GX9r .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tDdgR9GX9r .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tDdgR9GX9r .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    border: 1px solid #41392e;
  }
}
.cid-tDdgR9GX9r .navbar-caption {
  color: #ffffff;
}
.cid-tDdgR9GX9r .navbar-caption:hover {
  color: #ffffff;
}
.cid-tDdgR9GX9r .dropdown-item:hover {
  color: #72ad13 !important;
}
.cid-tDdgR9GX9r a:hover .line-animation,
.cid-tDdgR9GX9r a:focus .line-animation {
  opacity: 1;
}
.cid-tDdgR9GX9r .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDdgR9GX9r .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-tDdh9n25sr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDdh9n25sr .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tDdh9n25sr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tDdh9n25sr .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdh9n25sr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tDdh9n25sr .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDdh9n25sr .media-container-row .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDdh9n25sr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDdh9n25sr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDdh9n25sr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .mbr-text {
  color: #e6c63b;
}
.cid-tDcOaeGhSE {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDcOaeGhSE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcOaeGhSE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tDcOaeGhSE .row {
    flex-direction: column-reverse;
  }
  .cid-tDcOaeGhSE .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-tDcOaeGhSE .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tDcOaeGhSE .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDcOaeGhSE .media-content,
.cid-tDcOaeGhSE .mbr-figure {
  align-self: center;
}
.cid-tDcOaeGhSE .mbr-figure iframe {
  width: 100%;
}
.cid-tDcOaeGhSE .mbr-section-title {
  color: #e6c63b;
}
.cid-tDcOaeGhSE .mbr-text,
.cid-tDcOaeGhSE .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tDcyMW3QCn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDcyMW3QCn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcyMW3QCn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcyMW3QCn .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tDcyMW3QCn .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tDcyMW3QCn .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tDcyMW3QCn .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tDcyMW3QCn .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tDcyMW3QCn .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tDcyMW3QCn .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tDcyMW3QCn .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tDcyMW3QCn .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tDcyMW3QCn .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tDcyMW3QCn .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tDcyMW3QCn .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tDcyMW3QCn .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tDcyMW3QCn .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tDcyMW3QCn [class^="socicon-"]:before,
.cid-tDcyMW3QCn [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tDdir8yZ8o {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDdir8yZ8o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDdir8yZ8o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDdir8yZ8o .content-wrapper {
  background: #6b4c3e;
}
@media (max-width: 991px) {
  .cid-tDdir8yZ8o .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDdir8yZ8o .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDdir8yZ8o .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDdir8yZ8o .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tDdir8yZ8o .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tDdir8yZ8o .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDdir8yZ8o .mbr-text,
.cid-tDdir8yZ8o .mbr-section-btn {
  color: #e6c63b;
}
.cid-tDcPckqIst {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pawsad-1920x1080.png");
}
.cid-tDcPckqIst .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcPckqIst .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcPckqIst .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tDcPckqIst .mbr-section-title,
.cid-tDcPckqIst .mbr-section-subtitle {
  text-align: center;
}
.cid-tDcPckqIst .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDcPckqIst .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tDcPckqIst .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tDcPckqIst .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDcPckqIst .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDcPckqIst .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDcPckqIst .mbr-section-title {
  color: #e6c63b;
}
.cid-tDcPckqIst .mbr-text {
  text-align: left;
}
.cid-tE4bLBhChF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1224.jpg");
}
.cid-tE4bLBhChF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE4bLBhChF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE4bLBhChF .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-tE4bLBhChF .currentcost {
  color: #232323;
}
.cid-tE4bLBhChF .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tE4bLBhChF .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tE4bLBhChF .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tE4bLBhChF .text-box {
    padding: 1rem;
  }
}
.cid-tE4bLBhChF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDd9NmqiHo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDd9NmqiHo .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tDd9NmqiHo form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-tDd9NmqiHo form.mbr-form {
    padding: 3rem 2rem;
    width: 70%;
  }
}
@media (max-width: 991px) {
  .cid-tDd9NmqiHo form.mbr-form {
    padding: 1rem;
  }
}
.cid-tDd9NmqiHo form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tDd9NmqiHo form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tDd9NmqiHo .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-tDd9NmqiHo .mbr-section-title {
  color: #e6c63b;
}
.cid-tDdgR9GX9r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDdgR9GX9r nav.navbar {
  position: fixed;
}
.cid-tDdgR9GX9r .nav-link {
  justify-content: center;
  transition: all .5s;
  border-bottom: 1px solid transparent;
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-tDdgR9GX9r .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-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-tDdgR9GX9r .nav-link:hover,
.cid-tDdgR9GX9r .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-tDdgR9GX9r .nav-item {
    position: relative;
  }
}
.cid-tDdgR9GX9r .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tDdgR9GX9r .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDdgR9GX9r .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show .brand-container,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tDdgR9GX9r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDdgR9GX9r .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-tDdgR9GX9r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDdgR9GX9r .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tDdgR9GX9r .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tDdgR9GX9r .navbar .right-menu,
  .cid-tDdgR9GX9r .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tDdgR9GX9r .navbar.navbar-short {
  min-height: 60px;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar {
    padding: 2rem 1rem;
  }
  .cid-tDdgR9GX9r .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tDdgR9GX9r .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDdgR9GX9r .dropdown-item.active,
.cid-tDdgR9GX9r .dropdown-item:active {
  background-color: transparent;
}
.cid-tDdgR9GX9r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDdgR9GX9r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDdgR9GX9r ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tDdgR9GX9r .navbar-buttons {
  margin-left: auto;
}
.cid-tDdgR9GX9r button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:hover {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:active {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r .navbar-dropdown {
  position: fixed;
}
.cid-tDdgR9GX9r a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tDdgR9GX9r .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDdgR9GX9r .right-menu,
.cid-tDdgR9GX9r .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .brand-container {
    padding: 0;
  }
}
.cid-tDdgR9GX9r .card-wrapper {
  z-index: 3;
}
.cid-tDdgR9GX9r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tDdgR9GX9r .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
.cid-tDdgR9GX9r .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tDdgR9GX9r .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tDdgR9GX9r .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    border: 1px solid #41392e;
  }
}
.cid-tDdgR9GX9r .navbar-caption {
  color: #ffffff;
}
.cid-tDdgR9GX9r .navbar-caption:hover {
  color: #ffffff;
}
.cid-tDdgR9GX9r .dropdown-item:hover {
  color: #72ad13 !important;
}
.cid-tDdgR9GX9r a:hover .line-animation,
.cid-tDdgR9GX9r a:focus .line-animation {
  opacity: 1;
}
.cid-tDdgR9GX9r .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDdgR9GX9r .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-tDdh9n25sr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDdh9n25sr .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tDdh9n25sr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tDdh9n25sr .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdh9n25sr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tDdh9n25sr .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDdh9n25sr .media-container-row .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDdh9n25sr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDdh9n25sr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDdh9n25sr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .mbr-text {
  color: #e6c63b;
}
.cid-tDdlbd1UZE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDdlbd1UZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDdlbd1UZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tDdlbd1UZE .row {
    flex-direction: column-reverse;
  }
  .cid-tDdlbd1UZE .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-tDdlbd1UZE .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tDdlbd1UZE .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDdlbd1UZE .media-content,
.cid-tDdlbd1UZE .mbr-figure {
  align-self: center;
}
.cid-tDdlbd1UZE .mbr-figure iframe {
  width: 100%;
}
.cid-tDdlbd1UZE .mbr-section-title {
  color: #e6c63b;
}
.cid-tDdlbd1UZE .mbr-text,
.cid-tDdlbd1UZE .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tDdlVWF6PS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDdlVWF6PS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDdlVWF6PS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDdlVWF6PS .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #72ad13;
  margin-bottom: 2rem;
}
.cid-tDdlVWF6PS .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tDdlVWF6PS .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDdlVWF6PS .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tDcz0cX8O1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDcz0cX8O1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcz0cX8O1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcz0cX8O1 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tDcz0cX8O1 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tDcz0cX8O1 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tDcz0cX8O1 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tDcz0cX8O1 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tDcz0cX8O1 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tDcz0cX8O1 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tDcz0cX8O1 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tDcz0cX8O1 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tDcz0cX8O1 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tDcz0cX8O1 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tDcz0cX8O1 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tDcz0cX8O1 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tDcz0cX8O1 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tDcz0cX8O1 [class^="socicon-"]:before,
.cid-tDcz0cX8O1 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tDdgR9GX9r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDdgR9GX9r nav.navbar {
  position: fixed;
}
.cid-tDdgR9GX9r .nav-link {
  justify-content: center;
  transition: all .5s;
  border-bottom: 1px solid transparent;
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-tDdgR9GX9r .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-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-tDdgR9GX9r .nav-link:hover,
.cid-tDdgR9GX9r .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-tDdgR9GX9r .nav-item {
    position: relative;
  }
}
.cid-tDdgR9GX9r .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tDdgR9GX9r .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDdgR9GX9r .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tDdgR9GX9r .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDdgR9GX9r .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tDdgR9GX9r .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tDdgR9GX9r .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tDdgR9GX9r .navbar .navbar-collapse.show .brand-container,
  .cid-tDdgR9GX9r .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tDdgR9GX9r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDdgR9GX9r .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-tDdgR9GX9r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDdgR9GX9r .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tDdgR9GX9r .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tDdgR9GX9r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tDdgR9GX9r .navbar .right-menu,
  .cid-tDdgR9GX9r .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tDdgR9GX9r .navbar.navbar-short {
  min-height: 60px;
  background: #6b4c3e !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDdgR9GX9r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .navbar {
    padding: 2rem 1rem;
  }
  .cid-tDdgR9GX9r .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tDdgR9GX9r .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tDdgR9GX9r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDdgR9GX9r .dropdown-item.active,
.cid-tDdgR9GX9r .dropdown-item:active {
  background-color: transparent;
}
.cid-tDdgR9GX9r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDdgR9GX9r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b4c3e;
}
.cid-tDdgR9GX9r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDdgR9GX9r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDdgR9GX9r ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tDdgR9GX9r .navbar-buttons {
  margin-left: auto;
}
.cid-tDdgR9GX9r button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:hover {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler:active {
  outline: none;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdgR9GX9r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tDdgR9GX9r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdgR9GX9r .navbar-dropdown {
  position: fixed;
}
.cid-tDdgR9GX9r a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tDdgR9GX9r .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDdgR9GX9r .right-menu,
.cid-tDdgR9GX9r .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDdgR9GX9r .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-tDdgR9GX9r .brand-container {
    padding: 0;
  }
}
.cid-tDdgR9GX9r .card-wrapper {
  z-index: 3;
}
.cid-tDdgR9GX9r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tDdgR9GX9r .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
.cid-tDdgR9GX9r .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tDdgR9GX9r .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tDdgR9GX9r .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    border: 1px solid #41392e;
  }
}
.cid-tDdgR9GX9r .navbar-caption {
  color: #ffffff;
}
.cid-tDdgR9GX9r .navbar-caption:hover {
  color: #ffffff;
}
.cid-tDdgR9GX9r .dropdown-item:hover {
  color: #72ad13 !important;
}
.cid-tDdgR9GX9r a:hover .line-animation,
.cid-tDdgR9GX9r a:focus .line-animation {
  opacity: 1;
}
.cid-tDdgR9GX9r .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tDdgR9GX9r .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDdgR9GX9r .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-tDdh9n25sr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tDdh9n25sr .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDdh9n25sr .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tDdh9n25sr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tDdh9n25sr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tDdh9n25sr .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tDdh9n25sr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tDdh9n25sr .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDdh9n25sr .media-container-row .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDdh9n25sr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDdh9n25sr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDdh9n25sr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tDdh9n25sr .media-container-row .mbr-text {
  color: #e6c63b;
}
