body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 88px;
  letter-spacing: -0.01em;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.125rem;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.015em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.228;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.56rem;
  line-height: 34px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.95rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.248rem;
    font-size: calc( 1.196rem + (1.56 - 1.196) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.196rem + (1.56 - 1.196) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #ffb639 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ed9909 !important;
}
.bg-danger {
  background-color: #ed4009 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6839 !important;
  border-color: #ff6839 !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: #e13500 !important;
  border-color: #e13500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e13500 !important;
  border-color: #e13500 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffb639 !important;
  border-color: #ffb639 !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: #e18e00 !important;
  border-color: #e18e00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #e18e00 !important;
  border-color: #e18e00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ed9909 !important;
  border-color: #ed9909 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #996306 !important;
  border-color: #996306 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #996306 !important;
  border-color: #996306 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ed4009 !important;
  border-color: #ed4009 !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: #992906 !important;
  border-color: #992906 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #992906 !important;
  border-color: #992906 !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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6839;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e13500 !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: #ff6839 !important;
  border-color: #ff6839 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.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-color: transparent !important;
  border-color: transparent;
  color: #ffb639;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e18e00 !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: #ffb639 !important;
  border-color: #ffb639 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ed9909;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #996306 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ed9909 !important;
  border-color: #ed9909 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ed4009;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #992906 !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: #ed4009 !important;
  border-color: #ed4009 !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: #000000 !important;
}
.text-secondary {
  color: #ff6839 !important;
}
.text-success {
  color: #ffb639 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ed9909 !important;
}
.text-danger {
  color: #ed4009 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d23200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #d28500 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8b5a05 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #8b2505 !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ed9909;
}
.alert-danger {
  background-color: #ed4009;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #fde8c5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdd3c5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !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: #ff6839 !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='%23000000' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  border: none;
  padding: 14px 30px 14px;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont {
  transform: translateX(5px);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 14px;
  transform: translateX(0);
  transition: all 0.3s ease-out;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border: 1px solid #ff6839 !important;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover {
  color: #ff6839 !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border: 1px solid #ffb639 !important;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover {
  color: #ffb639 !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover {
  color: #ffffff !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border: 1px solid #ed9909 !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
  color: #ed9909 !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border: 1px solid #ed4009 !important;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover {
  color: #ed4009 !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover {
  color: #ffffff !important;
}
.cid-tvKZDcPhnV {
  z-index: 1000;
  width: 100%;
}
.cid-tvKZDcPhnV .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-tvKZDcPhnV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tvKZDcPhnV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tvKZDcPhnV .menu_box .navbar.opened,
  .cid-tvKZDcPhnV .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tvKZDcPhnV nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tvKZDcPhnV .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tvKZDcPhnV .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tvKZDcPhnV .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tvKZDcPhnV .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tvKZDcPhnV .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tvKZDcPhnV .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-tvKZDcPhnV .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tvKZDcPhnV .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tvKZDcPhnV .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tvKZDcPhnV .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tvKZDcPhnV .offcanvas-body .mbr-text,
  .cid-tvKZDcPhnV .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-tvKZDcPhnV .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-tvKZDcPhnV .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tvKZDcPhnV .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-tvKZDcPhnV .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tvKZDcPhnV .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tvKZDcPhnV .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tvKZDcPhnV .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tvKZDcPhnV ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tvKZDcPhnV .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tvKZDcPhnV .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tvKZDcPhnV .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tvKZDcPhnV li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tvKZDcPhnV .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tvKZDcPhnV .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tvKZDcPhnV .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tvKZDcPhnV .nav-item {
    margin: 0 !important;
  }
}
.cid-tvKZDcPhnV .nav-item .nav-link {
  position: relative;
}
.cid-tvKZDcPhnV .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-tvKZDcPhnV .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-tvKZDcPhnV .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tvKZDcPhnV .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tvKZDcPhnV .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tvKZDcPhnV .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tvKZDcPhnV .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tvKZDcPhnV .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tvKZDcPhnV .offcanvas_box {
    display: none;
  }
}
.cid-tvKZDcPhnV .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tvKZDcPhnV .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tvKZDcPhnV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tvKZDcPhnV .container {
  display: flex;
  margin: auto;
}
.cid-tvKZDcPhnV .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tvKZDcPhnV .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tvKZDcPhnV .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tvKZDcPhnV .navbar-caption {
  color: #000000;
}
.cid-tvKZDcPhnV .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tvKZDcPhnV .navbar-nav {
    margin: 0;
  }
}
.cid-tvKZDcPhnV .dropdown-menu,
.cid-tvKZDcPhnV .navbar.opened {
  background-color: false !important;
}
.cid-tvKZDcPhnV .nav-item:focus,
.cid-tvKZDcPhnV .nav-link:focus {
  outline: none;
}
.cid-tvKZDcPhnV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvKZDcPhnV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvKZDcPhnV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvKZDcPhnV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvKZDcPhnV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvKZDcPhnV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvKZDcPhnV .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tvKZDcPhnV .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tvKZDcPhnV .navbar.opened {
  transition: all 0.3s;
}
.cid-tvKZDcPhnV .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tvKZDcPhnV .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-tvKZDcPhnV .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tvKZDcPhnV .navbar.collapsed {
  justify-content: center;
}
.cid-tvKZDcPhnV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvKZDcPhnV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tvKZDcPhnV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvKZDcPhnV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvKZDcPhnV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvKZDcPhnV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tvKZDcPhnV .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tvKZDcPhnV .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tvKZDcPhnV .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tvKZDcPhnV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvKZDcPhnV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvKZDcPhnV .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tvKZDcPhnV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvKZDcPhnV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tvKZDcPhnV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvKZDcPhnV .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tvKZDcPhnV .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tvKZDcPhnV .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tvKZDcPhnV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvKZDcPhnV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvKZDcPhnV .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tvKZDcPhnV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvKZDcPhnV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvKZDcPhnV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvKZDcPhnV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvKZDcPhnV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-tvKZDcPhnV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvKZDcPhnV .dropdown-item.active,
.cid-tvKZDcPhnV .dropdown-item:active {
  background-color: transparent;
}
.cid-tvKZDcPhnV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvKZDcPhnV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvKZDcPhnV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvKZDcPhnV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvKZDcPhnV ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tvKZDcPhnV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvKZDcPhnV button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-tvKZDcPhnV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tvKZDcPhnV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvKZDcPhnV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvKZDcPhnV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvKZDcPhnV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvKZDcPhnV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvKZDcPhnV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvKZDcPhnV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvKZDcPhnV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvKZDcPhnV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tvKZDcPhnV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tvKZDcPhnV .navbar {
    height: 70px;
  }
  .cid-tvKZDcPhnV .navbar.opened {
    height: auto;
  }
  .cid-tvKZDcPhnV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvKZDcPhnV .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tvKZDcPhnV .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tvKZDcPhnV .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tvKZDcPhnV .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tvKZDcPhnV .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tvKZDcPhnV .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tvKZDcPhnV .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tvKZDcPhnV .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-tvKZDcPhnV .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tvKZDcPhnV .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-tvKZDcPhnV .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tvKZDcPhnV .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tvKZDcPhnV .mbr-section-subtitle,
.cid-tvKZDcPhnV .text_widget,
.cid-tvKZDcPhnV .mbr-section-btn {
  text-align: left;
}
.cid-tvKZDcPhnV a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uq3ltD41IS {
  background-image: url("../../../assets/images/soff-igorevich-58942-caribbean-group-travel-adventures-2e79d64b-f85d-4c91-9d64-4edea039fceb-1344x896.png");
}
.cid-uq3ltD41IS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3ltD41IS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq3ltD41IS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uq3ltD41IS .container-fluid {
    padding: 0 30px;
  }
}
.cid-uq3ltD41IS .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uq3ltD41IS .container {
    padding: 0 30px;
  }
}
.cid-uq3ltD41IS .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-uq3ltD41IS .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-uq3ltD41IS .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uq3ltD41IS .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uq3ltD41IS .mbr-section-title {
  color: #ffffff;
}
.cid-uq3ltD41IS .mbr-text {
  color: #ffffff;
}
.cid-urg2GUFQJy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: #ffffff;
}
.cid-urg2GUFQJy .mbr-fallback-image.disabled {
  display: none;
}
.cid-urg2GUFQJy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urg2GUFQJy .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urg2GUFQJy .container-fluid {
    padding: 0 30px;
  }
}
.cid-urg2GUFQJy .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urg2GUFQJy .container {
    padding: 0 30px;
  }
}
.cid-urg2GUFQJy .row {
  position: relative;
}
.cid-urg2GUFQJy .row::before {
  content: '';
  position: absolute;
  top: -15rem;
  right: -10rem;
  transform: rotate(-45deg);
  display: block;
  width: 500px;
  height: 400px;
  border-radius: 100%;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-urg2GUFQJy .row::before {
    display: none;
  }
}
.cid-urg2GUFQJy .image-wrapper {
  margin-bottom: 40px;
  margin-right: 64px;
}
@media (max-width: 1300px) {
  .cid-urg2GUFQJy .image-wrapper {
    margin-right: 0;
  }
}
.cid-urg2GUFQJy .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-urg2GUFQJy .image-wrapper img {
    height: 280px;
  }
}
.cid-urg2GUFQJy .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-urg2GUFQJy .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-urg2GUFQJy .embla__slide .card-wrap .content-wrap .mbr-text {
  margin-bottom: 38px;
}
.cid-urg2GUFQJy .embla__slide .card-wrap .content-wrap .mbr-name {
  margin-bottom: 0;
}
.cid-urg2GUFQJy .embla__slide .card-wrap .content-wrap .mbr-role {
  margin-bottom: 0;
}
.cid-urg2GUFQJy .embla__button--next,
.cid-urg2GUFQJy .embla__button--prev {
  display: flex;
}
.cid-urg2GUFQJy .embla__button {
  bottom: -4rem;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #000000;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-urg2GUFQJy .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-urg2GUFQJy .embla__button:hover {
  background: transparent;
  color: #ff6839;
}
.cid-urg2GUFQJy .embla__button.embla__button--prev {
  left: 0;
}
.cid-urg2GUFQJy .embla__button.embla__button--next {
  right: auto;
  left: 2rem;
}
@media (max-width: 767px) {
  .cid-urg2GUFQJy .embla__button {
    top: auto;
  }
}
.cid-urg2GUFQJy .slider-wrap {
  display: flex;
  align-items: center;
}
.cid-urg2GUFQJy .embla {
  position: relative;
  width: 100%;
}
.cid-urg2GUFQJy .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-urg2GUFQJy .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-urg2GUFQJy .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-urg2GUFQJy .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-urg2GUFQJy .mbr-text {
  color: #000000;
}
.cid-urg2GUFQJy .mbr-name {
  color: #a8a8a8;
}
.cid-urg2GUFQJy .mbr-role {
  color: #000000;
}
.cid-urg7GFNfWb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urg7GFNfWb .mbr-fallback-image.disabled {
  display: none;
}
.cid-urg7GFNfWb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urg7GFNfWb .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urg7GFNfWb .container-fluid {
    padding: 0 30px;
  }
}
.cid-urg7GFNfWb .container-fluid .row {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-urg7GFNfWb .container-fluid .row {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-urg7GFNfWb .container {
    padding: 0 30px;
  }
}
.cid-urg7GFNfWb .card {
  padding: 0;
}
.cid-urg7GFNfWb .image-wrapper img {
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-urg7GFNfWb .image-wrapper img {
    height: 280px;
  }
}
.cid-urg7GFNfWb .card-wrapper {
  border-radius: 10px;
  background-color: #ff6839;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-urg7GFNfWb .card-wrapper {
    padding: 32px 16px;
  }
}
@media (max-width: 1200px) {
  .cid-urg7GFNfWb .card-wrapper {
    padding: 32px 10px;
  }
}
@media (max-width: 992px) {
  .cid-urg7GFNfWb .card-wrapper {
    padding: 32px 36px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .cid-urg7GFNfWb .card-wrapper {
    padding: 25px 30px;
  }
}
.cid-urg7GFNfWb .card-wrapper .card-date .mbr-date {
  padding-bottom: 64px;
  position: relative;
  margin: 0;
}
.cid-urg7GFNfWb .card-wrapper .card-date .mbr-date span {
  position: absolute;
  right: 11rem;
  bottom: 46px;
  font-size: 36%;
}
@media (max-width: 768px) {
  .cid-urg7GFNfWb .card-wrapper .card-date .mbr-date span {
    right: 5rem;
  }
}
.cid-urg7GFNfWb .card-wrapper .card-link {
  display: inline-flex;
  align-items: center;
}
.cid-urg7GFNfWb .card-wrapper .card-link .mbr-link {
  margin-bottom: 0;
}
.cid-urg7GFNfWb .card-wrapper .card-link .mbr-link:hover .mbr-iconfont {
  opacity: 1;
  transform: translate(0) rotate(-45deg);
}
.cid-urg7GFNfWb .card-wrapper .card-link .mbr-link:hover .mbr-iconfont::after {
  opacity: 1;
}
.cid-urg7GFNfWb .card-wrapper .card-link .mbr-link .mbr-iconfont {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 60%;
  margin-left: 14px;
  color: #ffffff;
  opacity: 0;
  transform: translate(-5px, 5px) rotate(-45deg);
  transition: all 0.3s ease-out;
}
.cid-urg7GFNfWb .card-wrapper .card-link .mbr-link .mbr-iconfont::after {
  content: '';
  position: absolute;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-urg7GFNfWb .mbr-date {
  color: #ffffff;
}
.cid-urg7GFNfWb .mbr-link {
  color: #ffffff;
}
.cid-urgnrTw0po {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urgnrTw0po .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgnrTw0po .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urgnrTw0po .container {
    padding: 0 30px;
  }
}
.cid-urgnrTw0po .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
.cid-urgnrTw0po .item {
  margin-bottom: 72px;
}
.cid-urgnrTw0po .item a {
  display: block;
}
.cid-urgnrTw0po .item a:hover .item-wrapper .item-img img {
  transform: scale(1.06);
}
.cid-urgnrTw0po .item a:hover .item-wrapper .item-img .mbr-iconfont {
  opacity: 1;
}
.cid-urgnrTw0po .item a .item-wrapper {
  padding: 0 4px 40px;
}
.cid-urgnrTw0po .item a .item-wrapper .item-img {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-urgnrTw0po .item a .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-urgnrTw0po .item a .item-wrapper .item-img .mbr-iconfont {
  position: relative;
  font-size: 22px;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  opacity: .7;
  transition: all 0.3s ease-out;
}
.cid-urgnrTw0po .item a .item-content {
  padding: 0 4px;
}
.cid-urgnrTw0po .item a .item-content .item-time .item-time-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-urgnrTw0po .item a .item-content .item-time .item-time-wrap .mbr-iconfont {
  display: inline-block;
  font-size: 18px;
  margin-right: 4px;
}
.cid-urgnrTw0po .item a .item-content .item-time .item-time-wrap .mbr-time {
  display: inline-block;
  margin-bottom: 0;
}
.cid-urgnrTw0po .item a .item-content .mbr-card-title {
  margin-bottom: 16px;
}
.cid-urgnrTw0po .item a .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-urgnrTw0po .mbr-section-btn {
  margin-top: 46px;
  text-align: center;
}
.cid-urgnrTw0po .mbr-section-title {
  color: #000000;
}
.cid-urgnrTw0po .mbr-time,
.cid-urgnrTw0po .mbr-iconfont {
  color: #000000;
}
.cid-urgnrTw0po .mbr-card-title {
  color: #000000;
}
.cid-urgnrTw0po .mbr-desc {
  color: #a8a8a8;
}
.cid-urgnrTw0po .mbr-section-title,
.cid-urgnrTw0po .mbr-section-btn {
  text-align: center;
}
.cid-tvKZN5BrCX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvKZN5BrCX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKZN5BrCX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvKZN5BrCX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tvKZN5BrCX .container-fluid {
    padding: 0 30px;
  }
}
.cid-tvKZN5BrCX .container-fluid .row {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tvKZN5BrCX .container-fluid .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tvKZN5BrCX .container {
    padding: 0 30px;
  }
}
.cid-tvKZN5BrCX .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tvKZN5BrCX .row {
    border-radius: 0;
  }
}
.cid-tvKZN5BrCX .card {
  padding: 0;
}
.cid-tvKZN5BrCX .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tvKZN5BrCX .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-tvKZN5BrCX .mbr-date {
  color: #ffffff;
}
.cid-tvKZN5BrCX .mbr-link {
  color: #ffffff;
}
.cid-tvL1znWceg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tvL1znWceg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvL1znWceg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tvL1znWceg .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tvL1znWceg .map-wrapper {
    margin-bottom: 55px;
  }
}
.cid-tvL1znWceg .map-wrapper .google-map {
  padding: 0 120px 0 60px;
}
@media (max-width: 1200px) {
  .cid-tvL1znWceg .map-wrapper .google-map {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tvL1znWceg .map-wrapper .google-map {
    padding: 0;
  }
}
.cid-tvL1znWceg .map-wrapper .google-map iframe {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-tvL1znWceg .map-wrapper .google-map iframe {
    height: 300px;
  }
}
.cid-tvL1znWceg .form-wrap {
  display: flex;
  align-items: center;
}
.cid-tvL1znWceg .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
.cid-tvL1znWceg .dragArea.row .mbr-text {
  margin-bottom: 20px !important;
}
.cid-tvL1znWceg .dragArea.row .form-group {
  margin-bottom: 20px;
}
.cid-tvL1znWceg .dragArea.row .form-group .form-control {
  padding: 8px 0;
  border: none !important;
  border-radius: 0;
  border-bottom: 1px solid #000000 !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-tvL1znWceg .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
}
.cid-tvL1znWceg .dragArea.row .form-group .form-control:hover,
.cid-tvL1znWceg .dragArea.row .form-group .form-control:focus {
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid #000000 !important;
}
.cid-tvL1znWceg .dragArea.row .form-group .form-check {
  padding-left: 2.4rem;
  margin-bottom: 8px;
}
.cid-tvL1znWceg .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.cid-tvL1znWceg .dragArea.row .mbr-section-btn {
  margin-top: 40px;
}
.cid-tvL1znWceg .mbr-section-title {
  color: #000000;
}
.cid-tvL1znWceg .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tvL1znWceg label {
  color: #000000;
}
.cid-tvL1znWceg .mbr-section-title,
.cid-tvL1znWceg .mbr-section-btn {
  text-align: center;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq3Y3oTa4t {
  z-index: 1000;
  width: 100%;
}
.cid-uq3Y3oTa4t .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq3Y3oTa4t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq3Y3oTa4t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq3Y3oTa4t .menu_box .navbar.opened,
  .cid-uq3Y3oTa4t .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq3Y3oTa4t nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq3Y3oTa4t .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq3Y3oTa4t .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq3Y3oTa4t .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq3Y3oTa4t .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq3Y3oTa4t .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq3Y3oTa4t .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq3Y3oTa4t .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq3Y3oTa4t .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq3Y3oTa4t .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq3Y3oTa4t .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq3Y3oTa4t .offcanvas-body .mbr-text,
  .cid-uq3Y3oTa4t .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq3Y3oTa4t .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq3Y3oTa4t .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq3Y3oTa4t .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq3Y3oTa4t .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq3Y3oTa4t .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq3Y3oTa4t .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq3Y3oTa4t .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq3Y3oTa4t ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq3Y3oTa4t .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3Y3oTa4t .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq3Y3oTa4t .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq3Y3oTa4t li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq3Y3oTa4t .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq3Y3oTa4t .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq3Y3oTa4t .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq3Y3oTa4t .nav-item {
    margin: 0 !important;
  }
}
.cid-uq3Y3oTa4t .nav-item .nav-link {
  position: relative;
}
.cid-uq3Y3oTa4t .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq3Y3oTa4t .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq3Y3oTa4t .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq3Y3oTa4t .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq3Y3oTa4t .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq3Y3oTa4t .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3Y3oTa4t .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq3Y3oTa4t .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq3Y3oTa4t .offcanvas_box {
    display: none;
  }
}
.cid-uq3Y3oTa4t .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq3Y3oTa4t .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq3Y3oTa4t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq3Y3oTa4t .container {
  display: flex;
  margin: auto;
}
.cid-uq3Y3oTa4t .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq3Y3oTa4t .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq3Y3oTa4t .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq3Y3oTa4t .navbar-caption {
  color: #000000;
}
.cid-uq3Y3oTa4t .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq3Y3oTa4t .navbar-nav {
    margin: 0;
  }
}
.cid-uq3Y3oTa4t .dropdown-menu,
.cid-uq3Y3oTa4t .navbar.opened {
  background-color: false !important;
}
.cid-uq3Y3oTa4t .nav-item:focus,
.cid-uq3Y3oTa4t .nav-link:focus {
  outline: none;
}
.cid-uq3Y3oTa4t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq3Y3oTa4t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq3Y3oTa4t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq3Y3oTa4t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq3Y3oTa4t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq3Y3oTa4t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq3Y3oTa4t .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq3Y3oTa4t .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq3Y3oTa4t .navbar.opened {
  transition: all 0.3s;
}
.cid-uq3Y3oTa4t .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq3Y3oTa4t .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq3Y3oTa4t .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq3Y3oTa4t .navbar.collapsed {
  justify-content: center;
}
.cid-uq3Y3oTa4t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq3Y3oTa4t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq3Y3oTa4t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq3Y3oTa4t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq3Y3oTa4t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq3Y3oTa4t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq3Y3oTa4t .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq3Y3oTa4t .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq3Y3oTa4t .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq3Y3oTa4t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq3Y3oTa4t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq3Y3oTa4t .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq3Y3oTa4t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq3Y3oTa4t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq3Y3oTa4t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq3Y3oTa4t .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq3Y3oTa4t .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq3Y3oTa4t .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq3Y3oTa4t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq3Y3oTa4t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq3Y3oTa4t .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq3Y3oTa4t .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq3Y3oTa4t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq3Y3oTa4t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq3Y3oTa4t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq3Y3oTa4t .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq3Y3oTa4t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq3Y3oTa4t .dropdown-item.active,
.cid-uq3Y3oTa4t .dropdown-item:active {
  background-color: transparent;
}
.cid-uq3Y3oTa4t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq3Y3oTa4t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq3Y3oTa4t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq3Y3oTa4t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq3Y3oTa4t ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq3Y3oTa4t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq3Y3oTa4t button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq3Y3oTa4t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq3Y3oTa4t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq3Y3oTa4t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3Y3oTa4t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3Y3oTa4t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq3Y3oTa4t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3Y3oTa4t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq3Y3oTa4t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq3Y3oTa4t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3Y3oTa4t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq3Y3oTa4t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq3Y3oTa4t .navbar {
    height: 70px;
  }
  .cid-uq3Y3oTa4t .navbar.opened {
    height: auto;
  }
  .cid-uq3Y3oTa4t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq3Y3oTa4t .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq3Y3oTa4t .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq3Y3oTa4t .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq3Y3oTa4t .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq3Y3oTa4t .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq3Y3oTa4t .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq3Y3oTa4t .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq3Y3oTa4t .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq3Y3oTa4t .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq3Y3oTa4t .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq3Y3oTa4t .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq3Y3oTa4t .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq3Y3oTa4t .mbr-section-subtitle,
