body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Russo One', sans-serif;
  font-size: 6rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6rem;
}
.display-2 {
  font-family: 'Russo One', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.2rem;
}
.display-4 {
  font-family: 'Russo One', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Russo One', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Russo One', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.2rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.75rem + (6 - 2.75) * ((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.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.8 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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-success:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary {
  color: black!important;
}
.btn-secondary:hover,
.btn-secondary:active {
  color: black!important;
  background: #f9ad05 !important;
  border-color: #f9ad05 !important;
}
.btn-primary {
  color: white!important;
}
.btn-primary:hover {
  background: #fbbe36 !important;
  border-color: #fbbe36 !important;
}
.btn-info {
  color: white!important;
}
.btn-success:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
}
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #89b758 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fbbe36 !important;
  border-color: #fbbe36 !important;
  color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff;
  background-color: #fbbe36;
  border-color: #fbbe36;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff;
  background-color: #fbbe36 !important;
  border-color: #fbbe36 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #89b758 !important;
  border-color: #89b758 !important;
  color: #ffffff;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff;
  background-color: #89b758;
  border-color: #89b758;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff;
  background-color: #89b758 !important;
  border-color: #89b758 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #c78b04;
  color: #c78b04;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #fbbe36;
  border-color: #fbbe36;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fbbe36 !important;
  border-color: #fbbe36 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #567633;
  color: #567633;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #89b758;
  border-color: #89b758;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #89b758 !important;
  border-color: #89b758 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #fbbe36 !important;
}
.text-success {
  color: #89b758 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ffffff !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #fdde9a !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #bbd69f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ffffff !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #ffffff !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c8ddb1;
}
.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: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Russo One', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.2rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #ffffff !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: #fbbe36 !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='%23ffffff' %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-tfYZE8hDso .navbar-dropdown {
  position: relative !important;
}
.cid-tfYZE8hDso .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 1400px) {
  .cid-tfYZE8hDso .navbar-brand {
    margin-left: 6rem;
  }
}
.cid-tfYZE8hDso .navbar-nav {
  margin: auto;
}
.cid-tfYZE8hDso .dropdown-item {
  color: #ffffff !important;
}
.cid-tfYZE8hDso .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tfYZE8hDso .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tfYZE8hDso .navbar-short,
.cid-tfYZE8hDso .opened {
  background: #2e2d32 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-tfYZE8hDso .navbar-short .nav-link,
.cid-tfYZE8hDso .opened .nav-link,
.cid-tfYZE8hDso .navbar-short .navbar-caption,
.cid-tfYZE8hDso .opened .navbar-caption,
.cid-tfYZE8hDso .navbar-short .mbr-iconfont,
.cid-tfYZE8hDso .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-tfYZE8hDso .navbar-short .hamburger span,
.cid-tfYZE8hDso .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-tfYZE8hDso .nav-link {
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  border-bottom: 1px solid transparent;
}
.cid-tfYZE8hDso .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-tfYZE8hDso .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-tfYZE8hDso .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 991px) {
  .cid-tfYZE8hDso .dropdown-menu {
    border: 1px solid #41392e;
  }
}
.cid-tfYZE8hDso .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfYZE8hDso .container {
  display: flex;
  margin: auto;
}
.cid-tfYZE8hDso .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZE8hDso .dropdown-menu,
.cid-tfYZE8hDso .navbar.opened {
  background: #2e2d32 !important;
}
.cid-tfYZE8hDso .nav-item:focus,
.cid-tfYZE8hDso .nav-link:focus {
  outline: none;
}
.cid-tfYZE8hDso .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZE8hDso .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZE8hDso .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfYZE8hDso .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfYZE8hDso .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfYZE8hDso .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZE8hDso .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(46, 45, 50, 0);
}
.cid-tfYZE8hDso .navbar.opened {
  transition: all 0.3s;
}
.cid-tfYZE8hDso .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfYZE8hDso .navbar .navbar-logo img {
  width: auto;
}
.cid-tfYZE8hDso .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZE8hDso .navbar.collapsed {
  justify-content: center;
}
.cid-tfYZE8hDso .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfYZE8hDso .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tfYZE8hDso .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tfYZE8hDso .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZE8hDso .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZE8hDso .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tfYZE8hDso .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZE8hDso .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZE8hDso .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZE8hDso .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfYZE8hDso .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZE8hDso .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZE8hDso .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZE8hDso .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-tfYZE8hDso .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfYZE8hDso .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
  }
  .cid-tfYZE8hDso .navbar .navbar-brand {
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfYZE8hDso .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfYZE8hDso .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }
}
.cid-tfYZE8hDso .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfYZE8hDso .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfYZE8hDso .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfYZE8hDso .navbar-brand {
  min-height: 110px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZE8hDso .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tfYZE8hDso .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZE8hDso .dropdown-item.active,
.cid-tfYZE8hDso .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZE8hDso .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZE8hDso .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZE8hDso .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZE8hDso .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e2d32;
}
.cid-tfYZE8hDso .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZE8hDso .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZE8hDso ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfYZE8hDso .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfYZE8hDso button.navbar-toggler {
  order: 0;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfYZE8hDso button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfYZE8hDso button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZE8hDso button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZE8hDso button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZE8hDso button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZE8hDso nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZE8hDso nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZE8hDso nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZE8hDso nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZE8hDso .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tfYZE8hDso a.nav-link {
  display: flex;
  align-items: center;
}
.cid-tfYZE8hDso .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZE8hDso .navbar {
    height: 70px;
  }
  .cid-tfYZE8hDso .navbar.opened {
    height: auto;
  }
  .cid-tfYZE8hDso .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-taH4Qi3YlQ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/terchova-2000x1250.webp");
}
.cid-taH4Qi3YlQ H2 {
  color: #fbbe36;
}
.cid-taH4Qi3YlQ .mbr-text,
.cid-taH4Qi3YlQ .mbr-section-btn {
  color: #ffffff;
}
.cid-taH4Qi3YlQ img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-taH4Qi3YlQ img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-taH4Qi3YlQ H1 {
  color: #ffffff;
}
.cid-taH5jB4ZMv {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-taH5jB4ZMv .logo {
  max-width: 80px;
  width: 100%;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-taH5jB4ZMv .icon-wrap {
  display: flex;
  margin-bottom: 1rem;
}
.cid-taH5jB4ZMv .icon-wrap span {
  margin-right: 14px;
  margin-top: 4px;
  font-size: 1.2rem;
  color: #0f7698;
}
.cid-taH5jB4ZMv .feedimg {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
@media (max-width: 767px) {
  .cid-taH5jB4ZMv .feedimg {
    width: 80px;
    height: 80px;
  }
}
.cid-taH5jB4ZMv .mbr-text,
.cid-taH5jB4ZMv .mbr-section-btn {
  color: #2e2d32;
  text-align: center;
}
.cid-taH5jB4ZMv .location,
.cid-taH5jB4ZMv .icon-wrap {
  color: #2e2d32;
}
.cid-taH5jB4ZMv H3 {
  color: #0f7698;
  text-align: center;
}
.cid-taH5lknHjl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #89b758;
}
.cid-taH5lknHjl .row-links {
  width: 100%;
}
.cid-taH5lknHjl .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-taH5lknHjl .col-lg-6 {
  height: fit-content;
}
.cid-taH5lknHjl .soc-item {
  background: #e7272d;
  width: 45px;
  cursor: pointer;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-taH5lknHjl .soc-item:hover {
  transform: scale(1.1);
}
.cid-taH5lknHjl .row {
  align-items: center;
}
.cid-taH5lknHjl .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-taH5lknHjl .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-taH5lknHjl .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-taH5lknHjl .row .foot-menu li p {
  margin: 0;
}
.cid-taH5lknHjl .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-taH5lknHjl .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-taH5lknHjl .row .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-taH5lknHjl .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-taH5lknHjl .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-taH5lknHjl .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-taH5lknHjl .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-taH5lknHjl .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-taH5lknHjl .row-links {
    justify-content: center;
  }
  .cid-taH5lknHjl .foot-menu {
    justify-content: center;
  }
  .cid-taH5lknHjl .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-taH5lknHjl .social-row {
    justify-content: center;
  }
  .cid-taH5lknHjl .mbr-text {
    text-align: center;
  }
  .cid-taH5lknHjl li {
    padding-right: 1rem !important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-taH5lknHjl .foot-menu {
    flex-direction: column;
  }
}