.cid-uq3Y3oTa4t .text_widget,
.cid-uq3Y3oTa4t .mbr-section-btn {
  text-align: left;
}
.cid-uq3Y3oTa4t a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uq3YG0Wzyh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uq3YG0Wzyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3YG0Wzyh .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uq3YG0Wzyh .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uq3YG0Wzyh .line {
  width: 100%;
  height: 1px;
  background: #000000;
  opacity: 0.5;
  margin: 1rem 0;
  margin-bottom: 2rem;
}
.cid-uq3YG0Wzyh .card-title {
  position: relative;
  padding-bottom: 1rem;
}
.cid-uq3YG0Wzyh .card-title:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -35px;
  top: 3px;
  background: currentColor;
  border-radius: 50%;
}
.cid-uq3YG0Wzyh .card-box {
  padding: 0 2rem;
}
.cid-uq3YG0Wzyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq3YG0Wzyh .card-title,
.cid-uq3YG0Wzyh .iconfont-wrapper,
.cid-uq3YG0Wzyh .card-text {
  color: #000000;
  text-align: center;
}
.cid-uq3YG0Wzyh .mbr-section-title {
  color: #291f1e;
  text-align: left;
}
.cid-uq3YG0Wzyh .mbr-section-btn {
  text-align: center;
}
.cid-uq3YG0Wzyh .card-text,
.cid-uq3YG0Wzyh .mbr-section-btn {
  color: #291f1e;
  text-align: left;
}
.cid-uq3YG0Wzyh .card-title,
.cid-uq3YG0Wzyh .iconfont-wrapper {
  text-align: left;
  color: #ff6839;
}
.cid-uq3YG0Wzyh .mbr-section-subtitle {
  color: #291f1e;
  text-align: left;
}
.cid-urgl95BuuT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urgl95BuuT .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgl95BuuT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgl95BuuT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urgl95BuuT .container-fluid {
    padding: 0 30px;
  }
}
.cid-urgl95BuuT .container-fluid .row {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urgl95BuuT .container-fluid .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-urgl95BuuT .container {
    padding: 0 30px;
  }
}
.cid-urgl95BuuT .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-urgl95BuuT .row {
    border-radius: 0;
  }
}
.cid-urgl95BuuT .card {
  padding: 0;
}
.cid-urgl95BuuT .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-urgl95BuuT .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-urgl95BuuT .mbr-date {
  color: #ffffff;
}
.cid-urgl95BuuT .mbr-link {
  color: #ffffff;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq3Zju9vrn {
  z-index: 1000;
  width: 100%;
}
.cid-uq3Zju9vrn .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq3Zju9vrn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq3Zju9vrn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq3Zju9vrn .menu_box .navbar.opened,
  .cid-uq3Zju9vrn .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq3Zju9vrn nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq3Zju9vrn .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq3Zju9vrn .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq3Zju9vrn .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq3Zju9vrn .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq3Zju9vrn .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq3Zju9vrn .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq3Zju9vrn .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq3Zju9vrn .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq3Zju9vrn .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq3Zju9vrn .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq3Zju9vrn .offcanvas-body .mbr-text,
  .cid-uq3Zju9vrn .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq3Zju9vrn .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq3Zju9vrn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq3Zju9vrn .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq3Zju9vrn .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq3Zju9vrn .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq3Zju9vrn .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq3Zju9vrn .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq3Zju9vrn ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq3Zju9vrn .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3Zju9vrn .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq3Zju9vrn .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq3Zju9vrn li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq3Zju9vrn .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq3Zju9vrn .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq3Zju9vrn .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq3Zju9vrn .nav-item {
    margin: 0 !important;
  }
}
.cid-uq3Zju9vrn .nav-item .nav-link {
  position: relative;
}
.cid-uq3Zju9vrn .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq3Zju9vrn .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq3Zju9vrn .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq3Zju9vrn .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq3Zju9vrn .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq3Zju9vrn .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3Zju9vrn .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq3Zju9vrn .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq3Zju9vrn .offcanvas_box {
    display: none;
  }
}
.cid-uq3Zju9vrn .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq3Zju9vrn .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq3Zju9vrn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq3Zju9vrn .container {
  display: flex;
  margin: auto;
}
.cid-uq3Zju9vrn .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq3Zju9vrn .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq3Zju9vrn .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq3Zju9vrn .navbar-caption {
  color: #000000;
}
.cid-uq3Zju9vrn .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq3Zju9vrn .navbar-nav {
    margin: 0;
  }
}
.cid-uq3Zju9vrn .dropdown-menu,
.cid-uq3Zju9vrn .navbar.opened {
  background-color: false !important;
}
.cid-uq3Zju9vrn .nav-item:focus,
.cid-uq3Zju9vrn .nav-link:focus {
  outline: none;
}
.cid-uq3Zju9vrn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq3Zju9vrn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq3Zju9vrn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq3Zju9vrn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq3Zju9vrn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq3Zju9vrn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq3Zju9vrn .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq3Zju9vrn .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq3Zju9vrn .navbar.opened {
  transition: all 0.3s;
}
.cid-uq3Zju9vrn .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq3Zju9vrn .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq3Zju9vrn .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq3Zju9vrn .navbar.collapsed {
  justify-content: center;
}
.cid-uq3Zju9vrn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq3Zju9vrn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq3Zju9vrn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq3Zju9vrn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq3Zju9vrn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq3Zju9vrn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq3Zju9vrn .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq3Zju9vrn .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq3Zju9vrn .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq3Zju9vrn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq3Zju9vrn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq3Zju9vrn .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq3Zju9vrn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq3Zju9vrn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq3Zju9vrn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq3Zju9vrn .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq3Zju9vrn .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq3Zju9vrn .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq3Zju9vrn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq3Zju9vrn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq3Zju9vrn .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq3Zju9vrn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq3Zju9vrn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq3Zju9vrn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq3Zju9vrn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq3Zju9vrn .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq3Zju9vrn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq3Zju9vrn .dropdown-item.active,
.cid-uq3Zju9vrn .dropdown-item:active {
  background-color: transparent;
}
.cid-uq3Zju9vrn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq3Zju9vrn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq3Zju9vrn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq3Zju9vrn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq3Zju9vrn ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq3Zju9vrn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq3Zju9vrn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq3Zju9vrn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq3Zju9vrn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq3Zju9vrn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3Zju9vrn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3Zju9vrn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq3Zju9vrn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3Zju9vrn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq3Zju9vrn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq3Zju9vrn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3Zju9vrn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq3Zju9vrn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq3Zju9vrn .navbar {
    height: 70px;
  }
  .cid-uq3Zju9vrn .navbar.opened {
    height: auto;
  }
  .cid-uq3Zju9vrn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq3Zju9vrn .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq3Zju9vrn .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq3Zju9vrn .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq3Zju9vrn .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq3Zju9vrn .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq3Zju9vrn .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq3Zju9vrn .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq3Zju9vrn .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq3Zju9vrn .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq3Zju9vrn .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq3Zju9vrn .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq3Zju9vrn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq3Zju9vrn .mbr-section-subtitle,
.cid-uq3Zju9vrn .text_widget,
.cid-uq3Zju9vrn .mbr-section-btn {
  text-align: left;
}
.cid-uq3Zju9vrn a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uq3Zu21H8X {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uq3Zu21H8X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3Zu21H8X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq3Zu21H8X .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uq3Zu21H8X .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uq3Zu21H8X .mbr-text,
.cid-uq3Zu21H8X .mbr-section-btn {
  color: #232323;
}
.cid-uq3Zu21H8X .mbr-section-title,
.cid-uq3Zu21H8X .line {
  color: #ff6839;
}
.cid-uq3Zu21H8X h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uq3Zu21H8X h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uq3Zu21H8X .mbr-section-subtitle,
.cid-uq3Zu21H8X .align {
  text-align: left;
  color: #232323;
}
.cid-uq3ZsJqkJo {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uq3ZsJqkJo .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uq3ZsJqkJo .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uq3ZsJqkJo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3ZsJqkJo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq40i0HSqu {
  z-index: 1000;
  width: 100%;
}
.cid-uq40i0HSqu .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq40i0HSqu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq40i0HSqu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq40i0HSqu .menu_box .navbar.opened,
  .cid-uq40i0HSqu .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq40i0HSqu nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq40i0HSqu .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq40i0HSqu .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq40i0HSqu .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq40i0HSqu .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq40i0HSqu .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq40i0HSqu .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq40i0HSqu .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq40i0HSqu .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq40i0HSqu .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq40i0HSqu .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq40i0HSqu .offcanvas-body .mbr-text,
  .cid-uq40i0HSqu .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq40i0HSqu .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq40i0HSqu .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq40i0HSqu .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq40i0HSqu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq40i0HSqu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq40i0HSqu .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq40i0HSqu .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq40i0HSqu ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq40i0HSqu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq40i0HSqu .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq40i0HSqu .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq40i0HSqu li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq40i0HSqu .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq40i0HSqu .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq40i0HSqu .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq40i0HSqu .nav-item {
    margin: 0 !important;
  }
}
.cid-uq40i0HSqu .nav-item .nav-link {
  position: relative;
}
.cid-uq40i0HSqu .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq40i0HSqu .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq40i0HSqu .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq40i0HSqu .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq40i0HSqu .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq40i0HSqu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq40i0HSqu .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq40i0HSqu .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq40i0HSqu .offcanvas_box {
    display: none;
  }
}
.cid-uq40i0HSqu .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq40i0HSqu .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq40i0HSqu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq40i0HSqu .container {
  display: flex;
  margin: auto;
}
.cid-uq40i0HSqu .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq40i0HSqu .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq40i0HSqu .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq40i0HSqu .navbar-caption {
  color: #000000;
}
.cid-uq40i0HSqu .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq40i0HSqu .navbar-nav {
    margin: 0;
  }
}
.cid-uq40i0HSqu .dropdown-menu,
.cid-uq40i0HSqu .navbar.opened {
  background-color: false !important;
}
.cid-uq40i0HSqu .nav-item:focus,
.cid-uq40i0HSqu .nav-link:focus {
  outline: none;
}
.cid-uq40i0HSqu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq40i0HSqu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq40i0HSqu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq40i0HSqu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq40i0HSqu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq40i0HSqu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq40i0HSqu .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq40i0HSqu .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq40i0HSqu .navbar.opened {
  transition: all 0.3s;
}
.cid-uq40i0HSqu .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq40i0HSqu .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq40i0HSqu .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq40i0HSqu .navbar.collapsed {
  justify-content: center;
}
.cid-uq40i0HSqu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq40i0HSqu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq40i0HSqu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq40i0HSqu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq40i0HSqu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq40i0HSqu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq40i0HSqu .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq40i0HSqu .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq40i0HSqu .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq40i0HSqu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq40i0HSqu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq40i0HSqu .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq40i0HSqu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq40i0HSqu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq40i0HSqu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq40i0HSqu .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq40i0HSqu .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq40i0HSqu .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq40i0HSqu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq40i0HSqu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq40i0HSqu .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq40i0HSqu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq40i0HSqu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq40i0HSqu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq40i0HSqu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq40i0HSqu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq40i0HSqu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq40i0HSqu .dropdown-item.active,
.cid-uq40i0HSqu .dropdown-item:active {
  background-color: transparent;
}
.cid-uq40i0HSqu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq40i0HSqu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq40i0HSqu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq40i0HSqu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq40i0HSqu ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq40i0HSqu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq40i0HSqu button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq40i0HSqu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq40i0HSqu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq40i0HSqu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq40i0HSqu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq40i0HSqu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq40i0HSqu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq40i0HSqu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq40i0HSqu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq40i0HSqu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq40i0HSqu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq40i0HSqu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq40i0HSqu .navbar {
    height: 70px;
  }
  .cid-uq40i0HSqu .navbar.opened {
    height: auto;
  }
  .cid-uq40i0HSqu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq40i0HSqu .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq40i0HSqu .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq40i0HSqu .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq40i0HSqu .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq40i0HSqu .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq40i0HSqu .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq40i0HSqu .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq40i0HSqu .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq40i0HSqu .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq40i0HSqu .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq40i0HSqu .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq40i0HSqu .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq40i0HSqu .mbr-section-subtitle,
.cid-uq40i0HSqu .text_widget,
.cid-uq40i0HSqu .mbr-section-btn {
  text-align: left;
}
.cid-uq40i0HSqu a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uq40i1vxzx {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uq40i1vxzx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq40i1vxzx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq40i1vxzx .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uq40i1vxzx .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uq40i1vxzx .mbr-text,
.cid-uq40i1vxzx .mbr-section-btn {
  color: #232323;
}
.cid-uq40i1vxzx .mbr-section-title,
.cid-uq40i1vxzx .line {
  color: #ff6839;
}
.cid-uq40i1vxzx h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uq40i1vxzx h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uq40i1vxzx .mbr-section-subtitle,
.cid-uq40i1vxzx .align {
  text-align: left;
  color: #232323;
}
.cid-uq40i1I4Fg {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uq40i1I4Fg .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uq40i1I4Fg .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uq40i1I4Fg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq40i1I4Fg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq40zb0B2K {
  z-index: 1000;
  width: 100%;
}
.cid-uq40zb0B2K .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq40zb0B2K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq40zb0B2K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq40zb0B2K .menu_box .navbar.opened,
  .cid-uq40zb0B2K .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq40zb0B2K nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq40zb0B2K .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq40zb0B2K .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq40zb0B2K .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq40zb0B2K .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq40zb0B2K .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq40zb0B2K .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq40zb0B2K .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq40zb0B2K .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq40zb0B2K .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq40zb0B2K .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq40zb0B2K .offcanvas-body .mbr-text,
  .cid-uq40zb0B2K .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq40zb0B2K .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq40zb0B2K .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq40zb0B2K .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq40zb0B2K .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq40zb0B2K .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq40zb0B2K .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq40zb0B2K .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq40zb0B2K ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq40zb0B2K .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq40zb0B2K .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq40zb0B2K .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq40zb0B2K li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq40zb0B2K .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq40zb0B2K .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq40zb0B2K .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq40zb0B2K .nav-item {
    margin: 0 !important;
  }
}
.cid-uq40zb0B2K .nav-item .nav-link {
  position: relative;
}
.cid-uq40zb0B2K .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq40zb0B2K .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq40zb0B2K .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq40zb0B2K .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq40zb0B2K .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq40zb0B2K .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq40zb0B2K .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq40zb0B2K .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq40zb0B2K .offcanvas_box {
    display: none;
  }
}
.cid-uq40zb0B2K .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq40zb0B2K .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq40zb0B2K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq40zb0B2K .container {
  display: flex;
  margin: auto;
}
.cid-uq40zb0B2K .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq40zb0B2K .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq40zb0B2K .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq40zb0B2K .navbar-caption {
  color: #000000;
}
.cid-uq40zb0B2K .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq40zb0B2K .navbar-nav {
    margin: 0;
  }
}
.cid-uq40zb0B2K .dropdown-menu,
.cid-uq40zb0B2K .navbar.opened {
  background-color: false !important;
}
.cid-uq40zb0B2K .nav-item:focus,
.cid-uq40zb0B2K .nav-link:focus {
  outline: none;
}
.cid-uq40zb0B2K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq40zb0B2K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq40zb0B2K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq40zb0B2K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq40zb0B2K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq40zb0B2K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq40zb0B2K .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq40zb0B2K .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq40zb0B2K .navbar.opened {
  transition: all 0.3s;
}
.cid-uq40zb0B2K .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq40zb0B2K .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq40zb0B2K .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq40zb0B2K .navbar.collapsed {
  justify-content: center;
}
.cid-uq40zb0B2K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq40zb0B2K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq40zb0B2K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq40zb0B2K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq40zb0B2K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq40zb0B2K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq40zb0B2K .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq40zb0B2K .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq40zb0B2K .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq40zb0B2K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq40zb0B2K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq40zb0B2K .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq40zb0B2K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq40zb0B2K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq40zb0B2K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq40zb0B2K .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq40zb0B2K .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq40zb0B2K .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq40zb0B2K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq40zb0B2K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq40zb0B2K .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq40zb0B2K .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq40zb0B2K .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq40zb0B2K .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq40zb0B2K .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq40zb0B2K .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq40zb0B2K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq40zb0B2K .dropdown-item.active,
.cid-uq40zb0B2K .dropdown-item:active {
  background-color: transparent;
}
.cid-uq40zb0B2K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq40zb0B2K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq40zb0B2K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq40zb0B2K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq40zb0B2K ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq40zb0B2K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq40zb0B2K button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq40zb0B2K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq40zb0B2K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq40zb0B2K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq40zb0B2K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq40zb0B2K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq40zb0B2K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq40zb0B2K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq40zb0B2K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq40zb0B2K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq40zb0B2K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq40zb0B2K .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq40zb0B2K .navbar {
    height: 70px;
  }
  .cid-uq40zb0B2K .navbar.opened {
    height: auto;
  }
  .cid-uq40zb0B2K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq40zb0B2K .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq40zb0B2K .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq40zb0B2K .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq40zb0B2K .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq40zb0B2K .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq40zb0B2K .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq40zb0B2K .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq40zb0B2K .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq40zb0B2K .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq40zb0B2K .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq40zb0B2K .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq40zb0B2K .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq40zb0B2K .mbr-section-subtitle,
.cid-uq40zb0B2K .text_widget,
.cid-uq40zb0B2K .mbr-section-btn {
  text-align: left;
}
.cid-uq40zb0B2K a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uq40zbFpck {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uq40zbFpck .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq40zbFpck .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq40zbFpck .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uq40zbFpck .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uq40zbFpck .mbr-text,
.cid-uq40zbFpck .mbr-section-btn {
  color: #232323;
}
.cid-uq40zbFpck .mbr-section-title,
.cid-uq40zbFpck .line {
  color: #ff6839;
}
.cid-uq40zbFpck h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uq40zbFpck h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uq40zbFpck .mbr-section-subtitle,
.cid-uq40zbFpck .align {
  text-align: left;
  color: #232323;
}
.cid-uq40zbRgtq {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uq40zbRgtq .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uq40zbRgtq .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uq40zbRgtq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq40zbRgtq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq41gy2gx9 {
  z-index: 1000;
  width: 100%;
}
.cid-uq41gy2gx9 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq41gy2gx9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq41gy2gx9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq41gy2gx9 .menu_box .navbar.opened,
  .cid-uq41gy2gx9 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq41gy2gx9 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq41gy2gx9 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq41gy2gx9 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq41gy2gx9 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq41gy2gx9 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq41gy2gx9 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq41gy2gx9 .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq41gy2gx9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq41gy2gx9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq41gy2gx9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq41gy2gx9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq41gy2gx9 .offcanvas-body .mbr-text,
  .cid-uq41gy2gx9 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq41gy2gx9 .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq41gy2gx9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq41gy2gx9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq41gy2gx9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq41gy2gx9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq41gy2gx9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq41gy2gx9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq41gy2gx9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq41gy2gx9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq41gy2gx9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq41gy2gx9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq41gy2gx9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq41gy2gx9 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq41gy2gx9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq41gy2gx9 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq41gy2gx9 .nav-item {
    margin: 0 !important;
  }
}
.cid-uq41gy2gx9 .nav-item .nav-link {
  position: relative;
}
.cid-uq41gy2gx9 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq41gy2gx9 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq41gy2gx9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq41gy2gx9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq41gy2gx9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq41gy2gx9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq41gy2gx9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq41gy2gx9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq41gy2gx9 .offcanvas_box {
    display: none;
  }
}
.cid-uq41gy2gx9 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq41gy2gx9 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq41gy2gx9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq41gy2gx9 .container {
  display: flex;
  margin: auto;
}
.cid-uq41gy2gx9 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq41gy2gx9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq41gy2gx9 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq41gy2gx9 .navbar-caption {
  color: #000000;
}
.cid-uq41gy2gx9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq41gy2gx9 .navbar-nav {
    margin: 0;
  }
}
.cid-uq41gy2gx9 .dropdown-menu,
.cid-uq41gy2gx9 .navbar.opened {
  background-color: false !important;
}
.cid-uq41gy2gx9 .nav-item:focus,
.cid-uq41gy2gx9 .nav-link:focus {
  outline: none;
}
.cid-uq41gy2gx9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq41gy2gx9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq41gy2gx9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq41gy2gx9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq41gy2gx9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq41gy2gx9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq41gy2gx9 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq41gy2gx9 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq41gy2gx9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq41gy2gx9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq41gy2gx9 .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq41gy2gx9 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq41gy2gx9 .navbar.collapsed {
  justify-content: center;
}
.cid-uq41gy2gx9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq41gy2gx9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq41gy2gx9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq41gy2gx9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq41gy2gx9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq41gy2gx9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq41gy2gx9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq41gy2gx9 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq41gy2gx9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq41gy2gx9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq41gy2gx9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq41gy2gx9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq41gy2gx9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq41gy2gx9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq41gy2gx9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq41gy2gx9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq41gy2gx9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq41gy2gx9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq41gy2gx9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq41gy2gx9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq41gy2gx9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq41gy2gx9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq41gy2gx9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq41gy2gx9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq41gy2gx9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq41gy2gx9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq41gy2gx9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq41gy2gx9 .dropdown-item.active,
.cid-uq41gy2gx9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq41gy2gx9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq41gy2gx9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq41gy2gx9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq41gy2gx9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq41gy2gx9 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq41gy2gx9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq41gy2gx9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq41gy2gx9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq41gy2gx9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq41gy2gx9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq41gy2gx9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq41gy2gx9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq41gy2gx9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq41gy2gx9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq41gy2gx9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq41gy2gx9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq41gy2gx9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq41gy2gx9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq41gy2gx9 .navbar {
    height: 70px;
  }
  .cid-uq41gy2gx9 .navbar.opened {
    height: auto;
  }
  .cid-uq41gy2gx9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq41gy2gx9 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq41gy2gx9 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq41gy2gx9 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq41gy2gx9 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq41gy2gx9 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq41gy2gx9 .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq41gy2gx9 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq41gy2gx9 .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq41gy2gx9 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq41gy2gx9 .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq41gy2gx9 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq41gy2gx9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq41gy2gx9 .mbr-section-subtitle,
.cid-uq41gy2gx9 .text_widget,
.cid-uq41gy2gx9 .mbr-section-btn {
  text-align: left;
}
.cid-uq41gy2gx9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uq41gyHqqa {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uq41gyHqqa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq41gyHqqa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq41gyHqqa .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-uq41gyHqqa .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uq41gyHqqa .mbr-text,
.cid-uq41gyHqqa .mbr-section-btn {
  color: #232323;
}
.cid-uq41gyHqqa .mbr-section-title,
.cid-uq41gyHqqa .line {
  color: #ff6839;
}
.cid-uq41gyHqqa h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uq41gyHqqa h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uq41gyHqqa .mbr-section-subtitle,
.cid-uq41gyHqqa .align {
  text-align: left;
  color: #232323;
}
.cid-uq41gyTTPS {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uq41gyTTPS .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uq41gyTTPS .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uq41gyTTPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq41gyTTPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq3wyb55zy {
  z-index: 1000;
  width: 100%;
}
.cid-uq3wyb55zy .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq3wyb55zy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq3wyb55zy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq3wyb55zy .menu_box .navbar.opened,
  .cid-uq3wyb55zy .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq3wyb55zy nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq3wyb55zy .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq3wyb55zy .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq3wyb55zy .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq3wyb55zy .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq3wyb55zy .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq3wyb55zy .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq3wyb55zy .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq3wyb55zy .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq3wyb55zy .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq3wyb55zy .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq3wyb55zy .offcanvas-body .mbr-text,
  .cid-uq3wyb55zy .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq3wyb55zy .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq3wyb55zy .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq3wyb55zy .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq3wyb55zy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq3wyb55zy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq3wyb55zy .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq3wyb55zy .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq3wyb55zy ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq3wyb55zy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3wyb55zy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq3wyb55zy .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq3wyb55zy li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq3wyb55zy .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq3wyb55zy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq3wyb55zy .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq3wyb55zy .nav-item {
    margin: 0 !important;
  }
}
.cid-uq3wyb55zy .nav-item .nav-link {
  position: relative;
}
.cid-uq3wyb55zy .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq3wyb55zy .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq3wyb55zy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq3wyb55zy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq3wyb55zy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq3wyb55zy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3wyb55zy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq3wyb55zy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq3wyb55zy .offcanvas_box {
    display: none;
  }
}
.cid-uq3wyb55zy .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq3wyb55zy .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq3wyb55zy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq3wyb55zy .container {
  display: flex;
  margin: auto;
}
.cid-uq3wyb55zy .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq3wyb55zy .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq3wyb55zy .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq3wyb55zy .navbar-caption {
  color: #000000;
}
.cid-uq3wyb55zy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq3wyb55zy .navbar-nav {
    margin: 0;
  }
}
.cid-uq3wyb55zy .dropdown-menu,
.cid-uq3wyb55zy .navbar.opened {
  background-color: false !important;
}
.cid-uq3wyb55zy .nav-item:focus,
.cid-uq3wyb55zy .nav-link:focus {
  outline: none;
}
.cid-uq3wyb55zy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq3wyb55zy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq3wyb55zy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq3wyb55zy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq3wyb55zy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq3wyb55zy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq3wyb55zy .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq3wyb55zy .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq3wyb55zy .navbar.opened {
  transition: all 0.3s;
}
.cid-uq3wyb55zy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq3wyb55zy .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq3wyb55zy .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq3wyb55zy .navbar.collapsed {
  justify-content: center;
}
.cid-uq3wyb55zy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq3wyb55zy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq3wyb55zy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq3wyb55zy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq3wyb55zy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq3wyb55zy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq3wyb55zy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq3wyb55zy .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq3wyb55zy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq3wyb55zy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq3wyb55zy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq3wyb55zy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq3wyb55zy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq3wyb55zy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq3wyb55zy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq3wyb55zy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq3wyb55zy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq3wyb55zy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq3wyb55zy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq3wyb55zy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq3wyb55zy .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq3wyb55zy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq3wyb55zy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq3wyb55zy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq3wyb55zy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq3wyb55zy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq3wyb55zy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq3wyb55zy .dropdown-item.active,
.cid-uq3wyb55zy .dropdown-item:active {
  background-color: transparent;
}
.cid-uq3wyb55zy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq3wyb55zy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq3wyb55zy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq3wyb55zy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq3wyb55zy ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq3wyb55zy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq3wyb55zy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq3wyb55zy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq3wyb55zy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq3wyb55zy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3wyb55zy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3wyb55zy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq3wyb55zy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3wyb55zy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq3wyb55zy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq3wyb55zy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3wyb55zy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq3wyb55zy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq3wyb55zy .navbar {
    height: 70px;
  }
  .cid-uq3wyb55zy .navbar.opened {
    height: auto;
  }
  .cid-uq3wyb55zy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq3wyb55zy .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq3wyb55zy .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq3wyb55zy .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq3wyb55zy .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq3wyb55zy .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq3wyb55zy .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq3wyb55zy .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq3wyb55zy .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq3wyb55zy .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq3wyb55zy .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq3wyb55zy .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq3wyb55zy .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq3wyb55zy .mbr-section-subtitle,
.cid-uq3wyb55zy .text_widget,
.cid-uq3wyb55zy .mbr-section-btn {
  text-align: left;
}
.cid-uq3wyb55zy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgfjgyZ3K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-urgfjgyZ3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgfjgyZ3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgfjgyZ3K .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urgfjgyZ3K .container-fluid {
    padding: 0 30px;
  }
}
.cid-urgfjgyZ3K .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urgfjgyZ3K .container {
    padding: 0 30px;
  }
}
.cid-urgfjgyZ3K .text-wrap {
  display: flex;
  align-items: center;
}
.cid-urgfjgyZ3K .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-urgfjgyZ3K .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-urgfjgyZ3K .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-urgfjgyZ3K .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-urgfjgyZ3K .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-urgfjgyZ3K .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-urgfjgyZ3K .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-urgfjgyZ3K .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-urgfjgyZ3K .image-wrapper {
    margin-top: 60px;
  }
}
.cid-urgfjgyZ3K .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-urgfjgyZ3K .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-urgfjgyZ3K .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-urgfjgyZ3K .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-urgfjgyZ3K .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-urgfjgyZ3K .image-wrapper img:last-child {
    display: none;
  }
}
.cid-urgfjgyZ3K .mbr-section-title {
  color: #000000;
}
.cid-urgfjgyZ3K .mbr-text {
  color: #000000;
}
.cid-urgfjgyZ3K .mbr-cit {
  color: #000000;
}
.cid-urgfjgyZ3K .mbr-name {
  color: #a8a8a8;
}
.cid-uq3x1ne9Hg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uq3x1ne9Hg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3x1ne9Hg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq3x1ne9Hg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uq3x1ne9Hg .container-fluid {
    padding: 0 30px;
  }
}
.cid-uq3x1ne9Hg .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uq3x1ne9Hg .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uq3x1ne9Hg .subtitle-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uq3x1ne9Hg .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-uq3x1ne9Hg .subtitle-wrapper .mbr-section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-uq3x1ne9Hg .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uq3x1ne9Hg .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-uq3x1ne9Hg .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
}
.cid-uq3x1ne9Hg .title-wrapper .mbr-name {
  margin-bottom: 0;
  position: relative;
}
.cid-uq3x1ne9Hg .title-wrapper::before {
  content: '';
  position: absolute;
  right: 10rem;
  bottom: -20rem;
  transform: rotate(45deg);
  display: block;
  width: 500px;
  height: 250px;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uq3x1ne9Hg .title-wrapper::before {
    display: none;
  }
}
.cid-uq3x1ne9Hg .mbr-section-subtitle {
  color: #000000;
}
.cid-uq3x1ne9Hg .mbr-section-title {
  color: #000000;
}
.cid-uq3x1ne9Hg .mbr-name {
  color: #a8a8a8;
}
.cid-urgg2xAjHD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urgg2xAjHD .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgg2xAjHD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgg2xAjHD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urgg2xAjHD .container-fluid {
    padding: 0 30px;
  }
}
.cid-urgg2xAjHD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urgg2xAjHD .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-urgg2xAjHD .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-urgg2xAjHD .title-wrapper .mbr-section-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-urgg2xAjHD .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-urgg2xAjHD .items {
  display: grid;
  grid-template-columns: 175px 175px 175px 175px;
  column-gap: 40px;
  row-gap: 90px;
}
@media (min-width: 1500px) {
  .cid-urgg2xAjHD .items {
    grid-template-columns: 200px 200px 200px 200px;
  }
}
@media (min-width: 1900px) {
  .cid-urgg2xAjHD .items {
    grid-template-columns: 250px 250px 250px 250px;
  }
}
@media (max-width: 1350px) {
  .cid-urgg2xAjHD .items {
    grid-template-columns: 145px 145px 145px 145px;
  }
}
@media (max-width: 1199px) {
  .cid-urgg2xAjHD .items {
    grid-template-columns: 115px 115px 115px 115px;
  }
}
@media (max-width: 992px) {
  .cid-urgg2xAjHD .items {
    grid-template-columns: 230px 230px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .cid-urgg2xAjHD .items {
    grid-template-columns: 230px;
  }
}
.cid-urgg2xAjHD .items .item .item-wrapper:hover .item-img .item-icons {
  transform: translateX(0);
}
.cid-urgg2xAjHD .items .item .item-wrapper:hover .item-img img {
  transform: scale(1.06);
}
.cid-urgg2xAjHD .items .item .item-wrapper .item-img {
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.cid-urgg2xAjHD .items .item .item-wrapper .item-img .item-icons {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border-radius: 10px 0 10px 10px;
  background-color: #ff6839;
  transform: translateX(100%);
  transition: all 0.3s ease-out;
  z-index: 1;
}
.cid-urgg2xAjHD .items .item .item-wrapper .item-img .item-icons .mbr-iconfont {
  font-size: 20px;
  color: #ffffff;
  margin-right: 15px;
}
.cid-urgg2xAjHD .items .item .item-wrapper .item-img .item-icons .mbr-iconfont:last-child {
  margin-right: 0;
}
.cid-urgg2xAjHD .items .item .item-wrapper .item-img img {
  height: 175px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
@media (min-width: 1500px) {
  .cid-urgg2xAjHD .items .item .item-wrapper .item-img img {
    height: 200px;
  }
}
@media (min-width: 1900px) {
  .cid-urgg2xAjHD .items .item .item-wrapper .item-img img {
    height: 250px;
  }
}
@media (max-width: 1350px) {
  .cid-urgg2xAjHD .items .item .item-wrapper .item-img img {
    height: 145px;
  }
}
@media (max-width: 1199px) {
  .cid-urgg2xAjHD .items .item .item-wrapper .item-img img {
    height: 115px;
  }
}
@media (max-width: 992px) {
  .cid-urgg2xAjHD .items .item .item-wrapper .item-img img {
    height: 230px;
  }
}
.cid-urgg2xAjHD .items .item .item-wrapper .item-content .item-name {
  margin-bottom: 2px;
}
.cid-urgg2xAjHD .items .item .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
}
.cid-urgg2xAjHD .mbr-section-title {
  color: #000000;
}
.cid-urgg2xAjHD .item-name {
  color: #000000;
}
.cid-urgg2xAjHD .item-desc {
  color: #a8a8a8;
}
.cid-uq4xLB9zCT {
  padding-top: 615px;
  background-image: url("../../../assets/images/soff-igorevich-58942-caribbean-group-travel-adventures-144ede4f-8483-421c-8f76-402c4f4ddde7-1344x896.png");
}
.cid-uq4xLB9zCT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq4xLB9zCT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq3xgYbxX4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uq3xgYbxX4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3xgYbxX4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq3xgYbxX4 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uq3xgYbxX4 .container-fluid {
    padding: 0 30px;
  }
}
.cid-uq3xgYbxX4 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uq3xgYbxX4 .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uq3xgYbxX4 .subtitle-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uq3xgYbxX4 .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-uq3xgYbxX4 .subtitle-wrapper .mbr-section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-uq3xgYbxX4 .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uq3xgYbxX4 .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-uq3xgYbxX4 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
}
.cid-uq3xgYbxX4 .title-wrapper .mbr-name {
  margin-bottom: 0;
  position: relative;
}
.cid-uq3xgYbxX4 .title-wrapper::before {
  content: '';
  position: absolute;
  right: 10rem;
  bottom: -20rem;
  transform: rotate(45deg);
  display: block;
  width: 500px;
  height: 250px;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uq3xgYbxX4 .title-wrapper::before {
    display: none;
  }
}
.cid-uq3xgYbxX4 .mbr-section-subtitle {
  color: #000000;
}
.cid-uq3xgYbxX4 .mbr-section-title {
  color: #000000;
}
.cid-uq3xgYbxX4 .mbr-name {
  color: #a8a8a8;
}
.cid-urghhcTCAj {
  background-color: #ffffff;
}
.cid-urghhcTCAj .mbr-fallback-image.disabled {
  display: none;
}
.cid-urghhcTCAj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urghhcTCAj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urghhcTCAj .container-fluid {
    padding: 0 30px;
  }
}
.cid-urghhcTCAj .container-fluid .row {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urghhcTCAj .container-fluid .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-urghhcTCAj .container {
    padding: 0 30px;
  }
}
.cid-urghhcTCAj .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-urghhcTCAj .row {
    border-radius: 0;
  }
}
.cid-urghhcTCAj .card {
  padding: 0;
}
.cid-urghhcTCAj .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-urghhcTCAj .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-urghhcTCAj .mbr-date {
  color: #ffffff;
}
.cid-urghhcTCAj .mbr-link {
  color: #ffffff;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq3EtYA5yj {
  z-index: 1000;
  width: 100%;
}
.cid-uq3EtYA5yj .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq3EtYA5yj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq3EtYA5yj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq3EtYA5yj .menu_box .navbar.opened,
  .cid-uq3EtYA5yj .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq3EtYA5yj nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq3EtYA5yj .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq3EtYA5yj .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq3EtYA5yj .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq3EtYA5yj .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq3EtYA5yj .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq3EtYA5yj .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq3EtYA5yj .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq3EtYA5yj .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq3EtYA5yj .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq3EtYA5yj .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq3EtYA5yj .offcanvas-body .mbr-text,
  .cid-uq3EtYA5yj .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq3EtYA5yj .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq3EtYA5yj .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq3EtYA5yj .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq3EtYA5yj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq3EtYA5yj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq3EtYA5yj .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq3EtYA5yj .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq3EtYA5yj ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq3EtYA5yj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3EtYA5yj .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq3EtYA5yj .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq3EtYA5yj li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq3EtYA5yj .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq3EtYA5yj .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq3EtYA5yj .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq3EtYA5yj .nav-item {
    margin: 0 !important;
  }
}
.cid-uq3EtYA5yj .nav-item .nav-link {
  position: relative;
}
.cid-uq3EtYA5yj .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq3EtYA5yj .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq3EtYA5yj .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq3EtYA5yj .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq3EtYA5yj .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq3EtYA5yj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3EtYA5yj .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq3EtYA5yj .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq3EtYA5yj .offcanvas_box {
    display: none;
  }
}
.cid-uq3EtYA5yj .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq3EtYA5yj .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq3EtYA5yj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq3EtYA5yj .container {
  display: flex;
  margin: auto;
}
.cid-uq3EtYA5yj .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq3EtYA5yj .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq3EtYA5yj .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq3EtYA5yj .navbar-caption {
  color: #000000;
}
.cid-uq3EtYA5yj .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq3EtYA5yj .navbar-nav {
    margin: 0;
  }
}
.cid-uq3EtYA5yj .dropdown-menu,
.cid-uq3EtYA5yj .navbar.opened {
  background-color: false !important;
}
.cid-uq3EtYA5yj .nav-item:focus,
.cid-uq3EtYA5yj .nav-link:focus {
  outline: none;
}
.cid-uq3EtYA5yj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq3EtYA5yj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq3EtYA5yj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq3EtYA5yj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq3EtYA5yj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq3EtYA5yj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq3EtYA5yj .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq3EtYA5yj .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq3EtYA5yj .navbar.opened {
  transition: all 0.3s;
}
.cid-uq3EtYA5yj .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq3EtYA5yj .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq3EtYA5yj .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq3EtYA5yj .navbar.collapsed {
  justify-content: center;
}
.cid-uq3EtYA5yj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq3EtYA5yj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq3EtYA5yj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq3EtYA5yj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq3EtYA5yj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq3EtYA5yj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq3EtYA5yj .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq3EtYA5yj .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq3EtYA5yj .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq3EtYA5yj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq3EtYA5yj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq3EtYA5yj .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq3EtYA5yj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq3EtYA5yj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq3EtYA5yj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq3EtYA5yj .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq3EtYA5yj .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq3EtYA5yj .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq3EtYA5yj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq3EtYA5yj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq3EtYA5yj .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq3EtYA5yj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq3EtYA5yj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq3EtYA5yj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq3EtYA5yj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq3EtYA5yj .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq3EtYA5yj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq3EtYA5yj .dropdown-item.active,
.cid-uq3EtYA5yj .dropdown-item:active {
  background-color: transparent;
}
.cid-uq3EtYA5yj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq3EtYA5yj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq3EtYA5yj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq3EtYA5yj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq3EtYA5yj ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq3EtYA5yj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq3EtYA5yj button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq3EtYA5yj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq3EtYA5yj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq3EtYA5yj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3EtYA5yj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3EtYA5yj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq3EtYA5yj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3EtYA5yj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq3EtYA5yj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq3EtYA5yj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3EtYA5yj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq3EtYA5yj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq3EtYA5yj .navbar {
    height: 70px;
  }
  .cid-uq3EtYA5yj .navbar.opened {
    height: auto;
  }
  .cid-uq3EtYA5yj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq3EtYA5yj .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq3EtYA5yj .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq3EtYA5yj .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq3EtYA5yj .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq3EtYA5yj .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq3EtYA5yj .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq3EtYA5yj .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq3EtYA5yj .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq3EtYA5yj .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq3EtYA5yj .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq3EtYA5yj .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq3EtYA5yj .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq3EtYA5yj .mbr-section-subtitle,
.cid-uq3EtYA5yj .text_widget,
.cid-uq3EtYA5yj .mbr-section-btn {
  text-align: left;
}
.cid-uq3EtYA5yj a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uq4GPd0L2k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-uq4GPd0L2k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq4GPd0L2k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq4GPd0L2k .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uq4GPd0L2k .container-fluid {
    padding: 0 30px;
  }
}
.cid-uq4GPd0L2k .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uq4GPd0L2k .container {
    padding: 0 30px;
  }
}
.cid-uq4GPd0L2k .text-wrap {
  display: flex;
  align-items: center;
}
.cid-uq4GPd0L2k .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-uq4GPd0L2k .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-uq4GPd0L2k .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-uq4GPd0L2k .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uq4GPd0L2k .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-uq4GPd0L2k .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uq4GPd0L2k .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uq4GPd0L2k .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uq4GPd0L2k .image-wrapper {
    margin-top: 60px;
  }
}
.cid-uq4GPd0L2k .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-uq4GPd0L2k .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-uq4GPd0L2k .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-uq4GPd0L2k .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-uq4GPd0L2k .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-uq4GPd0L2k .image-wrapper img:last-child {
    display: none;
  }
}
.cid-uq4GPd0L2k .mbr-section-title {
  color: #000000;
}
.cid-uq4GPd0L2k .mbr-text {
  color: #000000;
}
.cid-uq4GPd0L2k .mbr-cit {
  color: #000000;
}
.cid-uq4GPd0L2k .mbr-name {
  color: #a8a8a8;
}
.cid-uq3IhC3Jdo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uq3IhC3Jdo .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uq3IhC3Jdo .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uq3IhC3Jdo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3IhC3Jdo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq3ExJ2lU5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uq3ExJ2lU5 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uq3ExJ2lU5 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uq3ExJ2lU5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3ExJ2lU5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq3yahalRg {
  z-index: 1000;
  width: 100%;
}
.cid-uq3yahalRg .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq3yahalRg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq3yahalRg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq3yahalRg .menu_box .navbar.opened,
  .cid-uq3yahalRg .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq3yahalRg nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq3yahalRg .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq3yahalRg .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq3yahalRg .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq3yahalRg .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq3yahalRg .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq3yahalRg .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq3yahalRg .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq3yahalRg .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq3yahalRg .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq3yahalRg .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq3yahalRg .offcanvas-body .mbr-text,
  .cid-uq3yahalRg .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq3yahalRg .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq3yahalRg .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq3yahalRg .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq3yahalRg .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq3yahalRg .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq3yahalRg .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq3yahalRg .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq3yahalRg ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq3yahalRg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3yahalRg .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq3yahalRg .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq3yahalRg li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq3yahalRg .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq3yahalRg .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq3yahalRg .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq3yahalRg .nav-item {
    margin: 0 !important;
  }
}
.cid-uq3yahalRg .nav-item .nav-link {
  position: relative;
}
.cid-uq3yahalRg .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq3yahalRg .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq3yahalRg .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq3yahalRg .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq3yahalRg .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq3yahalRg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3yahalRg .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq3yahalRg .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq3yahalRg .offcanvas_box {
    display: none;
  }
}
.cid-uq3yahalRg .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq3yahalRg .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq3yahalRg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq3yahalRg .container {
  display: flex;
  margin: auto;
}
.cid-uq3yahalRg .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq3yahalRg .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq3yahalRg .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq3yahalRg .navbar-caption {
  color: #000000;
}
.cid-uq3yahalRg .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq3yahalRg .navbar-nav {
    margin: 0;
  }
}
.cid-uq3yahalRg .dropdown-menu,
.cid-uq3yahalRg .navbar.opened {
  background-color: false !important;
}
.cid-uq3yahalRg .nav-item:focus,
.cid-uq3yahalRg .nav-link:focus {
  outline: none;
}
.cid-uq3yahalRg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq3yahalRg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq3yahalRg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq3yahalRg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq3yahalRg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq3yahalRg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq3yahalRg .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq3yahalRg .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq3yahalRg .navbar.opened {
  transition: all 0.3s;
}
.cid-uq3yahalRg .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq3yahalRg .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq3yahalRg .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq3yahalRg .navbar.collapsed {
  justify-content: center;
}
.cid-uq3yahalRg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq3yahalRg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq3yahalRg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq3yahalRg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq3yahalRg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq3yahalRg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq3yahalRg .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq3yahalRg .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq3yahalRg .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq3yahalRg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq3yahalRg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq3yahalRg .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq3yahalRg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq3yahalRg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq3yahalRg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq3yahalRg .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq3yahalRg .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq3yahalRg .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq3yahalRg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq3yahalRg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq3yahalRg .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq3yahalRg .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq3yahalRg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq3yahalRg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq3yahalRg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq3yahalRg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq3yahalRg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq3yahalRg .dropdown-item.active,
.cid-uq3yahalRg .dropdown-item:active {
  background-color: transparent;
}
.cid-uq3yahalRg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq3yahalRg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq3yahalRg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq3yahalRg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq3yahalRg ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq3yahalRg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq3yahalRg button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq3yahalRg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq3yahalRg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq3yahalRg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3yahalRg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3yahalRg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq3yahalRg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3yahalRg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq3yahalRg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq3yahalRg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3yahalRg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq3yahalRg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq3yahalRg .navbar {
    height: 70px;
  }
  .cid-uq3yahalRg .navbar.opened {
    height: auto;
  }
  .cid-uq3yahalRg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq3yahalRg .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq3yahalRg .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq3yahalRg .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq3yahalRg .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq3yahalRg .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq3yahalRg .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq3yahalRg .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq3yahalRg .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq3yahalRg .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq3yahalRg .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq3yahalRg .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq3yahalRg .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq3yahalRg .mbr-section-subtitle,
.cid-uq3yahalRg .text_widget,
.cid-uq3yahalRg .mbr-section-btn {
  text-align: left;
}
.cid-uq3yahalRg a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgtkl2SBA {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urgtkl2SBA .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgtkl2SBA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urgtkl2SBA .container {
    padding: 0 22px;
  }
}
.cid-urgtkl2SBA .card {
  justify-content: center;
}
.cid-urgtkl2SBA .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-urgtkl2SBA .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-urgtkl2SBA .content-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-urgtkl2SBA .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-urgtkl2SBA .content-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-urgtkl2SBA .content-wrapper .border-wrap {
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 16px;
}
.cid-urgtkl2SBA .content-wrapper .contacts-wrap .item-contact {
  margin-bottom: 16px;
}
.cid-urgtkl2SBA .content-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-urgtkl2SBA .content-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ff6839;
  display: inline-flex;
  margin-right: 20px;
}
.cid-urgtkl2SBA .content-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-urgtkl2SBA .content-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-urgtkl2SBA .content-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-urgtkl2SBA .content-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-urgtkl2SBA .content-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-urgtkl2SBA .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-urgtkl2SBA .content-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-urgtkl2SBA .content-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-urgtkl2SBA .content-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-urgtkl2SBA .content-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-urgtkl2SBA .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-urgtkl2SBA .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-urgtkl2SBA .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-urgtkl2SBA .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-urgtkl2SBA .form-wrapper {
  position: relative;
  padding: 60px 40px;
}
@media (max-width: 992px) {
  .cid-urgtkl2SBA .form-wrapper {
    padding: 20px;
  }
}
.cid-urgtkl2SBA .form-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group {
  margin-bottom: 18px !important;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group .form-control {
  padding: 10px 15px;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: #ffffff;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  opacity: .5;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group textarea {
  min-height: 230px;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #ffffff;
  border-color: #000000;
  border-radius: 0;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #000000;
}
.cid-urgtkl2SBA .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-urgtkl2SBA .mbr-section-title {
  color: #ffffff;
}
.cid-urgtkl2SBA .mbr-section-subtitle {
  color: #ed4009;
}
.cid-urgtkl2SBA .mbr-text {
  color: #1c1c1c;
}
.cid-urgtkl2SBA .mbr-desc {
  color: #181818;
}
.cid-urgtkl2SBA .mbr-contact {
  color: #ffffff;
}
.cid-urgtkl2SBA .mbr-contact,
.cid-urgtkl2SBA .item-contact {
  color: #a8a8a8;
}
.cid-urgtkl2SBA LABEL {
  color: #ffffff;
}
.cid-uq3BM0PP9C {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uq3BM0PP9C .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #ececec;
  transition: all 0.3s;
}
.cid-uq3BM0PP9C .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-uq3BM0PP9C p {
  line-height: 1.6;
}
.cid-uq3BM0PP9C .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-uq3BM0PP9C .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-uq3BM0PP9C .card-img {
  overflow: hidden;
  max-height: 280px;
  border-radius: 0;
}
.cid-uq3BM0PP9C img {
  transition: all 0.3s;
}
.cid-uq3BM0PP9C .card-box {
  padding: 1.5rem;
}
.cid-uq3BM0PP9C .mbr-section-title {
  margin: 0 auto;
  color: #ff6839;
  text-align: center;
}
.cid-uq3BM0PP9C .card-box > p,
.cid-uq3BM0PP9C .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uq3BM0PP9C .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-uq3BM0PP9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3BM0PP9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq3JmmGIQz {
  z-index: 1000;
  width: 100%;
}
.cid-uq3JmmGIQz .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq3JmmGIQz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq3JmmGIQz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq3JmmGIQz .menu_box .navbar.opened,
  .cid-uq3JmmGIQz .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq3JmmGIQz nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq3JmmGIQz .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq3JmmGIQz .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq3JmmGIQz .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq3JmmGIQz .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq3JmmGIQz .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq3JmmGIQz .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq3JmmGIQz .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq3JmmGIQz .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq3JmmGIQz .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq3JmmGIQz .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq3JmmGIQz .offcanvas-body .mbr-text,
  .cid-uq3JmmGIQz .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq3JmmGIQz .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq3JmmGIQz .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq3JmmGIQz .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq3JmmGIQz .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq3JmmGIQz .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq3JmmGIQz .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq3JmmGIQz .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq3JmmGIQz ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq3JmmGIQz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3JmmGIQz .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq3JmmGIQz .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq3JmmGIQz li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq3JmmGIQz .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq3JmmGIQz .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq3JmmGIQz .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq3JmmGIQz .nav-item {
    margin: 0 !important;
  }
}
.cid-uq3JmmGIQz .nav-item .nav-link {
  position: relative;
}
.cid-uq3JmmGIQz .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq3JmmGIQz .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq3JmmGIQz .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq3JmmGIQz .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq3JmmGIQz .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq3JmmGIQz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3JmmGIQz .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq3JmmGIQz .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq3JmmGIQz .offcanvas_box {
    display: none;
  }
}
.cid-uq3JmmGIQz .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq3JmmGIQz .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq3JmmGIQz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq3JmmGIQz .container {
  display: flex;
  margin: auto;
}
.cid-uq3JmmGIQz .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq3JmmGIQz .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq3JmmGIQz .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq3JmmGIQz .navbar-caption {
  color: #000000;
}
.cid-uq3JmmGIQz .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq3JmmGIQz .navbar-nav {
    margin: 0;
  }
}
.cid-uq3JmmGIQz .dropdown-menu,
.cid-uq3JmmGIQz .navbar.opened {
  background-color: false !important;
}
.cid-uq3JmmGIQz .nav-item:focus,
.cid-uq3JmmGIQz .nav-link:focus {
  outline: none;
}
.cid-uq3JmmGIQz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq3JmmGIQz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq3JmmGIQz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq3JmmGIQz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq3JmmGIQz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq3JmmGIQz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq3JmmGIQz .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq3JmmGIQz .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq3JmmGIQz .navbar.opened {
  transition: all 0.3s;
}
.cid-uq3JmmGIQz .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq3JmmGIQz .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq3JmmGIQz .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq3JmmGIQz .navbar.collapsed {
  justify-content: center;
}
.cid-uq3JmmGIQz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq3JmmGIQz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq3JmmGIQz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq3JmmGIQz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq3JmmGIQz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq3JmmGIQz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq3JmmGIQz .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq3JmmGIQz .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq3JmmGIQz .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq3JmmGIQz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq3JmmGIQz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq3JmmGIQz .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq3JmmGIQz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq3JmmGIQz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq3JmmGIQz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq3JmmGIQz .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq3JmmGIQz .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq3JmmGIQz .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq3JmmGIQz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq3JmmGIQz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq3JmmGIQz .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq3JmmGIQz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq3JmmGIQz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq3JmmGIQz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq3JmmGIQz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq3JmmGIQz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq3JmmGIQz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq3JmmGIQz .dropdown-item.active,
.cid-uq3JmmGIQz .dropdown-item:active {
  background-color: transparent;
}
.cid-uq3JmmGIQz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq3JmmGIQz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq3JmmGIQz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq3JmmGIQz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq3JmmGIQz ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq3JmmGIQz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq3JmmGIQz button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq3JmmGIQz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq3JmmGIQz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq3JmmGIQz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3JmmGIQz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3JmmGIQz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq3JmmGIQz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3JmmGIQz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq3JmmGIQz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq3JmmGIQz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3JmmGIQz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq3JmmGIQz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq3JmmGIQz .navbar {
    height: 70px;
  }
  .cid-uq3JmmGIQz .navbar.opened {
    height: auto;
  }
  .cid-uq3JmmGIQz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq3JmmGIQz .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq3JmmGIQz .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq3JmmGIQz .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq3JmmGIQz .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq3JmmGIQz .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq3JmmGIQz .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq3JmmGIQz .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq3JmmGIQz .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq3JmmGIQz .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq3JmmGIQz .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq3JmmGIQz .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq3JmmGIQz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq3JmmGIQz .mbr-section-subtitle,
.cid-uq3JmmGIQz .text_widget,
.cid-uq3JmmGIQz .mbr-section-btn {
  text-align: left;
}
.cid-uq3JmmGIQz a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uq3JmnkRgE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-uq3JmnkRgE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3JmnkRgE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq3JmnkRgE .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uq3JmnkRgE .container-fluid {
    padding: 0 30px;
  }
}
.cid-uq3JmnkRgE .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uq3JmnkRgE .container {
    padding: 0 30px;
  }
}
.cid-uq3JmnkRgE .text-wrap {
  display: flex;
  align-items: center;
}
.cid-uq3JmnkRgE .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-uq3JmnkRgE .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-uq3JmnkRgE .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-uq3JmnkRgE .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uq3JmnkRgE .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-uq3JmnkRgE .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uq3JmnkRgE .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uq3JmnkRgE .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uq3JmnkRgE .image-wrapper {
    margin-top: 60px;
  }
}
.cid-uq3JmnkRgE .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-uq3JmnkRgE .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-uq3JmnkRgE .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-uq3JmnkRgE .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-uq3JmnkRgE .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-uq3JmnkRgE .image-wrapper img:last-child {
    display: none;
  }
}
.cid-uq3JmnkRgE .mbr-section-title {
  color: #000000;
}
.cid-uq3JmnkRgE .mbr-text {
  color: #000000;
}
.cid-uq3JmnkRgE .mbr-cit {
  color: #000000;
}
.cid-uq3JmnkRgE .mbr-name {
  color: #a8a8a8;
}
.cid-uq3Jmnv7kQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uq3Jmnv7kQ .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uq3Jmnv7kQ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uq3Jmnv7kQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3Jmnv7kQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgzgOetYH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urgzgOetYH .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgzgOetYH .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgzgOetYH .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgzgOetYH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urgEid9C2M {
  z-index: 1000;
  width: 100%;
}
.cid-urgEid9C2M .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urgEid9C2M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urgEid9C2M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urgEid9C2M .menu_box .navbar.opened,
  .cid-urgEid9C2M .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urgEid9C2M nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urgEid9C2M .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urgEid9C2M .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgEid9C2M .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urgEid9C2M .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urgEid9C2M .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urgEid9C2M .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urgEid9C2M .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urgEid9C2M .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urgEid9C2M .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urgEid9C2M .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urgEid9C2M .offcanvas-body .mbr-text,
  .cid-urgEid9C2M .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urgEid9C2M .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urgEid9C2M .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urgEid9C2M .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urgEid9C2M .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urgEid9C2M .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urgEid9C2M .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urgEid9C2M .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urgEid9C2M ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urgEid9C2M .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgEid9C2M .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urgEid9C2M .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urgEid9C2M li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urgEid9C2M .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urgEid9C2M .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urgEid9C2M .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urgEid9C2M .nav-item {
    margin: 0 !important;
  }
}
.cid-urgEid9C2M .nav-item .nav-link {
  position: relative;
}
.cid-urgEid9C2M .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urgEid9C2M .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urgEid9C2M .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urgEid9C2M .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urgEid9C2M .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urgEid9C2M .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgEid9C2M .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urgEid9C2M .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urgEid9C2M .offcanvas_box {
    display: none;
  }
}
.cid-urgEid9C2M .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urgEid9C2M .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urgEid9C2M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urgEid9C2M .container {
  display: flex;
  margin: auto;
}
.cid-urgEid9C2M .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urgEid9C2M .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urgEid9C2M .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urgEid9C2M .navbar-caption {
  color: #000000;
}
.cid-urgEid9C2M .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urgEid9C2M .navbar-nav {
    margin: 0;
  }
}
.cid-urgEid9C2M .dropdown-menu,
.cid-urgEid9C2M .navbar.opened {
  background-color: false !important;
}
.cid-urgEid9C2M .nav-item:focus,
.cid-urgEid9C2M .nav-link:focus {
  outline: none;
}
.cid-urgEid9C2M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urgEid9C2M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urgEid9C2M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urgEid9C2M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urgEid9C2M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urgEid9C2M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urgEid9C2M .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urgEid9C2M .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urgEid9C2M .navbar.opened {
  transition: all 0.3s;
}
.cid-urgEid9C2M .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urgEid9C2M .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urgEid9C2M .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urgEid9C2M .navbar.collapsed {
  justify-content: center;
}
.cid-urgEid9C2M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urgEid9C2M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urgEid9C2M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urgEid9C2M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urgEid9C2M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urgEid9C2M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urgEid9C2M .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urgEid9C2M .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urgEid9C2M .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urgEid9C2M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urgEid9C2M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urgEid9C2M .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urgEid9C2M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urgEid9C2M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urgEid9C2M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urgEid9C2M .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urgEid9C2M .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urgEid9C2M .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urgEid9C2M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urgEid9C2M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urgEid9C2M .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urgEid9C2M .navbar.navbar-short {
  min-height: 60px;
}
.cid-urgEid9C2M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urgEid9C2M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urgEid9C2M .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urgEid9C2M .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urgEid9C2M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urgEid9C2M .dropdown-item.active,
.cid-urgEid9C2M .dropdown-item:active {
  background-color: transparent;
}
.cid-urgEid9C2M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urgEid9C2M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urgEid9C2M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urgEid9C2M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urgEid9C2M ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urgEid9C2M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urgEid9C2M button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urgEid9C2M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urgEid9C2M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urgEid9C2M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgEid9C2M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgEid9C2M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urgEid9C2M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgEid9C2M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urgEid9C2M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urgEid9C2M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgEid9C2M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urgEid9C2M .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urgEid9C2M .navbar {
    height: 70px;
  }
  .cid-urgEid9C2M .navbar.opened {
    height: auto;
  }
  .cid-urgEid9C2M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urgEid9C2M .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urgEid9C2M .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urgEid9C2M .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urgEid9C2M .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urgEid9C2M .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urgEid9C2M .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urgEid9C2M .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urgEid9C2M .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urgEid9C2M .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urgEid9C2M .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urgEid9C2M .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urgEid9C2M .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urgEid9C2M .mbr-section-subtitle,
.cid-urgEid9C2M .text_widget,
.cid-urgEid9C2M .mbr-section-btn {
  text-align: left;
}
.cid-urgEid9C2M a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgEiewShf {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urgEiewShf .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgEiewShf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urgEiewShf .container {
    padding: 0 22px;
  }
}
.cid-urgEiewShf .card {
  justify-content: center;
}
.cid-urgEiewShf .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-urgEiewShf .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-urgEiewShf .content-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-urgEiewShf .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-urgEiewShf .content-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-urgEiewShf .content-wrapper .border-wrap {
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 16px;
}
.cid-urgEiewShf .content-wrapper .contacts-wrap .item-contact {
  margin-bottom: 16px;
}
.cid-urgEiewShf .content-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-urgEiewShf .content-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ff6839;
  display: inline-flex;
  margin-right: 20px;
}
.cid-urgEiewShf .content-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-urgEiewShf .content-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-urgEiewShf .content-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-urgEiewShf .content-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-urgEiewShf .content-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-urgEiewShf .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-urgEiewShf .content-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-urgEiewShf .content-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-urgEiewShf .content-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-urgEiewShf .content-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-urgEiewShf .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-urgEiewShf .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-urgEiewShf .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-urgEiewShf .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-urgEiewShf .form-wrapper {
  position: relative;
  padding: 60px 40px;
}
@media (max-width: 992px) {
  .cid-urgEiewShf .form-wrapper {
    padding: 20px;
  }
}
.cid-urgEiewShf .form-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-urgEiewShf .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group {
  margin-bottom: 18px !important;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group .form-control {
  padding: 10px 15px;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: #ffffff;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  opacity: .5;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group textarea {
  min-height: 230px;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #ffffff;
  border-color: #000000;
  border-radius: 0;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #000000;
}
.cid-urgEiewShf .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-urgEiewShf .mbr-section-title {
  color: #ffffff;
}
.cid-urgEiewShf .mbr-section-subtitle {
  color: #ed4009;
}
.cid-urgEiewShf .mbr-text {
  color: #1c1c1c;
}
.cid-urgEiewShf .mbr-desc {
  color: #181818;
}
.cid-urgEiewShf .mbr-contact {
  color: #ffffff;
}
.cid-urgEiewShf .mbr-contact,
.cid-urgEiewShf .item-contact {
  color: #a8a8a8;
}
.cid-urgEiewShf LABEL {
  color: #ffffff;
}
.cid-urgEieS4xL {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-urgEieS4xL .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #ececec;
  transition: all 0.3s;
}
.cid-urgEieS4xL .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-urgEieS4xL p {
  line-height: 1.6;
}
.cid-urgEieS4xL .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-urgEieS4xL .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-urgEieS4xL .card-img {
  overflow: hidden;
  max-height: 280px;
  border-radius: 0;
}
.cid-urgEieS4xL img {
  transition: all 0.3s;
}
.cid-urgEieS4xL .card-box {
  padding: 1.5rem;
}
.cid-urgEieS4xL .mbr-section-title {
  margin: 0 auto;
  color: #ff6839;
  text-align: center;
}
.cid-urgEieS4xL .card-box > p,
.cid-urgEieS4xL .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-urgEieS4xL .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-urgEieS4xL .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgEieS4xL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urgGIvTtlQ {
  z-index: 1000;
  width: 100%;
}
.cid-urgGIvTtlQ .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urgGIvTtlQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urgGIvTtlQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urgGIvTtlQ .menu_box .navbar.opened,
  .cid-urgGIvTtlQ .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urgGIvTtlQ nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urgGIvTtlQ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urgGIvTtlQ .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgGIvTtlQ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urgGIvTtlQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urgGIvTtlQ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urgGIvTtlQ .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urgGIvTtlQ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urgGIvTtlQ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urgGIvTtlQ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urgGIvTtlQ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urgGIvTtlQ .offcanvas-body .mbr-text,
  .cid-urgGIvTtlQ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urgGIvTtlQ .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urgGIvTtlQ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urgGIvTtlQ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urgGIvTtlQ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urgGIvTtlQ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urgGIvTtlQ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urgGIvTtlQ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urgGIvTtlQ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urgGIvTtlQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgGIvTtlQ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urgGIvTtlQ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urgGIvTtlQ li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urgGIvTtlQ .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urgGIvTtlQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urgGIvTtlQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urgGIvTtlQ .nav-item {
    margin: 0 !important;
  }
}
.cid-urgGIvTtlQ .nav-item .nav-link {
  position: relative;
}
.cid-urgGIvTtlQ .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urgGIvTtlQ .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urgGIvTtlQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urgGIvTtlQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urgGIvTtlQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urgGIvTtlQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgGIvTtlQ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urgGIvTtlQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urgGIvTtlQ .offcanvas_box {
    display: none;
  }
}
.cid-urgGIvTtlQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urgGIvTtlQ .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urgGIvTtlQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urgGIvTtlQ .container {
  display: flex;
  margin: auto;
}
.cid-urgGIvTtlQ .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urgGIvTtlQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urgGIvTtlQ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urgGIvTtlQ .navbar-caption {
  color: #000000;
}
.cid-urgGIvTtlQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urgGIvTtlQ .navbar-nav {
    margin: 0;
  }
}
.cid-urgGIvTtlQ .dropdown-menu,
.cid-urgGIvTtlQ .navbar.opened {
  background-color: false !important;
}
.cid-urgGIvTtlQ .nav-item:focus,
.cid-urgGIvTtlQ .nav-link:focus {
  outline: none;
}
.cid-urgGIvTtlQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urgGIvTtlQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urgGIvTtlQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urgGIvTtlQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urgGIvTtlQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urgGIvTtlQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urgGIvTtlQ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urgGIvTtlQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urgGIvTtlQ .navbar.opened {
  transition: all 0.3s;
}
.cid-urgGIvTtlQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urgGIvTtlQ .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urgGIvTtlQ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urgGIvTtlQ .navbar.collapsed {
  justify-content: center;
}
.cid-urgGIvTtlQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urgGIvTtlQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urgGIvTtlQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urgGIvTtlQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urgGIvTtlQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urgGIvTtlQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urgGIvTtlQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urgGIvTtlQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urgGIvTtlQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urgGIvTtlQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urgGIvTtlQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urgGIvTtlQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urgGIvTtlQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urgGIvTtlQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urgGIvTtlQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urgGIvTtlQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urgGIvTtlQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urgGIvTtlQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urgGIvTtlQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urgGIvTtlQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urgGIvTtlQ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urgGIvTtlQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-urgGIvTtlQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urgGIvTtlQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urgGIvTtlQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urgGIvTtlQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urgGIvTtlQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urgGIvTtlQ .dropdown-item.active,
.cid-urgGIvTtlQ .dropdown-item:active {
  background-color: transparent;
}
.cid-urgGIvTtlQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urgGIvTtlQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urgGIvTtlQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urgGIvTtlQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urgGIvTtlQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urgGIvTtlQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urgGIvTtlQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urgGIvTtlQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urgGIvTtlQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urgGIvTtlQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgGIvTtlQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgGIvTtlQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urgGIvTtlQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgGIvTtlQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urgGIvTtlQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urgGIvTtlQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgGIvTtlQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urgGIvTtlQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urgGIvTtlQ .navbar {
    height: 70px;
  }
  .cid-urgGIvTtlQ .navbar.opened {
    height: auto;
  }
  .cid-urgGIvTtlQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urgGIvTtlQ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urgGIvTtlQ .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urgGIvTtlQ .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urgGIvTtlQ .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urgGIvTtlQ .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urgGIvTtlQ .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urgGIvTtlQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urgGIvTtlQ .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urgGIvTtlQ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urgGIvTtlQ .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urgGIvTtlQ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urgGIvTtlQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urgGIvTtlQ .mbr-section-subtitle,
.cid-urgGIvTtlQ .text_widget,
.cid-urgGIvTtlQ .mbr-section-btn {
  text-align: left;
}
.cid-urgGIvTtlQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgGIx6hf7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-urgGIx6hf7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgGIx6hf7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgGIx6hf7 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urgGIx6hf7 .container-fluid {
    padding: 0 30px;
  }
}
.cid-urgGIx6hf7 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urgGIx6hf7 .container {
    padding: 0 30px;
  }
}
.cid-urgGIx6hf7 .text-wrap {
  display: flex;
  align-items: center;
}
.cid-urgGIx6hf7 .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-urgGIx6hf7 .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-urgGIx6hf7 .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-urgGIx6hf7 .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-urgGIx6hf7 .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-urgGIx6hf7 .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-urgGIx6hf7 .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-urgGIx6hf7 .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-urgGIx6hf7 .image-wrapper {
    margin-top: 60px;
  }
}
.cid-urgGIx6hf7 .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-urgGIx6hf7 .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-urgGIx6hf7 .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-urgGIx6hf7 .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-urgGIx6hf7 .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-urgGIx6hf7 .image-wrapper img:last-child {
    display: none;
  }
}
.cid-urgGIx6hf7 .mbr-section-title {
  color: #000000;
}
.cid-urgGIx6hf7 .mbr-text {
  color: #000000;
}
.cid-urgGIx6hf7 .mbr-cit {
  color: #000000;
}
.cid-urgGIx6hf7 .mbr-name {
  color: #a8a8a8;
}
.cid-urgGIxmkAH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-urgGIxmkAH .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgGIxmkAH .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgGIxmkAH .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgGIxmkAH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgGIxyYqU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urgGIxyYqU .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgGIxyYqU .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgGIxyYqU .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgGIxyYqU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urgIqqu11G {
  z-index: 1000;
  width: 100%;
}
.cid-urgIqqu11G .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urgIqqu11G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urgIqqu11G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urgIqqu11G .menu_box .navbar.opened,
  .cid-urgIqqu11G .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urgIqqu11G nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urgIqqu11G .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urgIqqu11G .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgIqqu11G .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urgIqqu11G .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urgIqqu11G .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urgIqqu11G .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urgIqqu11G .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urgIqqu11G .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urgIqqu11G .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urgIqqu11G .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urgIqqu11G .offcanvas-body .mbr-text,
  .cid-urgIqqu11G .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urgIqqu11G .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urgIqqu11G .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urgIqqu11G .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urgIqqu11G .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urgIqqu11G .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urgIqqu11G .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urgIqqu11G .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urgIqqu11G ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urgIqqu11G .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgIqqu11G .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urgIqqu11G .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urgIqqu11G li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urgIqqu11G .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urgIqqu11G .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urgIqqu11G .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urgIqqu11G .nav-item {
    margin: 0 !important;
  }
}
.cid-urgIqqu11G .nav-item .nav-link {
  position: relative;
}
.cid-urgIqqu11G .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urgIqqu11G .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urgIqqu11G .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urgIqqu11G .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urgIqqu11G .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urgIqqu11G .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgIqqu11G .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urgIqqu11G .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urgIqqu11G .offcanvas_box {
    display: none;
  }
}
.cid-urgIqqu11G .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urgIqqu11G .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urgIqqu11G .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urgIqqu11G .container {
  display: flex;
  margin: auto;
}
.cid-urgIqqu11G .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urgIqqu11G .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urgIqqu11G .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urgIqqu11G .navbar-caption {
  color: #000000;
}
.cid-urgIqqu11G .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urgIqqu11G .navbar-nav {
    margin: 0;
  }
}
.cid-urgIqqu11G .dropdown-menu,
.cid-urgIqqu11G .navbar.opened {
  background-color: false !important;
}
.cid-urgIqqu11G .nav-item:focus,
.cid-urgIqqu11G .nav-link:focus {
  outline: none;
}
.cid-urgIqqu11G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urgIqqu11G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urgIqqu11G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urgIqqu11G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urgIqqu11G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urgIqqu11G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urgIqqu11G .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urgIqqu11G .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urgIqqu11G .navbar.opened {
  transition: all 0.3s;
}
.cid-urgIqqu11G .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urgIqqu11G .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urgIqqu11G .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urgIqqu11G .navbar.collapsed {
  justify-content: center;
}
.cid-urgIqqu11G .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urgIqqu11G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urgIqqu11G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urgIqqu11G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urgIqqu11G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urgIqqu11G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urgIqqu11G .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urgIqqu11G .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urgIqqu11G .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urgIqqu11G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urgIqqu11G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urgIqqu11G .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urgIqqu11G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urgIqqu11G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urgIqqu11G .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urgIqqu11G .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urgIqqu11G .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urgIqqu11G .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urgIqqu11G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urgIqqu11G .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urgIqqu11G .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urgIqqu11G .navbar.navbar-short {
  min-height: 60px;
}
.cid-urgIqqu11G .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urgIqqu11G .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urgIqqu11G .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urgIqqu11G .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urgIqqu11G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urgIqqu11G .dropdown-item.active,
.cid-urgIqqu11G .dropdown-item:active {
  background-color: transparent;
}
.cid-urgIqqu11G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urgIqqu11G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urgIqqu11G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urgIqqu11G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urgIqqu11G ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urgIqqu11G .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urgIqqu11G button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urgIqqu11G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urgIqqu11G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urgIqqu11G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgIqqu11G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgIqqu11G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urgIqqu11G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgIqqu11G nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urgIqqu11G nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urgIqqu11G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgIqqu11G a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urgIqqu11G .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urgIqqu11G .navbar {
    height: 70px;
  }
  .cid-urgIqqu11G .navbar.opened {
    height: auto;
  }
  .cid-urgIqqu11G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urgIqqu11G .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urgIqqu11G .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urgIqqu11G .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urgIqqu11G .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urgIqqu11G .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urgIqqu11G .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urgIqqu11G .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urgIqqu11G .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urgIqqu11G .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urgIqqu11G .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urgIqqu11G .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urgIqqu11G .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urgIqqu11G .mbr-section-subtitle,
.cid-urgIqqu11G .text_widget,
.cid-urgIqqu11G .mbr-section-btn {
  text-align: left;
}
.cid-urgIqqu11G a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgIqrpL9Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-urgIqrpL9Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgIqrpL9Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgIqrpL9Q .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urgIqrpL9Q .container-fluid {
    padding: 0 30px;
  }
}
.cid-urgIqrpL9Q .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urgIqrpL9Q .container {
    padding: 0 30px;
  }
}
.cid-urgIqrpL9Q .text-wrap {
  display: flex;
  align-items: center;
}
.cid-urgIqrpL9Q .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-urgIqrpL9Q .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-urgIqrpL9Q .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-urgIqrpL9Q .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-urgIqrpL9Q .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-urgIqrpL9Q .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-urgIqrpL9Q .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-urgIqrpL9Q .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-urgIqrpL9Q .image-wrapper {
    margin-top: 60px;
  }
}
.cid-urgIqrpL9Q .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-urgIqrpL9Q .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-urgIqrpL9Q .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-urgIqrpL9Q .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-urgIqrpL9Q .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-urgIqrpL9Q .image-wrapper img:last-child {
    display: none;
  }
}
.cid-urgIqrpL9Q .mbr-section-title {
  color: #000000;
}
.cid-urgIqrpL9Q .mbr-text {
  color: #000000;
}
.cid-urgIqrpL9Q .mbr-cit {
  color: #000000;
}
.cid-urgIqrpL9Q .mbr-name {
  color: #a8a8a8;
}
.cid-urgIqrGw5R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-urgIqrGw5R .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgIqrGw5R .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgIqrGw5R .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgIqrGw5R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgIqrO7jq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urgIqrO7jq .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgIqrO7jq .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgIqrO7jq .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgIqrO7jq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urgK4CVTX3 {
  z-index: 1000;
  width: 100%;
}
.cid-urgK4CVTX3 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urgK4CVTX3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urgK4CVTX3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urgK4CVTX3 .menu_box .navbar.opened,
  .cid-urgK4CVTX3 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urgK4CVTX3 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urgK4CVTX3 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urgK4CVTX3 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgK4CVTX3 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urgK4CVTX3 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urgK4CVTX3 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urgK4CVTX3 .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urgK4CVTX3 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urgK4CVTX3 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urgK4CVTX3 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urgK4CVTX3 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urgK4CVTX3 .offcanvas-body .mbr-text,
  .cid-urgK4CVTX3 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urgK4CVTX3 .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urgK4CVTX3 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urgK4CVTX3 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urgK4CVTX3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urgK4CVTX3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urgK4CVTX3 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urgK4CVTX3 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urgK4CVTX3 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urgK4CVTX3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgK4CVTX3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urgK4CVTX3 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urgK4CVTX3 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urgK4CVTX3 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urgK4CVTX3 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urgK4CVTX3 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urgK4CVTX3 .nav-item {
    margin: 0 !important;
  }
}
.cid-urgK4CVTX3 .nav-item .nav-link {
  position: relative;
}
.cid-urgK4CVTX3 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urgK4CVTX3 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urgK4CVTX3 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urgK4CVTX3 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urgK4CVTX3 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urgK4CVTX3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgK4CVTX3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urgK4CVTX3 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urgK4CVTX3 .offcanvas_box {
    display: none;
  }
}
.cid-urgK4CVTX3 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urgK4CVTX3 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urgK4CVTX3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urgK4CVTX3 .container {
  display: flex;
  margin: auto;
}
.cid-urgK4CVTX3 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urgK4CVTX3 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urgK4CVTX3 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urgK4CVTX3 .navbar-caption {
  color: #000000;
}
.cid-urgK4CVTX3 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urgK4CVTX3 .navbar-nav {
    margin: 0;
  }
}
.cid-urgK4CVTX3 .dropdown-menu,
.cid-urgK4CVTX3 .navbar.opened {
  background-color: false !important;
}
.cid-urgK4CVTX3 .nav-item:focus,
.cid-urgK4CVTX3 .nav-link:focus {
  outline: none;
}
.cid-urgK4CVTX3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urgK4CVTX3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urgK4CVTX3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urgK4CVTX3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urgK4CVTX3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urgK4CVTX3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urgK4CVTX3 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urgK4CVTX3 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urgK4CVTX3 .navbar.opened {
  transition: all 0.3s;
}
.cid-urgK4CVTX3 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urgK4CVTX3 .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urgK4CVTX3 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urgK4CVTX3 .navbar.collapsed {
  justify-content: center;
}
.cid-urgK4CVTX3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urgK4CVTX3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urgK4CVTX3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urgK4CVTX3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urgK4CVTX3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urgK4CVTX3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urgK4CVTX3 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urgK4CVTX3 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urgK4CVTX3 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urgK4CVTX3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urgK4CVTX3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urgK4CVTX3 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urgK4CVTX3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urgK4CVTX3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urgK4CVTX3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urgK4CVTX3 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urgK4CVTX3 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urgK4CVTX3 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urgK4CVTX3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urgK4CVTX3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urgK4CVTX3 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urgK4CVTX3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-urgK4CVTX3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urgK4CVTX3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urgK4CVTX3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urgK4CVTX3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urgK4CVTX3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urgK4CVTX3 .dropdown-item.active,
.cid-urgK4CVTX3 .dropdown-item:active {
  background-color: transparent;
}
.cid-urgK4CVTX3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urgK4CVTX3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urgK4CVTX3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urgK4CVTX3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urgK4CVTX3 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urgK4CVTX3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urgK4CVTX3 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urgK4CVTX3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urgK4CVTX3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urgK4CVTX3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgK4CVTX3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgK4CVTX3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urgK4CVTX3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgK4CVTX3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urgK4CVTX3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urgK4CVTX3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgK4CVTX3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urgK4CVTX3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urgK4CVTX3 .navbar {
    height: 70px;
  }
  .cid-urgK4CVTX3 .navbar.opened {
    height: auto;
  }
  .cid-urgK4CVTX3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urgK4CVTX3 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urgK4CVTX3 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urgK4CVTX3 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urgK4CVTX3 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urgK4CVTX3 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urgK4CVTX3 .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urgK4CVTX3 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urgK4CVTX3 .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urgK4CVTX3 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urgK4CVTX3 .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urgK4CVTX3 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urgK4CVTX3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urgK4CVTX3 .mbr-section-subtitle,
.cid-urgK4CVTX3 .text_widget,
.cid-urgK4CVTX3 .mbr-section-btn {
  text-align: left;
}
.cid-urgK4CVTX3 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgK4DFVIJ {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urgK4DFVIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgK4DFVIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urgK4DFVIJ .container {
    padding: 0 22px;
  }
}
.cid-urgK4DFVIJ .card {
  justify-content: center;
}
.cid-urgK4DFVIJ .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-urgK4DFVIJ .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-urgK4DFVIJ .content-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-urgK4DFVIJ .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-urgK4DFVIJ .content-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-urgK4DFVIJ .content-wrapper .border-wrap {
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 16px;
}
.cid-urgK4DFVIJ .content-wrapper .contacts-wrap .item-contact {
  margin-bottom: 16px;
}
.cid-urgK4DFVIJ .content-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-urgK4DFVIJ .content-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ff6839;
  display: inline-flex;
  margin-right: 20px;
}
.cid-urgK4DFVIJ .content-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-urgK4DFVIJ .content-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-urgK4DFVIJ .content-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-urgK4DFVIJ .content-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-urgK4DFVIJ .content-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-urgK4DFVIJ .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-urgK4DFVIJ .content-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-urgK4DFVIJ .content-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-urgK4DFVIJ .content-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-urgK4DFVIJ .content-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-urgK4DFVIJ .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-urgK4DFVIJ .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-urgK4DFVIJ .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-urgK4DFVIJ .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-urgK4DFVIJ .form-wrapper {
  position: relative;
  padding: 60px 40px;
}
@media (max-width: 992px) {
  .cid-urgK4DFVIJ .form-wrapper {
    padding: 20px;
  }
}
.cid-urgK4DFVIJ .form-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group {
  margin-bottom: 18px !important;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group .form-control {
  padding: 10px 15px;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: #ffffff;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  opacity: .5;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group textarea {
  min-height: 230px;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #ffffff;
  border-color: #000000;
  border-radius: 0;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #000000;
}
.cid-urgK4DFVIJ .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-urgK4DFVIJ .mbr-section-title {
  color: #ffffff;
}
.cid-urgK4DFVIJ .mbr-section-subtitle {
  color: #ed4009;
}
.cid-urgK4DFVIJ .mbr-text {
  color: #1c1c1c;
}
.cid-urgK4DFVIJ .mbr-desc {
  color: #181818;
}
.cid-urgK4DFVIJ .mbr-contact {
  color: #ffffff;
}
.cid-urgK4DFVIJ .mbr-contact,
.cid-urgK4DFVIJ .item-contact {
  color: #a8a8a8;
}
.cid-urgK4DFVIJ LABEL {
  color: #ffffff;
}
.cid-urgK4DZG9t {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-urgK4DZG9t .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #ececec;
  transition: all 0.3s;
}
.cid-urgK4DZG9t .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-urgK4DZG9t p {
  line-height: 1.6;
}
.cid-urgK4DZG9t .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-urgK4DZG9t .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-urgK4DZG9t .card-img {
  overflow: hidden;
  max-height: 280px;
  border-radius: 0;
}
.cid-urgK4DZG9t img {
  transition: all 0.3s;
}
.cid-urgK4DZG9t .card-box {
  padding: 1.5rem;
}
.cid-urgK4DZG9t .mbr-section-title {
  margin: 0 auto;
  color: #ff6839;
  text-align: center;
}
.cid-urgK4DZG9t .card-box > p,
.cid-urgK4DZG9t .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-urgK4DZG9t .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-urgK4DZG9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgK4DZG9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urgL8hWfVe {
  z-index: 1000;
  width: 100%;
}
.cid-urgL8hWfVe .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urgL8hWfVe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urgL8hWfVe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urgL8hWfVe .menu_box .navbar.opened,
  .cid-urgL8hWfVe .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urgL8hWfVe nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urgL8hWfVe .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urgL8hWfVe .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgL8hWfVe .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urgL8hWfVe .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urgL8hWfVe .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urgL8hWfVe .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urgL8hWfVe .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urgL8hWfVe .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urgL8hWfVe .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urgL8hWfVe .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urgL8hWfVe .offcanvas-body .mbr-text,
  .cid-urgL8hWfVe .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urgL8hWfVe .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urgL8hWfVe .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urgL8hWfVe .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urgL8hWfVe .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urgL8hWfVe .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urgL8hWfVe .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urgL8hWfVe .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urgL8hWfVe ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urgL8hWfVe .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgL8hWfVe .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urgL8hWfVe .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urgL8hWfVe li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urgL8hWfVe .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urgL8hWfVe .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urgL8hWfVe .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urgL8hWfVe .nav-item {
    margin: 0 !important;
  }
}
.cid-urgL8hWfVe .nav-item .nav-link {
  position: relative;
}
.cid-urgL8hWfVe .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urgL8hWfVe .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urgL8hWfVe .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urgL8hWfVe .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urgL8hWfVe .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urgL8hWfVe .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgL8hWfVe .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urgL8hWfVe .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urgL8hWfVe .offcanvas_box {
    display: none;
  }
}
.cid-urgL8hWfVe .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urgL8hWfVe .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urgL8hWfVe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urgL8hWfVe .container {
  display: flex;
  margin: auto;
}
.cid-urgL8hWfVe .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urgL8hWfVe .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urgL8hWfVe .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urgL8hWfVe .navbar-caption {
  color: #000000;
}
.cid-urgL8hWfVe .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urgL8hWfVe .navbar-nav {
    margin: 0;
  }
}
.cid-urgL8hWfVe .dropdown-menu,
.cid-urgL8hWfVe .navbar.opened {
  background-color: false !important;
}
.cid-urgL8hWfVe .nav-item:focus,
.cid-urgL8hWfVe .nav-link:focus {
  outline: none;
}
.cid-urgL8hWfVe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urgL8hWfVe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urgL8hWfVe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urgL8hWfVe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urgL8hWfVe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urgL8hWfVe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urgL8hWfVe .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urgL8hWfVe .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urgL8hWfVe .navbar.opened {
  transition: all 0.3s;
}
.cid-urgL8hWfVe .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urgL8hWfVe .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urgL8hWfVe .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urgL8hWfVe .navbar.collapsed {
  justify-content: center;
}
.cid-urgL8hWfVe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urgL8hWfVe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urgL8hWfVe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urgL8hWfVe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urgL8hWfVe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urgL8hWfVe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urgL8hWfVe .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urgL8hWfVe .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urgL8hWfVe .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urgL8hWfVe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urgL8hWfVe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urgL8hWfVe .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urgL8hWfVe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urgL8hWfVe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urgL8hWfVe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urgL8hWfVe .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urgL8hWfVe .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urgL8hWfVe .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urgL8hWfVe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urgL8hWfVe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urgL8hWfVe .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urgL8hWfVe .navbar.navbar-short {
  min-height: 60px;
}
.cid-urgL8hWfVe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urgL8hWfVe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urgL8hWfVe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urgL8hWfVe .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urgL8hWfVe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urgL8hWfVe .dropdown-item.active,
.cid-urgL8hWfVe .dropdown-item:active {
  background-color: transparent;
}
.cid-urgL8hWfVe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urgL8hWfVe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urgL8hWfVe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urgL8hWfVe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urgL8hWfVe ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urgL8hWfVe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urgL8hWfVe button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urgL8hWfVe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urgL8hWfVe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urgL8hWfVe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgL8hWfVe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgL8hWfVe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urgL8hWfVe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgL8hWfVe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urgL8hWfVe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urgL8hWfVe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgL8hWfVe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urgL8hWfVe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urgL8hWfVe .navbar {
    height: 70px;
  }
  .cid-urgL8hWfVe .navbar.opened {
    height: auto;
  }
  .cid-urgL8hWfVe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urgL8hWfVe .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urgL8hWfVe .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urgL8hWfVe .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urgL8hWfVe .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urgL8hWfVe .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urgL8hWfVe .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urgL8hWfVe .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urgL8hWfVe .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urgL8hWfVe .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urgL8hWfVe .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urgL8hWfVe .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urgL8hWfVe .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urgL8hWfVe .mbr-section-subtitle,
.cid-urgL8hWfVe .text_widget,
.cid-urgL8hWfVe .mbr-section-btn {
  text-align: left;
}
.cid-urgL8hWfVe a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgL8iUVq1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-urgL8iUVq1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgL8iUVq1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgL8iUVq1 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urgL8iUVq1 .container-fluid {
    padding: 0 30px;
  }
}
.cid-urgL8iUVq1 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urgL8iUVq1 .container {
    padding: 0 30px;
  }
}
.cid-urgL8iUVq1 .text-wrap {
  display: flex;
  align-items: center;
}
.cid-urgL8iUVq1 .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-urgL8iUVq1 .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-urgL8iUVq1 .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-urgL8iUVq1 .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-urgL8iUVq1 .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-urgL8iUVq1 .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-urgL8iUVq1 .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-urgL8iUVq1 .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-urgL8iUVq1 .image-wrapper {
    margin-top: 60px;
  }
}
.cid-urgL8iUVq1 .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-urgL8iUVq1 .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-urgL8iUVq1 .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-urgL8iUVq1 .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-urgL8iUVq1 .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-urgL8iUVq1 .image-wrapper img:last-child {
    display: none;
  }
}
.cid-urgL8iUVq1 .mbr-section-title {
  color: #000000;
}
.cid-urgL8iUVq1 .mbr-text {
  color: #000000;
}
.cid-urgL8iUVq1 .mbr-cit {
  color: #000000;
}
.cid-urgL8iUVq1 .mbr-name {
  color: #a8a8a8;
}
.cid-urgL8j9JBJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-urgL8j9JBJ .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgL8j9JBJ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgL8j9JBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgL8j9JBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgL8jgI5F {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urgL8jgI5F .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgL8jgI5F .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgL8jgI5F .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgL8jgI5F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urgQloU8o1 {
  z-index: 1000;
  width: 100%;
}
.cid-urgQloU8o1 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urgQloU8o1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urgQloU8o1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urgQloU8o1 .menu_box .navbar.opened,
  .cid-urgQloU8o1 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urgQloU8o1 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urgQloU8o1 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urgQloU8o1 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgQloU8o1 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urgQloU8o1 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urgQloU8o1 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urgQloU8o1 .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urgQloU8o1 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urgQloU8o1 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urgQloU8o1 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urgQloU8o1 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urgQloU8o1 .offcanvas-body .mbr-text,
  .cid-urgQloU8o1 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urgQloU8o1 .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urgQloU8o1 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urgQloU8o1 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urgQloU8o1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urgQloU8o1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urgQloU8o1 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urgQloU8o1 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urgQloU8o1 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urgQloU8o1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgQloU8o1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urgQloU8o1 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urgQloU8o1 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urgQloU8o1 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urgQloU8o1 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urgQloU8o1 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urgQloU8o1 .nav-item {
    margin: 0 !important;
  }
}
.cid-urgQloU8o1 .nav-item .nav-link {
  position: relative;
}
.cid-urgQloU8o1 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urgQloU8o1 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urgQloU8o1 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urgQloU8o1 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urgQloU8o1 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urgQloU8o1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgQloU8o1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urgQloU8o1 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urgQloU8o1 .offcanvas_box {
    display: none;
  }
}
.cid-urgQloU8o1 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urgQloU8o1 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urgQloU8o1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urgQloU8o1 .container {
  display: flex;
  margin: auto;
}
.cid-urgQloU8o1 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urgQloU8o1 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urgQloU8o1 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urgQloU8o1 .navbar-caption {
  color: #000000;
}
.cid-urgQloU8o1 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urgQloU8o1 .navbar-nav {
    margin: 0;
  }
}
.cid-urgQloU8o1 .dropdown-menu,
.cid-urgQloU8o1 .navbar.opened {
  background-color: false !important;
}
.cid-urgQloU8o1 .nav-item:focus,
.cid-urgQloU8o1 .nav-link:focus {
  outline: none;
}
.cid-urgQloU8o1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urgQloU8o1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urgQloU8o1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urgQloU8o1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urgQloU8o1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urgQloU8o1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urgQloU8o1 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urgQloU8o1 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urgQloU8o1 .navbar.opened {
  transition: all 0.3s;
}
.cid-urgQloU8o1 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urgQloU8o1 .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urgQloU8o1 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urgQloU8o1 .navbar.collapsed {
  justify-content: center;
}
.cid-urgQloU8o1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urgQloU8o1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urgQloU8o1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urgQloU8o1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urgQloU8o1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urgQloU8o1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urgQloU8o1 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urgQloU8o1 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urgQloU8o1 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urgQloU8o1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urgQloU8o1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urgQloU8o1 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urgQloU8o1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urgQloU8o1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urgQloU8o1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urgQloU8o1 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urgQloU8o1 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urgQloU8o1 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urgQloU8o1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urgQloU8o1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urgQloU8o1 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urgQloU8o1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-urgQloU8o1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urgQloU8o1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urgQloU8o1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urgQloU8o1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urgQloU8o1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urgQloU8o1 .dropdown-item.active,
.cid-urgQloU8o1 .dropdown-item:active {
  background-color: transparent;
}
.cid-urgQloU8o1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urgQloU8o1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urgQloU8o1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urgQloU8o1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urgQloU8o1 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urgQloU8o1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urgQloU8o1 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urgQloU8o1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urgQloU8o1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urgQloU8o1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgQloU8o1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgQloU8o1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urgQloU8o1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgQloU8o1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urgQloU8o1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urgQloU8o1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgQloU8o1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urgQloU8o1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urgQloU8o1 .navbar {
    height: 70px;
  }
  .cid-urgQloU8o1 .navbar.opened {
    height: auto;
  }
  .cid-urgQloU8o1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urgQloU8o1 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urgQloU8o1 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urgQloU8o1 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urgQloU8o1 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urgQloU8o1 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urgQloU8o1 .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urgQloU8o1 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urgQloU8o1 .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urgQloU8o1 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urgQloU8o1 .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urgQloU8o1 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urgQloU8o1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urgQloU8o1 .mbr-section-subtitle,
.cid-urgQloU8o1 .text_widget,
.cid-urgQloU8o1 .mbr-section-btn {
  text-align: left;
}
.cid-urgQloU8o1 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgQlpL1FO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-urgQlpL1FO .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgQlpL1FO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgQlpL1FO .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urgQlpL1FO .container-fluid {
    padding: 0 30px;
  }
}
.cid-urgQlpL1FO .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urgQlpL1FO .container {
    padding: 0 30px;
  }
}
.cid-urgQlpL1FO .text-wrap {
  display: flex;
  align-items: center;
}
.cid-urgQlpL1FO .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-urgQlpL1FO .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-urgQlpL1FO .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-urgQlpL1FO .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-urgQlpL1FO .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-urgQlpL1FO .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-urgQlpL1FO .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-urgQlpL1FO .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-urgQlpL1FO .image-wrapper {
    margin-top: 60px;
  }
}
.cid-urgQlpL1FO .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-urgQlpL1FO .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-urgQlpL1FO .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-urgQlpL1FO .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-urgQlpL1FO .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-urgQlpL1FO .image-wrapper img:last-child {
    display: none;
  }
}
.cid-urgQlpL1FO .mbr-section-title {
  color: #000000;
}
.cid-urgQlpL1FO .mbr-text {
  color: #000000;
}
.cid-urgQlpL1FO .mbr-cit {
  color: #000000;
}
.cid-urgQlpL1FO .mbr-name {
  color: #a8a8a8;
}
.cid-urgQlpZV1G {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-urgQlpZV1G .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgQlpZV1G .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgQlpZV1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgQlpZV1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgQlq7gF6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urgQlq7gF6 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgQlq7gF6 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgQlq7gF6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgQlq7gF6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urgTJPZ70u {
  z-index: 1000;
  width: 100%;
}
.cid-urgTJPZ70u .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urgTJPZ70u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urgTJPZ70u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urgTJPZ70u .menu_box .navbar.opened,
  .cid-urgTJPZ70u .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urgTJPZ70u nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urgTJPZ70u .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urgTJPZ70u .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgTJPZ70u .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urgTJPZ70u .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urgTJPZ70u .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urgTJPZ70u .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urgTJPZ70u .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urgTJPZ70u .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urgTJPZ70u .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urgTJPZ70u .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urgTJPZ70u .offcanvas-body .mbr-text,
  .cid-urgTJPZ70u .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urgTJPZ70u .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urgTJPZ70u .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urgTJPZ70u .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urgTJPZ70u .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urgTJPZ70u .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urgTJPZ70u .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urgTJPZ70u .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urgTJPZ70u ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urgTJPZ70u .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgTJPZ70u .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urgTJPZ70u .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urgTJPZ70u li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urgTJPZ70u .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urgTJPZ70u .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urgTJPZ70u .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urgTJPZ70u .nav-item {
    margin: 0 !important;
  }
}
.cid-urgTJPZ70u .nav-item .nav-link {
  position: relative;
}
.cid-urgTJPZ70u .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urgTJPZ70u .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urgTJPZ70u .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urgTJPZ70u .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urgTJPZ70u .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urgTJPZ70u .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgTJPZ70u .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urgTJPZ70u .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urgTJPZ70u .offcanvas_box {
    display: none;
  }
}
.cid-urgTJPZ70u .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urgTJPZ70u .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urgTJPZ70u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urgTJPZ70u .container {
  display: flex;
  margin: auto;
}
.cid-urgTJPZ70u .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urgTJPZ70u .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urgTJPZ70u .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urgTJPZ70u .navbar-caption {
  color: #000000;
}
.cid-urgTJPZ70u .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urgTJPZ70u .navbar-nav {
    margin: 0;
  }
}
.cid-urgTJPZ70u .dropdown-menu,
.cid-urgTJPZ70u .navbar.opened {
  background-color: false !important;
}
.cid-urgTJPZ70u .nav-item:focus,
.cid-urgTJPZ70u .nav-link:focus {
  outline: none;
}
.cid-urgTJPZ70u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urgTJPZ70u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urgTJPZ70u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urgTJPZ70u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urgTJPZ70u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urgTJPZ70u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urgTJPZ70u .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urgTJPZ70u .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urgTJPZ70u .navbar.opened {
  transition: all 0.3s;
}
.cid-urgTJPZ70u .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urgTJPZ70u .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urgTJPZ70u .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urgTJPZ70u .navbar.collapsed {
  justify-content: center;
}
.cid-urgTJPZ70u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urgTJPZ70u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urgTJPZ70u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urgTJPZ70u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urgTJPZ70u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urgTJPZ70u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urgTJPZ70u .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urgTJPZ70u .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urgTJPZ70u .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urgTJPZ70u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urgTJPZ70u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urgTJPZ70u .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urgTJPZ70u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urgTJPZ70u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urgTJPZ70u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urgTJPZ70u .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urgTJPZ70u .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urgTJPZ70u .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urgTJPZ70u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urgTJPZ70u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urgTJPZ70u .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urgTJPZ70u .navbar.navbar-short {
  min-height: 60px;
}
.cid-urgTJPZ70u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urgTJPZ70u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urgTJPZ70u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urgTJPZ70u .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urgTJPZ70u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urgTJPZ70u .dropdown-item.active,
.cid-urgTJPZ70u .dropdown-item:active {
  background-color: transparent;
}
.cid-urgTJPZ70u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urgTJPZ70u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urgTJPZ70u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urgTJPZ70u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urgTJPZ70u ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urgTJPZ70u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urgTJPZ70u button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urgTJPZ70u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urgTJPZ70u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urgTJPZ70u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgTJPZ70u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgTJPZ70u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urgTJPZ70u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgTJPZ70u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urgTJPZ70u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urgTJPZ70u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgTJPZ70u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urgTJPZ70u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urgTJPZ70u .navbar {
    height: 70px;
  }
  .cid-urgTJPZ70u .navbar.opened {
    height: auto;
  }
  .cid-urgTJPZ70u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urgTJPZ70u .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urgTJPZ70u .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urgTJPZ70u .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urgTJPZ70u .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urgTJPZ70u .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urgTJPZ70u .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urgTJPZ70u .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urgTJPZ70u .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urgTJPZ70u .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urgTJPZ70u .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urgTJPZ70u .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urgTJPZ70u .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urgTJPZ70u .mbr-section-subtitle,
.cid-urgTJPZ70u .text_widget,
.cid-urgTJPZ70u .mbr-section-btn {
  text-align: left;
}
.cid-urgTJPZ70u a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgTJQVxuF {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urgTJQVxuF .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgTJQVxuF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urgTJQVxuF .container {
    padding: 0 22px;
  }
}
.cid-urgTJQVxuF .card {
  justify-content: center;
}
.cid-urgTJQVxuF .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-urgTJQVxuF .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-urgTJQVxuF .content-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-urgTJQVxuF .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-urgTJQVxuF .content-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-urgTJQVxuF .content-wrapper .border-wrap {
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 16px;
}
.cid-urgTJQVxuF .content-wrapper .contacts-wrap .item-contact {
  margin-bottom: 16px;
}
.cid-urgTJQVxuF .content-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-urgTJQVxuF .content-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ff6839;
  display: inline-flex;
  margin-right: 20px;
}
.cid-urgTJQVxuF .content-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-urgTJQVxuF .content-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-urgTJQVxuF .content-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-urgTJQVxuF .content-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-urgTJQVxuF .content-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-urgTJQVxuF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-urgTJQVxuF .content-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-urgTJQVxuF .content-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-urgTJQVxuF .content-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-urgTJQVxuF .content-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-urgTJQVxuF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-urgTJQVxuF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-urgTJQVxuF .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-urgTJQVxuF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-urgTJQVxuF .form-wrapper {
  position: relative;
  padding: 60px 40px;
}
@media (max-width: 992px) {
  .cid-urgTJQVxuF .form-wrapper {
    padding: 20px;
  }
}
.cid-urgTJQVxuF .form-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group {
  margin-bottom: 18px !important;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group .form-control {
  padding: 10px 15px;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: #ffffff;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  opacity: .5;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group textarea {
  min-height: 230px;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #ffffff;
  border-color: #000000;
  border-radius: 0;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #000000;
}
.cid-urgTJQVxuF .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-urgTJQVxuF .mbr-section-title {
  color: #ffffff;
}
.cid-urgTJQVxuF .mbr-section-subtitle {
  color: #ed4009;
}
.cid-urgTJQVxuF .mbr-text {
  color: #1c1c1c;
}
.cid-urgTJQVxuF .mbr-desc {
  color: #181818;
}
.cid-urgTJQVxuF .mbr-contact {
  color: #ffffff;
}
.cid-urgTJQVxuF .mbr-contact,
.cid-urgTJQVxuF .item-contact {
  color: #a8a8a8;
}
.cid-urgTJQVxuF LABEL {
  color: #ffffff;
}
.cid-urgTJRjIK3 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-urgTJRjIK3 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #ececec;
  transition: all 0.3s;
}
.cid-urgTJRjIK3 .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-urgTJRjIK3 p {
  line-height: 1.6;
}
.cid-urgTJRjIK3 .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-urgTJRjIK3 .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-urgTJRjIK3 .card-img {
  overflow: hidden;
  max-height: 280px;
  border-radius: 0;
}
.cid-urgTJRjIK3 img {
  transition: all 0.3s;
}
.cid-urgTJRjIK3 .card-box {
  padding: 1.5rem;
}
.cid-urgTJRjIK3 .mbr-section-title {
  margin: 0 auto;
  color: #ff6839;
  text-align: center;
}
.cid-urgTJRjIK3 .card-box > p,
.cid-urgTJRjIK3 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-urgTJRjIK3 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-urgTJRjIK3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgTJRjIK3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uq3RArrxme {
  z-index: 1000;
  width: 100%;
}
.cid-uq3RArrxme .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uq3RArrxme .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uq3RArrxme .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uq3RArrxme .menu_box .navbar.opened,
  .cid-uq3RArrxme .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uq3RArrxme nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uq3RArrxme .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uq3RArrxme .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uq3RArrxme .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uq3RArrxme .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uq3RArrxme .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uq3RArrxme .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uq3RArrxme .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uq3RArrxme .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uq3RArrxme .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uq3RArrxme .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uq3RArrxme .offcanvas-body .mbr-text,
  .cid-uq3RArrxme .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uq3RArrxme .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uq3RArrxme .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uq3RArrxme .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uq3RArrxme .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uq3RArrxme .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uq3RArrxme .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uq3RArrxme .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uq3RArrxme ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uq3RArrxme .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3RArrxme .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uq3RArrxme .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uq3RArrxme li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uq3RArrxme .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uq3RArrxme .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uq3RArrxme .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uq3RArrxme .nav-item {
    margin: 0 !important;
  }
}
.cid-uq3RArrxme .nav-item .nav-link {
  position: relative;
}
.cid-uq3RArrxme .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uq3RArrxme .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uq3RArrxme .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uq3RArrxme .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uq3RArrxme .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uq3RArrxme .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uq3RArrxme .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uq3RArrxme .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uq3RArrxme .offcanvas_box {
    display: none;
  }
}
.cid-uq3RArrxme .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uq3RArrxme .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uq3RArrxme .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uq3RArrxme .container {
  display: flex;
  margin: auto;
}
.cid-uq3RArrxme .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uq3RArrxme .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uq3RArrxme .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uq3RArrxme .navbar-caption {
  color: #000000;
}
.cid-uq3RArrxme .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uq3RArrxme .navbar-nav {
    margin: 0;
  }
}
.cid-uq3RArrxme .dropdown-menu,
.cid-uq3RArrxme .navbar.opened {
  background-color: false !important;
}
.cid-uq3RArrxme .nav-item:focus,
.cid-uq3RArrxme .nav-link:focus {
  outline: none;
}
.cid-uq3RArrxme .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq3RArrxme .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq3RArrxme .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq3RArrxme .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq3RArrxme .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq3RArrxme .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq3RArrxme .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uq3RArrxme .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uq3RArrxme .navbar.opened {
  transition: all 0.3s;
}
.cid-uq3RArrxme .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uq3RArrxme .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uq3RArrxme .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uq3RArrxme .navbar.collapsed {
  justify-content: center;
}
.cid-uq3RArrxme .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq3RArrxme .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq3RArrxme .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq3RArrxme .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq3RArrxme .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq3RArrxme .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uq3RArrxme .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uq3RArrxme .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uq3RArrxme .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uq3RArrxme .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq3RArrxme .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq3RArrxme .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uq3RArrxme .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq3RArrxme .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uq3RArrxme .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq3RArrxme .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uq3RArrxme .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uq3RArrxme .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uq3RArrxme .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq3RArrxme .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq3RArrxme .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uq3RArrxme .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq3RArrxme .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq3RArrxme .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq3RArrxme .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq3RArrxme .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uq3RArrxme .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq3RArrxme .dropdown-item.active,
.cid-uq3RArrxme .dropdown-item:active {
  background-color: transparent;
}
.cid-uq3RArrxme .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq3RArrxme .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq3RArrxme .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq3RArrxme .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq3RArrxme ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uq3RArrxme .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq3RArrxme button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uq3RArrxme button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq3RArrxme button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq3RArrxme button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3RArrxme button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq3RArrxme button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq3RArrxme nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3RArrxme nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq3RArrxme nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq3RArrxme nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq3RArrxme a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uq3RArrxme .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq3RArrxme .navbar {
    height: 70px;
  }
  .cid-uq3RArrxme .navbar.opened {
    height: auto;
  }
  .cid-uq3RArrxme .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq3RArrxme .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uq3RArrxme .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uq3RArrxme .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uq3RArrxme .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uq3RArrxme .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uq3RArrxme .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uq3RArrxme .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uq3RArrxme .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uq3RArrxme .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uq3RArrxme .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uq3RArrxme .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uq3RArrxme .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uq3RArrxme .mbr-section-subtitle,
.cid-uq3RArrxme .text_widget,
.cid-uq3RArrxme .mbr-section-btn {
  text-align: left;
}
.cid-uq3RArrxme a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uq42rgZLdJ {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/soff-igorevich-58942-caribbean-group-travel-adventures-2e79d64b-f85d-4c91-9d64-4edea039fceb-1344x896.png");
}
.cid-uq42rgZLdJ .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uq42rgZLdJ .card {
  background-color: white;
  padding: 2rem;
}
.cid-uq42rgZLdJ .input-group-btn {
  display: block;
}
.cid-uq42rgZLdJ .form-control {
  background: none;
  border-radius: 6px !important;
}
.cid-uq42rgZLdJ .form-control-label {
  font-weight: 700;
}
.cid-uq42rgZLdJ .mbr-section-subtitle {
  color: #656565;
}
.cid-uq42rgZLdJ .title2 {
  color: #656565;
}
.cid-uq42rgZLdJ .form-title {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uq42rgZLdJ .col-sm-12 {
    margin: 1rem;
  }
  .cid-uq42rgZLdJ .card {
    padding: 1rem;
  }
}
.cid-uq42rgZLdJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq42rgZLdJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urgVa6LhK3 {
  z-index: 1000;
  width: 100%;
}
.cid-urgVa6LhK3 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urgVa6LhK3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urgVa6LhK3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urgVa6LhK3 .menu_box .navbar.opened,
  .cid-urgVa6LhK3 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urgVa6LhK3 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urgVa6LhK3 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urgVa6LhK3 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgVa6LhK3 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urgVa6LhK3 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urgVa6LhK3 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urgVa6LhK3 .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urgVa6LhK3 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urgVa6LhK3 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urgVa6LhK3 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urgVa6LhK3 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urgVa6LhK3 .offcanvas-body .mbr-text,
  .cid-urgVa6LhK3 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urgVa6LhK3 .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urgVa6LhK3 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urgVa6LhK3 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urgVa6LhK3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urgVa6LhK3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urgVa6LhK3 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urgVa6LhK3 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urgVa6LhK3 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urgVa6LhK3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgVa6LhK3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urgVa6LhK3 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urgVa6LhK3 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urgVa6LhK3 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urgVa6LhK3 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urgVa6LhK3 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urgVa6LhK3 .nav-item {
    margin: 0 !important;
  }
}
.cid-urgVa6LhK3 .nav-item .nav-link {
  position: relative;
}
.cid-urgVa6LhK3 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urgVa6LhK3 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urgVa6LhK3 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urgVa6LhK3 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urgVa6LhK3 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urgVa6LhK3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgVa6LhK3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urgVa6LhK3 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urgVa6LhK3 .offcanvas_box {
    display: none;
  }
}
.cid-urgVa6LhK3 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urgVa6LhK3 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urgVa6LhK3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urgVa6LhK3 .container {
  display: flex;
  margin: auto;
}
.cid-urgVa6LhK3 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urgVa6LhK3 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urgVa6LhK3 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urgVa6LhK3 .navbar-caption {
  color: #000000;
}
.cid-urgVa6LhK3 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urgVa6LhK3 .navbar-nav {
    margin: 0;
  }
}
.cid-urgVa6LhK3 .dropdown-menu,
.cid-urgVa6LhK3 .navbar.opened {
  background-color: false !important;
}
.cid-urgVa6LhK3 .nav-item:focus,
.cid-urgVa6LhK3 .nav-link:focus {
  outline: none;
}
.cid-urgVa6LhK3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urgVa6LhK3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urgVa6LhK3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urgVa6LhK3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urgVa6LhK3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urgVa6LhK3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urgVa6LhK3 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urgVa6LhK3 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urgVa6LhK3 .navbar.opened {
  transition: all 0.3s;
}
.cid-urgVa6LhK3 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urgVa6LhK3 .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urgVa6LhK3 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urgVa6LhK3 .navbar.collapsed {
  justify-content: center;
}
.cid-urgVa6LhK3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urgVa6LhK3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urgVa6LhK3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urgVa6LhK3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urgVa6LhK3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urgVa6LhK3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urgVa6LhK3 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urgVa6LhK3 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urgVa6LhK3 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urgVa6LhK3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urgVa6LhK3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urgVa6LhK3 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urgVa6LhK3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urgVa6LhK3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urgVa6LhK3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urgVa6LhK3 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urgVa6LhK3 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urgVa6LhK3 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urgVa6LhK3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urgVa6LhK3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urgVa6LhK3 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urgVa6LhK3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-urgVa6LhK3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urgVa6LhK3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urgVa6LhK3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urgVa6LhK3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urgVa6LhK3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urgVa6LhK3 .dropdown-item.active,
.cid-urgVa6LhK3 .dropdown-item:active {
  background-color: transparent;
}
.cid-urgVa6LhK3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urgVa6LhK3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urgVa6LhK3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urgVa6LhK3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urgVa6LhK3 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urgVa6LhK3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urgVa6LhK3 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urgVa6LhK3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urgVa6LhK3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urgVa6LhK3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgVa6LhK3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgVa6LhK3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urgVa6LhK3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgVa6LhK3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urgVa6LhK3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urgVa6LhK3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgVa6LhK3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urgVa6LhK3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urgVa6LhK3 .navbar {
    height: 70px;
  }
  .cid-urgVa6LhK3 .navbar.opened {
    height: auto;
  }
  .cid-urgVa6LhK3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urgVa6LhK3 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urgVa6LhK3 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urgVa6LhK3 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urgVa6LhK3 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urgVa6LhK3 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urgVa6LhK3 .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urgVa6LhK3 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urgVa6LhK3 .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urgVa6LhK3 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urgVa6LhK3 .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urgVa6LhK3 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urgVa6LhK3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urgVa6LhK3 .mbr-section-subtitle,
.cid-urgVa6LhK3 .text_widget,
.cid-urgVa6LhK3 .mbr-section-btn {
  text-align: left;
}
.cid-urgVa6LhK3 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgVa7vl8I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-urgVa7vl8I .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgVa7vl8I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgVa7vl8I .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urgVa7vl8I .container-fluid {
    padding: 0 30px;
  }
}
.cid-urgVa7vl8I .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urgVa7vl8I .container {
    padding: 0 30px;
  }
}
.cid-urgVa7vl8I .text-wrap {
  display: flex;
  align-items: center;
}
.cid-urgVa7vl8I .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-urgVa7vl8I .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-urgVa7vl8I .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-urgVa7vl8I .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-urgVa7vl8I .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-urgVa7vl8I .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-urgVa7vl8I .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-urgVa7vl8I .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-urgVa7vl8I .image-wrapper {
    margin-top: 60px;
  }
}
.cid-urgVa7vl8I .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-urgVa7vl8I .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-urgVa7vl8I .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-urgVa7vl8I .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-urgVa7vl8I .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-urgVa7vl8I .image-wrapper img:last-child {
    display: none;
  }
}
.cid-urgVa7vl8I .mbr-section-title {
  color: #000000;
}
.cid-urgVa7vl8I .mbr-text {
  color: #000000;
}
.cid-urgVa7vl8I .mbr-cit {
  color: #000000;
}
.cid-urgVa7vl8I .mbr-name {
  color: #a8a8a8;
}
.cid-urgVa7HTgm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-urgVa7HTgm .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgVa7HTgm .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgVa7HTgm .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgVa7HTgm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgVa7Q2X8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urgVa7Q2X8 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgVa7Q2X8 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgVa7Q2X8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgVa7Q2X8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqaSzYRbOl {
  z-index: 1000;
  width: 100%;
}
.cid-uqaSzYRbOl .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uqaSzYRbOl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uqaSzYRbOl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uqaSzYRbOl .menu_box .navbar.opened,
  .cid-uqaSzYRbOl .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uqaSzYRbOl nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uqaSzYRbOl .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uqaSzYRbOl .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqaSzYRbOl .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uqaSzYRbOl .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uqaSzYRbOl .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uqaSzYRbOl .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uqaSzYRbOl .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uqaSzYRbOl .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uqaSzYRbOl .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uqaSzYRbOl .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uqaSzYRbOl .offcanvas-body .mbr-text,
  .cid-uqaSzYRbOl .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uqaSzYRbOl .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uqaSzYRbOl .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uqaSzYRbOl .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uqaSzYRbOl .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uqaSzYRbOl .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uqaSzYRbOl .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uqaSzYRbOl .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uqaSzYRbOl ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uqaSzYRbOl .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uqaSzYRbOl .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uqaSzYRbOl .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uqaSzYRbOl li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uqaSzYRbOl .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uqaSzYRbOl .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uqaSzYRbOl .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uqaSzYRbOl .nav-item {
    margin: 0 !important;
  }
}
.cid-uqaSzYRbOl .nav-item .nav-link {
  position: relative;
}
.cid-uqaSzYRbOl .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uqaSzYRbOl .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uqaSzYRbOl .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uqaSzYRbOl .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uqaSzYRbOl .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uqaSzYRbOl .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uqaSzYRbOl .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uqaSzYRbOl .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uqaSzYRbOl .offcanvas_box {
    display: none;
  }
}
.cid-uqaSzYRbOl .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uqaSzYRbOl .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uqaSzYRbOl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uqaSzYRbOl .container {
  display: flex;
  margin: auto;
}
.cid-uqaSzYRbOl .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uqaSzYRbOl .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uqaSzYRbOl .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uqaSzYRbOl .navbar-caption {
  color: #000000;
}
.cid-uqaSzYRbOl .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uqaSzYRbOl .navbar-nav {
    margin: 0;
  }
}
.cid-uqaSzYRbOl .dropdown-menu,
.cid-uqaSzYRbOl .navbar.opened {
  background-color: false !important;
}
.cid-uqaSzYRbOl .nav-item:focus,
.cid-uqaSzYRbOl .nav-link:focus {
  outline: none;
}
.cid-uqaSzYRbOl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqaSzYRbOl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqaSzYRbOl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqaSzYRbOl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqaSzYRbOl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqaSzYRbOl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqaSzYRbOl .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uqaSzYRbOl .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uqaSzYRbOl .navbar.opened {
  transition: all 0.3s;
}
.cid-uqaSzYRbOl .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uqaSzYRbOl .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uqaSzYRbOl .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uqaSzYRbOl .navbar.collapsed {
  justify-content: center;
}
.cid-uqaSzYRbOl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqaSzYRbOl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqaSzYRbOl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqaSzYRbOl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqaSzYRbOl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqaSzYRbOl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uqaSzYRbOl .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqaSzYRbOl .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uqaSzYRbOl .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uqaSzYRbOl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqaSzYRbOl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqaSzYRbOl .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uqaSzYRbOl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqaSzYRbOl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uqaSzYRbOl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqaSzYRbOl .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uqaSzYRbOl .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uqaSzYRbOl .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uqaSzYRbOl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqaSzYRbOl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqaSzYRbOl .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uqaSzYRbOl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqaSzYRbOl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqaSzYRbOl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqaSzYRbOl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uqaSzYRbOl .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uqaSzYRbOl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqaSzYRbOl .dropdown-item.active,
.cid-uqaSzYRbOl .dropdown-item:active {
  background-color: transparent;
}
.cid-uqaSzYRbOl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqaSzYRbOl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqaSzYRbOl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqaSzYRbOl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqaSzYRbOl ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uqaSzYRbOl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqaSzYRbOl button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uqaSzYRbOl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqaSzYRbOl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqaSzYRbOl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqaSzYRbOl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqaSzYRbOl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqaSzYRbOl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqaSzYRbOl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqaSzYRbOl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqaSzYRbOl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqaSzYRbOl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uqaSzYRbOl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqaSzYRbOl .navbar {
    height: 70px;
  }
  .cid-uqaSzYRbOl .navbar.opened {
    height: auto;
  }
  .cid-uqaSzYRbOl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqaSzYRbOl .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uqaSzYRbOl .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uqaSzYRbOl .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uqaSzYRbOl .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uqaSzYRbOl .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uqaSzYRbOl .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uqaSzYRbOl .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uqaSzYRbOl .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uqaSzYRbOl .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uqaSzYRbOl .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uqaSzYRbOl .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqaSzYRbOl .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uqaSzYRbOl .mbr-section-subtitle,
.cid-uqaSzYRbOl .text_widget,
.cid-uqaSzYRbOl .mbr-section-btn {
  text-align: left;
}
.cid-uqaSzYRbOl a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uqaTwm8Lfk {
  padding-top: 615px;
  background-image: url("../../../assets/images/soff-igorevich-58942-caribbean-group-travel-adventures-2e79d64b-f85d-4c91-9d64-4edea039fceb-1344x896.png");
}
.cid-uqaTwm8Lfk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqaTwm8Lfk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqaTxNkFn2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uqaTxNkFn2 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uqaTxNkFn2 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uqaTxNkFn2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqaTxNkFn2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqaUkpauo1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uqaUkpauo1 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uqaUkpauo1 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uqaUkpauo1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqaUkpauo1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh1omVJb6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urh1omVJb6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh1omVJb6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh1omVJb6 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urh1omVJb6 .container-fluid {
    padding: 0 30px;
  }
}
.cid-urh1omVJb6 .container-fluid .row {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urh1omVJb6 .container-fluid .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-urh1omVJb6 .container {
    padding: 0 30px;
  }
}
.cid-urh1omVJb6 .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-urh1omVJb6 .row {
    border-radius: 0;
  }
}
.cid-urh1omVJb6 .card {
  padding: 0;
}
.cid-urh1omVJb6 .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-urh1omVJb6 .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-urh1omVJb6 .mbr-date {
  color: #ffffff;
}
.cid-urh1omVJb6 .mbr-link {
  color: #ffffff;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urh1Jf1CGV {
  z-index: 1000;
  width: 100%;
}
.cid-urh1Jf1CGV .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urh1Jf1CGV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urh1Jf1CGV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urh1Jf1CGV .menu_box .navbar.opened,
  .cid-urh1Jf1CGV .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urh1Jf1CGV nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urh1Jf1CGV .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urh1Jf1CGV .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urh1Jf1CGV .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urh1Jf1CGV .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urh1Jf1CGV .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urh1Jf1CGV .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urh1Jf1CGV .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urh1Jf1CGV .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urh1Jf1CGV .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urh1Jf1CGV .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urh1Jf1CGV .offcanvas-body .mbr-text,
  .cid-urh1Jf1CGV .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urh1Jf1CGV .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urh1Jf1CGV .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urh1Jf1CGV .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urh1Jf1CGV .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urh1Jf1CGV .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urh1Jf1CGV .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urh1Jf1CGV .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urh1Jf1CGV ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urh1Jf1CGV .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urh1Jf1CGV .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urh1Jf1CGV .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urh1Jf1CGV li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urh1Jf1CGV .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urh1Jf1CGV .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urh1Jf1CGV .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urh1Jf1CGV .nav-item {
    margin: 0 !important;
  }
}
.cid-urh1Jf1CGV .nav-item .nav-link {
  position: relative;
}
.cid-urh1Jf1CGV .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urh1Jf1CGV .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urh1Jf1CGV .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urh1Jf1CGV .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urh1Jf1CGV .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urh1Jf1CGV .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urh1Jf1CGV .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urh1Jf1CGV .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urh1Jf1CGV .offcanvas_box {
    display: none;
  }
}
.cid-urh1Jf1CGV .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urh1Jf1CGV .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urh1Jf1CGV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urh1Jf1CGV .container {
  display: flex;
  margin: auto;
}
.cid-urh1Jf1CGV .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urh1Jf1CGV .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urh1Jf1CGV .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urh1Jf1CGV .navbar-caption {
  color: #000000;
}
.cid-urh1Jf1CGV .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urh1Jf1CGV .navbar-nav {
    margin: 0;
  }
}
.cid-urh1Jf1CGV .dropdown-menu,
.cid-urh1Jf1CGV .navbar.opened {
  background-color: false !important;
}
.cid-urh1Jf1CGV .nav-item:focus,
.cid-urh1Jf1CGV .nav-link:focus {
  outline: none;
}
.cid-urh1Jf1CGV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urh1Jf1CGV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urh1Jf1CGV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urh1Jf1CGV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urh1Jf1CGV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urh1Jf1CGV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urh1Jf1CGV .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urh1Jf1CGV .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urh1Jf1CGV .navbar.opened {
  transition: all 0.3s;
}
.cid-urh1Jf1CGV .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urh1Jf1CGV .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urh1Jf1CGV .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urh1Jf1CGV .navbar.collapsed {
  justify-content: center;
}
.cid-urh1Jf1CGV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urh1Jf1CGV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urh1Jf1CGV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urh1Jf1CGV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urh1Jf1CGV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urh1Jf1CGV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urh1Jf1CGV .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urh1Jf1CGV .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urh1Jf1CGV .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urh1Jf1CGV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urh1Jf1CGV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urh1Jf1CGV .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urh1Jf1CGV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urh1Jf1CGV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urh1Jf1CGV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urh1Jf1CGV .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urh1Jf1CGV .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urh1Jf1CGV .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urh1Jf1CGV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urh1Jf1CGV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urh1Jf1CGV .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urh1Jf1CGV .navbar.navbar-short {
  min-height: 60px;
}
.cid-urh1Jf1CGV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urh1Jf1CGV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urh1Jf1CGV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urh1Jf1CGV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urh1Jf1CGV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urh1Jf1CGV .dropdown-item.active,
.cid-urh1Jf1CGV .dropdown-item:active {
  background-color: transparent;
}
.cid-urh1Jf1CGV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urh1Jf1CGV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urh1Jf1CGV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urh1Jf1CGV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urh1Jf1CGV ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urh1Jf1CGV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urh1Jf1CGV button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urh1Jf1CGV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urh1Jf1CGV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urh1Jf1CGV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urh1Jf1CGV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urh1Jf1CGV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urh1Jf1CGV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urh1Jf1CGV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urh1Jf1CGV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urh1Jf1CGV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urh1Jf1CGV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urh1Jf1CGV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urh1Jf1CGV .navbar {
    height: 70px;
  }
  .cid-urh1Jf1CGV .navbar.opened {
    height: auto;
  }
  .cid-urh1Jf1CGV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urh1Jf1CGV .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urh1Jf1CGV .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urh1Jf1CGV .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urh1Jf1CGV .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urh1Jf1CGV .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urh1Jf1CGV .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urh1Jf1CGV .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urh1Jf1CGV .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urh1Jf1CGV .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urh1Jf1CGV .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urh1Jf1CGV .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urh1Jf1CGV .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urh1Jf1CGV .mbr-section-subtitle,
.cid-urh1Jf1CGV .text_widget,
.cid-urh1Jf1CGV .mbr-section-btn {
  text-align: left;
}
.cid-urh1Jf1CGV a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urh1JgUPpy {
  padding-top: 615px;
  background-image: url("../../../assets/images/soff-igorevich-58942-caribbean-group-travel-adventures-144ede4f-8483-421c-8f76-402c4f4ddde7-1344x896.png");
}
.cid-urh1JgUPpy .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh1JgUPpy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh1JhcOCX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urh1JhcOCX .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urh1JhcOCX .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urh1JhcOCX .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh1JhcOCX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh1JhqEpm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urh1JhqEpm .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urh1JhqEpm .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urh1JhqEpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh1JhqEpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh1JhDQzH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urh1JhDQzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh1JhDQzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh1JhDQzH .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urh1JhDQzH .container-fluid {
    padding: 0 30px;
  }
}
.cid-urh1JhDQzH .container-fluid .row {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urh1JhDQzH .container-fluid .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-urh1JhDQzH .container {
    padding: 0 30px;
  }
}
.cid-urh1JhDQzH .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-urh1JhDQzH .row {
    border-radius: 0;
  }
}
.cid-urh1JhDQzH .card {
  padding: 0;
}
.cid-urh1JhDQzH .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-urh1JhDQzH .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-urh1JhDQzH .mbr-date {
  color: #ffffff;
}
.cid-urh1JhDQzH .mbr-link {
  color: #ffffff;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urh2XLyoN6 {
  z-index: 1000;
  width: 100%;
}
.cid-urh2XLyoN6 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urh2XLyoN6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urh2XLyoN6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urh2XLyoN6 .menu_box .navbar.opened,
  .cid-urh2XLyoN6 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urh2XLyoN6 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urh2XLyoN6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urh2XLyoN6 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urh2XLyoN6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urh2XLyoN6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urh2XLyoN6 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urh2XLyoN6 .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urh2XLyoN6 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urh2XLyoN6 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urh2XLyoN6 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urh2XLyoN6 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urh2XLyoN6 .offcanvas-body .mbr-text,
  .cid-urh2XLyoN6 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urh2XLyoN6 .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urh2XLyoN6 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urh2XLyoN6 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urh2XLyoN6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urh2XLyoN6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urh2XLyoN6 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urh2XLyoN6 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urh2XLyoN6 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urh2XLyoN6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urh2XLyoN6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urh2XLyoN6 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urh2XLyoN6 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urh2XLyoN6 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urh2XLyoN6 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urh2XLyoN6 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urh2XLyoN6 .nav-item {
    margin: 0 !important;
  }
}
.cid-urh2XLyoN6 .nav-item .nav-link {
  position: relative;
}
.cid-urh2XLyoN6 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urh2XLyoN6 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urh2XLyoN6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urh2XLyoN6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urh2XLyoN6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urh2XLyoN6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urh2XLyoN6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urh2XLyoN6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urh2XLyoN6 .offcanvas_box {
    display: none;
  }
}
.cid-urh2XLyoN6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urh2XLyoN6 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urh2XLyoN6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urh2XLyoN6 .container {
  display: flex;
  margin: auto;
}
.cid-urh2XLyoN6 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urh2XLyoN6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urh2XLyoN6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urh2XLyoN6 .navbar-caption {
  color: #000000;
}
.cid-urh2XLyoN6 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urh2XLyoN6 .navbar-nav {
    margin: 0;
  }
}
.cid-urh2XLyoN6 .dropdown-menu,
.cid-urh2XLyoN6 .navbar.opened {
  background-color: false !important;
}
.cid-urh2XLyoN6 .nav-item:focus,
.cid-urh2XLyoN6 .nav-link:focus {
  outline: none;
}
.cid-urh2XLyoN6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urh2XLyoN6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urh2XLyoN6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urh2XLyoN6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urh2XLyoN6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urh2XLyoN6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urh2XLyoN6 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urh2XLyoN6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urh2XLyoN6 .navbar.opened {
  transition: all 0.3s;
}
.cid-urh2XLyoN6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urh2XLyoN6 .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urh2XLyoN6 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urh2XLyoN6 .navbar.collapsed {
  justify-content: center;
}
.cid-urh2XLyoN6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urh2XLyoN6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urh2XLyoN6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urh2XLyoN6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urh2XLyoN6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urh2XLyoN6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urh2XLyoN6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urh2XLyoN6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urh2XLyoN6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urh2XLyoN6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urh2XLyoN6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urh2XLyoN6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urh2XLyoN6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urh2XLyoN6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urh2XLyoN6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urh2XLyoN6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urh2XLyoN6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urh2XLyoN6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urh2XLyoN6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urh2XLyoN6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urh2XLyoN6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urh2XLyoN6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-urh2XLyoN6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urh2XLyoN6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urh2XLyoN6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urh2XLyoN6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urh2XLyoN6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urh2XLyoN6 .dropdown-item.active,
.cid-urh2XLyoN6 .dropdown-item:active {
  background-color: transparent;
}
.cid-urh2XLyoN6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urh2XLyoN6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urh2XLyoN6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urh2XLyoN6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urh2XLyoN6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urh2XLyoN6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urh2XLyoN6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urh2XLyoN6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urh2XLyoN6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urh2XLyoN6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urh2XLyoN6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urh2XLyoN6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urh2XLyoN6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urh2XLyoN6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urh2XLyoN6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urh2XLyoN6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urh2XLyoN6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urh2XLyoN6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urh2XLyoN6 .navbar {
    height: 70px;
  }
  .cid-urh2XLyoN6 .navbar.opened {
    height: auto;
  }
  .cid-urh2XLyoN6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urh2XLyoN6 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urh2XLyoN6 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urh2XLyoN6 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urh2XLyoN6 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urh2XLyoN6 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urh2XLyoN6 .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urh2XLyoN6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urh2XLyoN6 .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urh2XLyoN6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urh2XLyoN6 .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urh2XLyoN6 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urh2XLyoN6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urh2XLyoN6 .mbr-section-subtitle,
.cid-urh2XLyoN6 .text_widget,
.cid-urh2XLyoN6 .mbr-section-btn {
  text-align: left;
}
.cid-urh2XLyoN6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urh2XMKoWA {
  padding-top: 525px;
  background-image: url("../../../assets/images/soff-igorevich-58942-punta-cana-group-vacations-eb3a2522-c390-4269-a088-84e075c90eb9-1344x896.png");
}
.cid-urh2XMKoWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh2XMKoWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh2XMZUeq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urh2XMZUeq .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urh2XMZUeq .mbr-section-title {
  text-align: left;
  color: #ff6839;
}
.cid-urh2XMZUeq .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh2XMZUeq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh3irZkvv {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-urh3irZkvv .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh3irZkvv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh3irZkvv .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urh3irZkvv .container-fluid {
    padding: 0 30px;
  }
}
.cid-urh3irZkvv .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urh3irZkvv .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-urh3irZkvv .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-urh3irZkvv .title-wrapper .mbr-section-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-urh3irZkvv .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-urh3irZkvv .panel-group {
  padding: 60px 80px;
  border-radius: 10px;
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .cid-urh3irZkvv .panel-group {
    padding: 60px 30px;
  }
}
@media (max-width: 425px) {
  .cid-urh3irZkvv .panel-group {
    padding: 60px 16px;
  }
}
.cid-urh3irZkvv .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0;
}
.cid-urh3irZkvv .panel-group .card .card-header {
  padding: 22px 0;
  background-color: transparent;
  border: none;
}
.cid-urh3irZkvv .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background-color: transparent;
}
.cid-urh3irZkvv .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-urh3irZkvv .panel-group .card .card-header .panel-title .mbr-iconfont {
  margin-left: 10px;
  font-size: 22px;
  transition: all 0.3s ease-out;
}
.cid-urh3irZkvv .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #ff6839;
  transform: rotate(90deg);
}
.cid-urh3irZkvv .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 50px;
}
.cid-urh3irZkvv .panel-group .card .panel-collapse .panel-body .panel-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-urh3irZkvv .mbr-section-title {
  color: #000000;
}
.cid-urh3irZkvv .panel-title-edit,
.cid-urh3irZkvv .mbr-iconfont {
  color: #000000;
}
.cid-urh3irZkvv .panel-text {
  color: #000000;
}
.cid-urh2XNlgnw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urh2XNlgnw .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh2XNlgnw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh2XNlgnw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urh2XNlgnw .container-fluid {
    padding: 0 30px;
  }
}
.cid-urh2XNlgnw .container-fluid .row {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urh2XNlgnw .container-fluid .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-urh2XNlgnw .container {
    padding: 0 30px;
  }
}
.cid-urh2XNlgnw .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-urh2XNlgnw .row {
    border-radius: 0;
  }
}
.cid-urh2XNlgnw .card {
  padding: 0;
}
.cid-urh2XNlgnw .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-urh2XNlgnw .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-urh2XNlgnw .mbr-date {
  color: #ffffff;
}
.cid-urh2XNlgnw .mbr-link {
  color: #ffffff;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urh569jQRs {
  z-index: 1000;
  width: 100%;
}
.cid-urh569jQRs .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urh569jQRs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urh569jQRs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urh569jQRs .menu_box .navbar.opened,
  .cid-urh569jQRs .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urh569jQRs nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urh569jQRs .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urh569jQRs .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urh569jQRs .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urh569jQRs .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urh569jQRs .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urh569jQRs .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urh569jQRs .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urh569jQRs .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urh569jQRs .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urh569jQRs .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urh569jQRs .offcanvas-body .mbr-text,
  .cid-urh569jQRs .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urh569jQRs .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urh569jQRs .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urh569jQRs .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urh569jQRs .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urh569jQRs .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urh569jQRs .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urh569jQRs .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urh569jQRs ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urh569jQRs .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urh569jQRs .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urh569jQRs .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urh569jQRs li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urh569jQRs .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urh569jQRs .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urh569jQRs .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urh569jQRs .nav-item {
    margin: 0 !important;
  }
}
.cid-urh569jQRs .nav-item .nav-link {
  position: relative;
}
.cid-urh569jQRs .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urh569jQRs .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urh569jQRs .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urh569jQRs .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urh569jQRs .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urh569jQRs .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urh569jQRs .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urh569jQRs .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urh569jQRs .offcanvas_box {
    display: none;
  }
}
.cid-urh569jQRs .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urh569jQRs .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urh569jQRs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urh569jQRs .container {
  display: flex;
  margin: auto;
}
.cid-urh569jQRs .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urh569jQRs .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urh569jQRs .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urh569jQRs .navbar-caption {
  color: #000000;
}
.cid-urh569jQRs .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urh569jQRs .navbar-nav {
    margin: 0;
  }
}
.cid-urh569jQRs .dropdown-menu,
.cid-urh569jQRs .navbar.opened {
  background-color: false !important;
}
.cid-urh569jQRs .nav-item:focus,
.cid-urh569jQRs .nav-link:focus {
  outline: none;
}
.cid-urh569jQRs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urh569jQRs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urh569jQRs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urh569jQRs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urh569jQRs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urh569jQRs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urh569jQRs .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urh569jQRs .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urh569jQRs .navbar.opened {
  transition: all 0.3s;
}
.cid-urh569jQRs .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urh569jQRs .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urh569jQRs .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urh569jQRs .navbar.collapsed {
  justify-content: center;
}
.cid-urh569jQRs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urh569jQRs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urh569jQRs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urh569jQRs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urh569jQRs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urh569jQRs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urh569jQRs .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urh569jQRs .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urh569jQRs .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urh569jQRs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urh569jQRs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urh569jQRs .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urh569jQRs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urh569jQRs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urh569jQRs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urh569jQRs .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urh569jQRs .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urh569jQRs .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urh569jQRs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urh569jQRs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urh569jQRs .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urh569jQRs .navbar.navbar-short {
  min-height: 60px;
}
.cid-urh569jQRs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urh569jQRs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urh569jQRs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urh569jQRs .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urh569jQRs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urh569jQRs .dropdown-item.active,
.cid-urh569jQRs .dropdown-item:active {
  background-color: transparent;
}
.cid-urh569jQRs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urh569jQRs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urh569jQRs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urh569jQRs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urh569jQRs ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urh569jQRs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urh569jQRs button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urh569jQRs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urh569jQRs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urh569jQRs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urh569jQRs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urh569jQRs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urh569jQRs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urh569jQRs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urh569jQRs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urh569jQRs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urh569jQRs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urh569jQRs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urh569jQRs .navbar {
    height: 70px;
  }
  .cid-urh569jQRs .navbar.opened {
    height: auto;
  }
  .cid-urh569jQRs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urh569jQRs .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urh569jQRs .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urh569jQRs .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urh569jQRs .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urh569jQRs .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urh569jQRs .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urh569jQRs .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urh569jQRs .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urh569jQRs .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urh569jQRs .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urh569jQRs .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urh569jQRs .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urh569jQRs .mbr-section-subtitle,
.cid-urh569jQRs .text_widget,
.cid-urh569jQRs .mbr-section-btn {
  text-align: left;
}
.cid-urh569jQRs a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urh56aa34P {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urh56aa34P .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh56aa34P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urh56aa34P .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-urh56aa34P .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-urh56aa34P .mbr-text,
.cid-urh56aa34P .mbr-section-btn {
  color: #232323;
}
.cid-urh56aa34P .mbr-section-title,
.cid-urh56aa34P .line {
  color: #ff6839;
}
.cid-urh56aa34P h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-urh56aa34P h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-urh56aa34P .mbr-section-subtitle,
.cid-urh56aa34P .align {
  text-align: left;
  color: #232323;
}
.cid-urh5gqUQEB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: #ffffff;
}
.cid-urh5gqUQEB .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh5gqUQEB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urh5gqUQEB .container {
    padding: 0 30px;
  }
}
.cid-urh5gqUQEB .row {
  position: relative;
}
.cid-urh5gqUQEB .row::before {
  content: '';
  position: absolute;
  bottom: -15rem;
  left: -15rem;
  transform: rotate(-10deg);
  display: block;
  width: 500px;
  height: 250px;
  border-radius: 100%;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-urh5gqUQEB .row::before {
    display: none;
  }
}
.cid-urh5gqUQEB .title-wrapper {
  margin-bottom: 55px;
}
.cid-urh5gqUQEB .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-urh5gqUQEB .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-urh5gqUQEB .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 380px;
  max-width: 380px;
}
@media (max-width: 768px) {
  .cid-urh5gqUQEB .embla__slide {
    min-width: 100%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-urh5gqUQEB .embla__slide .card-wrap .content-wrap .rating-wrapper {
  margin-bottom: 30px;
}
.cid-urh5gqUQEB .embla__slide .card-wrap .content-wrap .rating-wrapper .rating-wrap {
  display: inline-flex;
}
.cid-urh5gqUQEB .embla__slide .card-wrap .content-wrap .rating-wrapper .rating-wrap .mbr-iconfont {
  font-size: 22px;
  color: #000000;
  margin-right: 5px;
}
.cid-urh5gqUQEB .embla__slide .card-wrap .content-wrap .mbr-text {
  margin-bottom: 38px;
}
.cid-urh5gqUQEB .embla__slide .card-wrap .content-wrap .mbr-name {
  margin-bottom: 0;
}
.cid-urh5gqUQEB .embla__slide .card-wrap .content-wrap .mbr-role {
  margin-bottom: 0;
}
.cid-urh5gqUQEB .embla__button--next,
.cid-urh5gqUQEB .embla__button--prev {
  display: flex;
}
.cid-urh5gqUQEB .embla__button {
  bottom: -4rem;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #000000;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-urh5gqUQEB .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-urh5gqUQEB .embla__button:hover {
  background: transparent;
  color: #ff6839;
}
.cid-urh5gqUQEB .embla__button.embla__button--prev {
  left: 0;
}
.cid-urh5gqUQEB .embla__button.embla__button--next {
  right: auto;
  left: 2rem;
}
@media (max-width: 767px) {
  .cid-urh5gqUQEB .embla__button {
    top: auto;
  }
}
.cid-urh5gqUQEB .slider-wrap {
  display: flex;
  align-items: center;
}
.cid-urh5gqUQEB .embla {
  position: relative;
  width: 100%;
}
.cid-urh5gqUQEB .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-urh5gqUQEB .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-urh5gqUQEB .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-urh5gqUQEB .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-urh5gqUQEB .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-urh5gqUQEB .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-urh5gqUQEB .mbr-card-text {
  color: #000000;
}
.cid-urh5gqUQEB .mbr-name {
  color: #a8a8a8;
}
.cid-urh5gqUQEB .mbr-role {
  color: #000000;
}
.cid-urh6kiNcRt {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: #ffffff;
}
.cid-urh6kiNcRt .mbr-fallback-image.disabled {
  display: none;
}
.cid-urh6kiNcRt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urh6kiNcRt .container {
    padding: 0 30px;
  }
}
.cid-urh6kiNcRt .row {
  position: relative;
}
.cid-urh6kiNcRt .row::before {
  content: '';
  position: absolute;
  bottom: -15rem;
  left: -15rem;
  transform: rotate(-10deg);
  display: block;
  width: 500px;
  height: 250px;
  border-radius: 100%;
  border: 2px solid #ff6839;
}
@media (max-width: 992px) {
  .cid-urh6kiNcRt .row::before {
    display: none;
  }
}
.cid-urh6kiNcRt .title-wrapper {
  margin-bottom: 55px;
}
.cid-urh6kiNcRt .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-urh6kiNcRt .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-urh6kiNcRt .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 380px;
  max-width: 380px;
}
@media (max-width: 768px) {
  .cid-urh6kiNcRt .embla__slide {
    min-width: 100%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-urh6kiNcRt .embla__slide .card-wrap .content-wrap .rating-wrapper {
  margin-bottom: 30px;
}
.cid-urh6kiNcRt .embla__slide .card-wrap .content-wrap .rating-wrapper .rating-wrap {
  display: inline-flex;
}
.cid-urh6kiNcRt .embla__slide .card-wrap .content-wrap .rating-wrapper .rating-wrap .mbr-iconfont {
  font-size: 22px;
  color: #000000;
  margin-right: 5px;
}
.cid-urh6kiNcRt .embla__slide .card-wrap .content-wrap .mbr-text {
  margin-bottom: 38px;
}
.cid-urh6kiNcRt .embla__slide .card-wrap .content-wrap .mbr-name {
  margin-bottom: 0;
}
.cid-urh6kiNcRt .embla__slide .card-wrap .content-wrap .mbr-role {
  margin-bottom: 0;
}
.cid-urh6kiNcRt .embla__button--next,
.cid-urh6kiNcRt .embla__button--prev {
  display: flex;
}
.cid-urh6kiNcRt .embla__button {
  bottom: -4rem;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #000000;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-urh6kiNcRt .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-urh6kiNcRt .embla__button:hover {
  background: transparent;
  color: #ff6839;
}
.cid-urh6kiNcRt .embla__button.embla__button--prev {
  left: 0;
}
.cid-urh6kiNcRt .embla__button.embla__button--next {
  right: auto;
  left: 2rem;
}
@media (max-width: 767px) {
  .cid-urh6kiNcRt .embla__button {
    top: auto;
  }
}
.cid-urh6kiNcRt .slider-wrap {
  display: flex;
  align-items: center;
}
.cid-urh6kiNcRt .embla {
  position: relative;
  width: 100%;
}
.cid-urh6kiNcRt .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-urh6kiNcRt .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-urh6kiNcRt .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-urh6kiNcRt .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-urh6kiNcRt .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-urh6kiNcRt .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-urh6kiNcRt .mbr-card-text {
  color: #000000;
}
.cid-urh6kiNcRt .mbr-name {
  color: #a8a8a8;
}
.cid-urh6kiNcRt .mbr-role {
  color: #000000;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urgW45dcqC {
  z-index: 1000;
  width: 100%;
}
.cid-urgW45dcqC .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-urgW45dcqC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-urgW45dcqC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-urgW45dcqC .menu_box .navbar.opened,
  .cid-urgW45dcqC .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-urgW45dcqC nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-urgW45dcqC .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-urgW45dcqC .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgW45dcqC .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-urgW45dcqC .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-urgW45dcqC .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-urgW45dcqC .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-urgW45dcqC .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-urgW45dcqC .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-urgW45dcqC .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-urgW45dcqC .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-urgW45dcqC .offcanvas-body .mbr-text,
  .cid-urgW45dcqC .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-urgW45dcqC .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-urgW45dcqC .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-urgW45dcqC .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-urgW45dcqC .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-urgW45dcqC .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-urgW45dcqC .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-urgW45dcqC .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-urgW45dcqC ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-urgW45dcqC .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgW45dcqC .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-urgW45dcqC .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-urgW45dcqC li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-urgW45dcqC .lg_brand {
    margin: 0 1rem;
  }
}
.cid-urgW45dcqC .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-urgW45dcqC .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-urgW45dcqC .nav-item {
    margin: 0 !important;
  }
}
.cid-urgW45dcqC .nav-item .nav-link {
  position: relative;
}
.cid-urgW45dcqC .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-urgW45dcqC .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-urgW45dcqC .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urgW45dcqC .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-urgW45dcqC .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-urgW45dcqC .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-urgW45dcqC .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-urgW45dcqC .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-urgW45dcqC .offcanvas_box {
    display: none;
  }
}
.cid-urgW45dcqC .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-urgW45dcqC .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-urgW45dcqC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-urgW45dcqC .container {
  display: flex;
  margin: auto;
}
.cid-urgW45dcqC .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-urgW45dcqC .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-urgW45dcqC .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-urgW45dcqC .navbar-caption {
  color: #000000;
}
.cid-urgW45dcqC .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-urgW45dcqC .navbar-nav {
    margin: 0;
  }
}
.cid-urgW45dcqC .dropdown-menu,
.cid-urgW45dcqC .navbar.opened {
  background-color: false !important;
}
.cid-urgW45dcqC .nav-item:focus,
.cid-urgW45dcqC .nav-link:focus {
  outline: none;
}
.cid-urgW45dcqC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urgW45dcqC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urgW45dcqC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urgW45dcqC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urgW45dcqC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urgW45dcqC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urgW45dcqC .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-urgW45dcqC .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-urgW45dcqC .navbar.opened {
  transition: all 0.3s;
}
.cid-urgW45dcqC .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-urgW45dcqC .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-urgW45dcqC .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urgW45dcqC .navbar.collapsed {
  justify-content: center;
}
.cid-urgW45dcqC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urgW45dcqC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urgW45dcqC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urgW45dcqC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urgW45dcqC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urgW45dcqC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-urgW45dcqC .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urgW45dcqC .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-urgW45dcqC .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-urgW45dcqC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urgW45dcqC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urgW45dcqC .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-urgW45dcqC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urgW45dcqC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-urgW45dcqC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urgW45dcqC .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-urgW45dcqC .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-urgW45dcqC .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-urgW45dcqC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urgW45dcqC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urgW45dcqC .navbar .icons-menu {
    padding: 0;
  }
}
.cid-urgW45dcqC .navbar.navbar-short {
  min-height: 60px;
}
.cid-urgW45dcqC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urgW45dcqC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urgW45dcqC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urgW45dcqC .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-urgW45dcqC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urgW45dcqC .dropdown-item.active,
.cid-urgW45dcqC .dropdown-item:active {
  background-color: transparent;
}
.cid-urgW45dcqC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urgW45dcqC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urgW45dcqC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urgW45dcqC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urgW45dcqC ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-urgW45dcqC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urgW45dcqC button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-urgW45dcqC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urgW45dcqC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urgW45dcqC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgW45dcqC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urgW45dcqC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urgW45dcqC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgW45dcqC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urgW45dcqC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urgW45dcqC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urgW45dcqC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-urgW45dcqC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urgW45dcqC .navbar {
    height: 70px;
  }
  .cid-urgW45dcqC .navbar.opened {
    height: auto;
  }
  .cid-urgW45dcqC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urgW45dcqC .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-urgW45dcqC .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-urgW45dcqC .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-urgW45dcqC .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-urgW45dcqC .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-urgW45dcqC .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-urgW45dcqC .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-urgW45dcqC .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-urgW45dcqC .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-urgW45dcqC .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-urgW45dcqC .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-urgW45dcqC .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-urgW45dcqC .mbr-section-subtitle,
.cid-urgW45dcqC .text_widget,
.cid-urgW45dcqC .mbr-section-btn {
  text-align: left;
}
.cid-urgW45dcqC a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-urgW46lxU5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-urgW46lxU5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgW46lxU5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgW46lxU5 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urgW46lxU5 .container-fluid {
    padding: 0 30px;
  }
}
.cid-urgW46lxU5 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urgW46lxU5 .container {
    padding: 0 30px;
  }
}
.cid-urgW46lxU5 .text-wrap {
  display: flex;
  align-items: center;
}
.cid-urgW46lxU5 .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-urgW46lxU5 .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-urgW46lxU5 .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-urgW46lxU5 .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-urgW46lxU5 .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-urgW46lxU5 .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-urgW46lxU5 .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-urgW46lxU5 .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-urgW46lxU5 .image-wrapper {
    margin-top: 60px;
  }
}
.cid-urgW46lxU5 .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-urgW46lxU5 .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-urgW46lxU5 .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-urgW46lxU5 .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-urgW46lxU5 .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-urgW46lxU5 .image-wrapper img:last-child {
    display: none;
  }
}
.cid-urgW46lxU5 .mbr-section-title {
  color: #000000;
}
.cid-urgW46lxU5 .mbr-text {
  color: #000000;
}
.cid-urgW46lxU5 .mbr-cit {
  color: #000000;
}
.cid-urgW46lxU5 .mbr-name {
  color: #a8a8a8;
}
.cid-urgW46XYva {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-urgW46XYva .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgW46XYva .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgW46XYva .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgW46XYva .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgW478bNm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-urgW478bNm .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-urgW478bNm .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urgW478bNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgW478bNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR93p0esRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR93p0esRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR93p0esRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container-fluid {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uR93p0esRD .container {
    padding: 0 30px;
  }
}
.cid-uR93p0esRD .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-uR93p0esRD .contacts-wrapper,
.cid-uR93p0esRD .list-wrapper,
.cid-uR93p0esRD .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-uR93p0esRD .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-uR93p0esRD .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-uR93p0esRD .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uR93p0esRD .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uR93p0esRD .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uR93p0esRD .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR93p0esRD .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-uR93p0esRD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
