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: #0ea519 !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: #0ea519 !important;
  border-color: #0ea519 !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: #07550d !important;
  border-color: #07550d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #07550d !important;
  border-color: #07550d !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: #0ea519;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #07550d !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: #0ea519 !important;
  border-color: #0ea519 !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: #0ea519 !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: #06470b !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: #0ea519;
}
.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: #43ef50;
}
.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 #0ea519 !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
  color: #0ea519 !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 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.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 .navbar-dropdown {
  position: relative !important;
}
.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-tvKZDB8m2u {
  background-image: url("../../../assets/images/sakurapinkwhiteunreal-engine-6e9f0612-7956-455c-8d6e-d8419a938452-1568x896.png");
}
.cid-tvKZDB8m2u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKZDB8m2u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvKZDB8m2u .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tvKZDB8m2u .container-fluid {
    padding: 0 30px;
  }
}
.cid-tvKZDB8m2u .container-fluid .row {
  padding: 0;
}
.cid-tvKZDB8m2u .title-wrapper {
  padding: 180px 120px;
}
@media (max-width: 1200px) {
  .cid-tvKZDB8m2u .title-wrapper {
    padding: 120px 60px;
  }
}
@media (max-width: 992px) {
  .cid-tvKZDB8m2u .title-wrapper {
    padding: 80px 0;
  }
}
.cid-tvKZDB8m2u .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tvKZDB8m2u .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tvKZDB8m2u .image-wrapper {
  position: relative;
}
.cid-tvKZDB8m2u .image-wrapper img {
  object-fit: cover;
}
.cid-tvKZDB8m2u .image-wrapper img:first-child {
  height: 900px;
}
@media (max-width: 992px) {
  .cid-tvKZDB8m2u .image-wrapper img:first-child {
    height: 350px;
  }
}
.cid-tvKZDB8m2u .image-wrapper img:last-child {
  position: absolute;
  bottom: 5rem;
  left: -7rem;
  width: 315px;
  height: 425px;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .cid-tvKZDB8m2u .image-wrapper img:last-child {
    left: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-tvKZDB8m2u .image-wrapper img:last-child {
    display: none;
  }
}
.cid-tvKZDB8m2u .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tvKZDB8m2u .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tvKZDB8m2u .mbr-section-title,
.cid-tvKZDB8m2u .mbr-section-btn {
  text-align: center;
}
.cid-tvKZHQgHiG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ff3979;
}
.cid-tvKZHQgHiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKZHQgHiG .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-tvKZHQgHiG .container {
    padding: 0 30px;
  }
}
.cid-tvKZHQgHiG .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tvKZHQgHiG .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tvKZHQgHiG .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tvKZHQgHiG .mbr-section-btn {
    display: block;
  }
}
.cid-tvKZHQgHiG .mbr-section-title {
  color: #ffffff;
}
.cid-tvKZHQgHiG .mbr-section-title,
.cid-tvKZHQgHiG .mbr-section-btn {
  text-align: center;
}
.cid-tvL1Lf2EIE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-tvL1Lf2EIE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvL1Lf2EIE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvL1Lf2EIE .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tvL1Lf2EIE .container-fluid {
    padding: 0 30px;
  }
}
.cid-tvL1Lf2EIE .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tvL1Lf2EIE .container {
    padding: 0 30px;
  }
}
.cid-tvL1Lf2EIE .text-wrap {
  display: flex;
  align-items: center;
}
.cid-tvL1Lf2EIE .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-tvL1Lf2EIE .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-tvL1Lf2EIE .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-tvL1Lf2EIE .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tvL1Lf2EIE .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-tvL1Lf2EIE .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tvL1Lf2EIE .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tvL1Lf2EIE .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tvL1Lf2EIE .image-wrapper {
    margin-top: 60px;
  }
}
.cid-tvL1Lf2EIE .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-tvL1Lf2EIE .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-tvL1Lf2EIE .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-tvL1Lf2EIE .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-tvL1Lf2EIE .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-tvL1Lf2EIE .image-wrapper img:last-child {
    display: none;
  }
}
.cid-tvL1Lf2EIE .mbr-section-title {
  color: #000000;
}
.cid-tvL1Lf2EIE .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tvL1Lf2EIE .mbr-cit {
  color: #000000;
  text-align: center;
}
.cid-tvL1Lf2EIE .mbr-name {
  color: #a8a8a8;
  text-align: center;
}
.cid-tvL1Lf2EIE .mbr-section-title,
.cid-tvL1Lf2EIE .mbr-section-btn {
  text-align: center;
}
.cid-tyoE9FEnmX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyoE9FEnmX {
    padding-top: 10px;
    padding-bottom: 0px;
  }
}
.cid-tyoE9FEnmX .mbr-text {
  margin-top: 2rem;
  color: #70747f;
  text-align: center;
}
.cid-tyoE9FEnmX .container-fluid {
  max-width: 1200px;
}
.cid-tyoE9FEnmX .row > div,
.cid-tyoE9FEnmX .mbr-section-subtitle {
  text-align: center;
  color: #0ea519;
}
.cid-tysczG8rKk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0ea519;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tysczG8rKk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tysczG8rKk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tysczG8rKk .section-border-item {
  background-color: #fcdb42;
}
.cid-tysczG8rKk .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-tysczG8rKk .card-wrap {
  width: 100%;
}
.cid-tysczG8rKk .card-box {
  width: 100%;
}
.cid-tysczG8rKk .card-title {
  color: #FFF;
  text-align: center;
}
.cid-tysczG8rKk .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-tysczG8rKk .mbr-text {
    margin-top: 1rem;
  }
}
.cid-tvKZGuz1CB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tvKZGuz1CB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKZGuz1CB .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-tvKZGuz1CB .container {
    padding: 0 30px;
  }
}
.cid-tvKZGuz1CB .row {
  justify-content: center;
}
.cid-tvKZGuz1CB .item {
  margin-bottom: 70px;
}
.cid-tvKZGuz1CB .item .item-wrapper {
  margin: 0 6px;
}
@media (max-width: 992px) {
  .cid-tvKZGuz1CB .item .item-wrapper {
    margin: 0;
  }
}
.cid-tvKZGuz1CB .item .item-wrapper .item-img {
  padding: 60px 80px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff3979;
  border-radius: 10px;
  margin-bottom: 22px;
}
@media (max-width: 1200px) {
  .cid-tvKZGuz1CB .item .item-wrapper .item-img {
    padding: 60px 40px;
  }
}
.cid-tvKZGuz1CB .item .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.cid-tvKZGuz1CB .item:nth-child(2) .item-wrapper .item-img {
  background-color: #ebebeb;
}
.cid-tvKZGuz1CB .item .item-content {
  margin: 0 6px;
}
@media (max-width: 992px) {
  .cid-tvKZGuz1CB .item .item-content {
    margin: 0;
  }
}
.cid-tvKZGuz1CB .item .item-content .mbr-card-title {
  margin-bottom: 22px;
}
.cid-tvKZGuz1CB .mbr-card-title {
  color: #000000;
}
.cid-tvKZGuz1CB .mbr-card-title,
.cid-tvKZGuz1CB .mbr-section-btn {
  text-align: center;
}
.cid-tyoIZoNoSa {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyoIZoNoSa {
    padding-top: 5px;
    padding-bottom: 20px;
  }
}
.cid-tyoIZoNoSa .mbr-text {
  margin-top: 2rem;
  color: #70747f;
  text-align: left;
}
.cid-tyoIZoNoSa .container-fluid {
  max-width: 1200px;
}
.cid-tyoIZoNoSa .row > div,
.cid-tyoIZoNoSa .mbr-section-subtitle {
  text-align: center;
  color: #0ea519;
}
.cid-tyoGcaJFAv {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyoGcaJFAv {
    padding-top: 0px;
    padding-bottom: 25px;
  }
}
.cid-tyoGcaJFAv .mbr-text {
  margin-top: 2rem;
  color: #70747f;
}
.cid-tyoGcaJFAv .container-fluid {
  max-width: 1200px;
}
.cid-tyoGcaJFAv .row > div,
.cid-tyoGcaJFAv .mbr-section-subtitle {
  text-align: center;
  color: #ff3979;
}
.cid-tyrDznu2Ts {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyrDznu2Ts {
    padding-top: 10px;
    padding-bottom: 0px;
  }
}
.cid-tyrDznu2Ts .mbr-text {
  margin-top: 2rem;
  color: #70747f;
  text-align: left;
}
.cid-tyrDznu2Ts .container-fluid {
  max-width: 1200px;
}
.cid-tyrDznu2Ts .row > div,
.cid-tyrDznu2Ts .mbr-section-subtitle {
  text-align: center;
  color: #0ea519;
}
.cid-tyoG8kWvQI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tyoG8kWvQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyoG8kWvQI .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-tyoG8kWvQI .container {
    padding: 0 30px;
  }
}
.cid-tyoG8kWvQI .row {
  justify-content: center;
}
.cid-tyoG8kWvQI .item {
  margin-bottom: 70px;
}
.cid-tyoG8kWvQI .item .item-wrapper {
  margin: 0 6px;
}
@media (max-width: 992px) {
  .cid-tyoG8kWvQI .item .item-wrapper {
    margin: 0;
  }
}
.cid-tyoG8kWvQI .item .item-wrapper .item-img {
  padding: 60px 80px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff3979;
  border-radius: 10px;
  margin-bottom: 22px;
}
@media (max-width: 1200px) {
  .cid-tyoG8kWvQI .item .item-wrapper .item-img {
    padding: 60px 40px;
  }
}
.cid-tyoG8kWvQI .item .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.cid-tyoG8kWvQI .item:nth-child(2) .item-wrapper .item-img {
  background-color: #ebebeb;
}
.cid-tyoG8kWvQI .item .item-content {
  margin: 0 6px;
}
@media (max-width: 992px) {
  .cid-tyoG8kWvQI .item .item-content {
    margin: 0;
  }
}
.cid-tyoG8kWvQI .item .item-content .mbr-card-title {
  margin-bottom: 22px;
}
.cid-tyoG8kWvQI .mbr-card-title {
  color: #000000;
}
.cid-tyoG8kWvQI .mbr-card-title,
.cid-tyoG8kWvQI .mbr-section-btn {
  text-align: center;
}
.cid-tyr6YXjJZ7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyr6YXjJZ7 {
    padding-top: 10px;
    padding-bottom: 0px;
  }
}
.cid-tyr6YXjJZ7 .mbr-text {
  margin-top: 2rem;
  color: #70747f;
}
.cid-tyr6YXjJZ7 .container-fluid {
  max-width: 1200px;
}
.cid-tyr6YXjJZ7 .row > div,
.cid-tyr6YXjJZ7 .mbr-section-subtitle {
  text-align: center;
  color: #ed4009;
}
.cid-tvKZJyfOwh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tvKZJyfOwh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKZJyfOwh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvKZJyfOwh .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tvKZJyfOwh .container-fluid {
    padding: 0;
  }
}
.cid-tvKZJyfOwh .container-fluid .row {
  padding: 0;
}
.cid-tvKZJyfOwh .card {
  padding: 0;
}
.cid-tvKZJyfOwh .card:first-child .image-wrapper {
  height: 100%;
}
.cid-tvKZJyfOwh .card:first-child .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tvKZJyfOwh .card:first-child .image-wrapper img {
    height: 270px;
  }
}
.cid-tvKZJyfOwh .card:last-child {
  display: grid;
  grid-template-columns: 200px 200px;
  column-gap: 64px;
  row-gap: 55px;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  padding: 130px 0;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tvKZJyfOwh .card:last-child {
    padding: 110px;
  }
}
@media (max-width: 768px) {
  .cid-tvKZJyfOwh .card:last-child {
    padding: 80px 30px;
    grid-template-columns: 1fr;
  }
}
.cid-tvKZJyfOwh .card:last-child .card-wrapper .mbr-number {
  margin-bottom: 12px;
}
.cid-tvKZJyfOwh .card:last-child .card-wrapper .mbr-section-title {
  margin-bottom: 4px;
}
.cid-tvKZJyfOwh .card:last-child .card-wrapper .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tvKZJyfOwh .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tvKZJyfOwh .mbr-number {
  color: #000000;
  text-align: center;
}
.cid-tvKZJyfOwh .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tyrbZ9yAm0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tyrbZ9yAm0 .row {
  flex-direction: row-reverse;
}
.cid-tyrbZ9yAm0 .image-wrapper {
  padding: 0 2rem;
}
.cid-tyrbZ9yAm0 .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-tyrbZ9yAm0 .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-tyrbZ9yAm0 .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
}
.cid-tyrbZ9yAm0 .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
  text-align: left;
}
.cid-tyrbZ9yAm0 .mbr-text {
  color: #1f1437;
  margin-bottom: 3rem;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tyrbZ9yAm0 .text-wrapper,
  .cid-tyrbZ9yAm0 .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tyrbZ9yAm0 .text-wrapper,
  .cid-tyrbZ9yAm0 .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-tyrbZ9yAm0 .text-wrapper,
  .cid-tyrbZ9yAm0 .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-tyrbZ9yAm0 .text-wrapper,
  .cid-tyrbZ9yAm0 .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-tyrbZ9yAm0 .text-wrapper,
  .cid-tyrbZ9yAm0 .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tyrbZ9yAm0 .content {
    text-align: center;
  }
}
.cid-tyrbZ9yAm0 .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-tyrbZ9yAm0 .mbr-card-title {
    text-align: start;
  }
}
.cid-tyrbZ9yAm0 .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-tyrbZ9yAm0 .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-tyrbZ9yAm0 .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-tyrbZ9yAm0 .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-tyrbZ9yAm0 .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-tyrbZ9yAm0 .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-tyrbZ9yAm0 .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-tyrbZ9yAm0 .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-tyrbZ9yAm0 .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-tyrbZ9yAm0 .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-tyrbZ9yAm0 .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-tyrbZ9yAm0 .nutrition-wrap {
    width: 100%;
  }
}
.cid-tyrbZ9yAm0 .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-tyrbZ9yAm0 .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-tyrbZ9yAm0 .tile-text-wrap {
  display: flex;
}
.cid-tyrbZ9yAm0 svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-tyrbZ9yAm0 svg path {
  fill: #cd8ad1;
}
.cid-tyrbZ9yAm0 .numbers {
  display: flex;
  align-self: center;
}
.cid-tyrbZ9yAm0 .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-tyrbZ9yAm0 .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-tyrbZ9yAm0 .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-tyrbZ9yAm0 .mbr-tile-text {
    text-align: start;
  }
}
.cid-tyrbZ9yAm0 .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tyrbZ9yAm0 .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-tyrbZ9yAm0 .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-tyrbZ9yAm0 .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-tyrbZ9yAm0 .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-tyrbZ9yAm0 .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tyrbZ9yAm0 .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tyrbZ9yAm0 .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tyrbZ9yAm0 .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tyrbZ9yAm0 div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-tvKZOM6hSm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvKZOM6hSm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKZOM6hSm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvKZOM6hSm .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tvKZOM6hSm .container-fluid {
    padding: 0 30px;
  }
}
.cid-tvKZOM6hSm .container-fluid .row {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-tvKZOM6hSm .container-fluid .row {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tvKZOM6hSm .container {
    padding: 0 30px;
  }
}
.cid-tvKZOM6hSm .card {
  padding: 0;
}
.cid-tvKZOM6hSm .image-wrapper img {
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tvKZOM6hSm .image-wrapper img {
    height: 280px;
  }
}
.cid-tvKZOM6hSm .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-tvKZOM6hSm .card-wrapper {
    padding: 32px 16px;
  }
}
@media (max-width: 1200px) {
  .cid-tvKZOM6hSm .card-wrapper {
    padding: 32px 10px;
  }
}
@media (max-width: 992px) {
  .cid-tvKZOM6hSm .card-wrapper {
    padding: 32px 36px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .cid-tvKZOM6hSm .card-wrapper {
    padding: 25px 30px;
  }
}
.cid-tvKZOM6hSm .card-wrapper .card-date .mbr-date {
  padding-bottom: 64px;
  position: relative;
  margin: 0;
}
.cid-tvKZOM6hSm .card-wrapper .card-date .mbr-date span {
  position: absolute;
  right: 11rem;
  bottom: 46px;
  font-size: 36%;
}
@media (max-width: 768px) {
  .cid-tvKZOM6hSm .card-wrapper .card-date .mbr-date span {
    right: 5rem;
  }
}
.cid-tvKZOM6hSm .card-wrapper .card-link {
  display: inline-flex;
  align-items: center;
}
.cid-tvKZOM6hSm .card-wrapper .card-link .mbr-link {
  margin-bottom: 0;
}
.cid-tvKZOM6hSm .card-wrapper .card-link .mbr-link:hover .mbr-iconfont {
  opacity: 1;
  transform: translate(0) rotate(-45deg);
}
.cid-tvKZOM6hSm .card-wrapper .card-link .mbr-link:hover .mbr-iconfont::after {
  opacity: 1;
}
.cid-tvKZOM6hSm .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-tvKZOM6hSm .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-tvKZOM6hSm .mbr-date {
  color: #ffffff;
  text-align: center;
}
.cid-tvKZOM6hSm .mbr-link {
  color: #ffffff;
}
.cid-tvKZOM6hSm .mbr-link,
.cid-tvKZOM6hSm .card-link-wrapper {
  text-align: center;
}
.cid-tvKZLU2Jrp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1c1c1c;
}
.cid-tvKZLU2Jrp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKZLU2Jrp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvKZLU2Jrp .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tvKZLU2Jrp .container-fluid {
    padding: 0 30px;
  }
}
.cid-tvKZLU2Jrp .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tvKZLU2Jrp .container {
    padding: 0 30px;
  }
}
.cid-tvKZLU2Jrp .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
.cid-tvKZLU2Jrp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 310px;
  max-width: 310px;
}
@media (max-width: 768px) {
  .cid-tvKZLU2Jrp .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap {
  width: 100%;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a {
  display: block;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a:hover .item-wrapper .image-wrap img {
  transform: scale(1.06);
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont {
  opacity: 1;
  transform: translate(0) rotate(-45deg);
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont::after {
  opacity: 1;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a .item-wrapper {
  margin-bottom: 32px;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a .item-wrapper .image-wrap {
  position: relative;
  height: 195px;
  border-radius: 10px;
  overflow: hidden;
  padding: 14px 20px;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date {
  position: relative;
  z-index: 1;
  pointer-events: visible;
  margin-bottom: 0;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date span {
  display: block;
  font-size: 32%;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a .content-wrap .mbr-desc {
  margin-bottom: 4px;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a .content-wrap .mbr-text {
  margin-bottom: 28px;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a .content-wrap .mbr-iconfont {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transform: translate(-2px, 2px) rotate(-45deg);
  transition: all 0.3s ease-out;
}
.cid-tvKZLU2Jrp .embla__slide .card-wrap a .content-wrap .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-tvKZLU2Jrp .embla__button--next,
.cid-tvKZLU2Jrp .embla__button--prev {
  display: flex;
}
.cid-tvKZLU2Jrp .embla__button {
  bottom: -2rem;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tvKZLU2Jrp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tvKZLU2Jrp .embla__button:hover {
  background: transparent;
  color: #ff6839;
}
.cid-tvKZLU2Jrp .embla__button.embla__button--prev {
  left: 0;
}
.cid-tvKZLU2Jrp .embla__button.embla__button--next {
  right: auto;
  left: 2rem;
}
@media (max-width: 767px) {
  .cid-tvKZLU2Jrp .embla__button {
    top: auto;
  }
}
.cid-tvKZLU2Jrp .embla {
  position: relative;
  width: 100%;
}
.cid-tvKZLU2Jrp .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tvKZLU2Jrp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tvKZLU2Jrp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tvKZLU2Jrp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tvKZLU2Jrp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tvKZLU2Jrp .mbr-date {
  color: #ffffff;
  text-align: center;
}
.cid-tvKZLU2Jrp .mbr-desc {
  color: #ffffff;
  text-align: left;
}
.cid-tvKZLU2Jrp .mbr-text {
  color: #ffffff;
}
.cid-tvKZLU2Jrp .mbr-text,
.cid-tvKZLU2Jrp .mbr-iconfont {
  text-align: left;
}
.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-tvL1iXbRI3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-tvL1iXbRI3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvL1iXbRI3 .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-tvL1iXbRI3 .container {
    padding: 0 30px;
  }
}
.cid-tvL1iXbRI3 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tvL1iXbRI3 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tyriSvdHyd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tyriSvdHyd .image-wrapper {
  padding: 0 2rem;
}
.cid-tyriSvdHyd .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-tyriSvdHyd .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-tyriSvdHyd .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
}
.cid-tyriSvdHyd .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
  text-align: left;
}
.cid-tyriSvdHyd .mbr-text {
  color: #1f1437;
  margin-bottom: 3rem;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tyriSvdHyd .text-wrapper,
  .cid-tyriSvdHyd .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tyriSvdHyd .text-wrapper,
  .cid-tyriSvdHyd .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-tyriSvdHyd .text-wrapper,
  .cid-tyriSvdHyd .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-tyriSvdHyd .text-wrapper,
  .cid-tyriSvdHyd .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-tyriSvdHyd .text-wrapper,
  .cid-tyriSvdHyd .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tyriSvdHyd .content {
    text-align: center;
  }
}
.cid-tyriSvdHyd .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-tyriSvdHyd .mbr-card-title {
    text-align: start;
  }
}
.cid-tyriSvdHyd .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-tyriSvdHyd .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-tyriSvdHyd .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-tyriSvdHyd .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-tyriSvdHyd .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-tyriSvdHyd .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-tyriSvdHyd .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-tyriSvdHyd .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-tyriSvdHyd .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-tyriSvdHyd .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-tyriSvdHyd .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-tyriSvdHyd .nutrition-wrap {
    width: 100%;
  }
}
.cid-tyriSvdHyd .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-tyriSvdHyd .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-tyriSvdHyd .tile-text-wrap {
  display: flex;
}
.cid-tyriSvdHyd svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-tyriSvdHyd svg path {
  fill: #cd8ad1;
}
.cid-tyriSvdHyd .numbers {
  display: flex;
  align-self: center;
}
.cid-tyriSvdHyd .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-tyriSvdHyd .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-tyriSvdHyd .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-tyriSvdHyd .mbr-tile-text {
    text-align: start;
  }
}
.cid-tyriSvdHyd .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tyriSvdHyd .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-tyriSvdHyd .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-tyriSvdHyd .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-tyriSvdHyd .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-tyriSvdHyd .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tyriSvdHyd .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tyriSvdHyd .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tyriSvdHyd .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tyriSvdHyd div[class*="col-lg"] {
    width: 100%;
  }
}
.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-tyre56VRKQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tyre56VRKQ .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tyre56VRKQ .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tyre56VRKQ .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tyre56VRKQ .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-tyre56VRKQ .mbr-text,
.cid-tyre56VRKQ .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tyre56VRKQ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tvL1DeHe6M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-tvL1DeHe6M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvL1DeHe6M .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-tvL1DeHe6M .container {
    padding: 0 30px;
  }
}
.cid-tvL1DeHe6M .row {
  justify-content: center;
}
.cid-tvL1DeHe6M .title-wrapper {
  margin-bottom: 55px;
}
.cid-tvL1DeHe6M .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tvL1DeHe6M .title-wrapper .link-wrapper:hover .mbr-link {
  color: #ff6839;
}
.cid-tvL1DeHe6M .title-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.cid-tvL1DeHe6M .card {
  padding: 0 8px;
}
.cid-tvL1DeHe6M .card:nth-child(2n) {
  padding: 80px 8px 0;
}
@media (max-width: 992px) {
  .cid-tvL1DeHe6M .card:nth-child(2n) {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tvL1DeHe6M .card {
    padding: 0 12px;
  }
}
.cid-tvL1DeHe6M .card a {
  display: block;
}
.cid-tvL1DeHe6M .card a:hover .image-wrapper .mbr-iconfont {
  opacity: 1;
}
.cid-tvL1DeHe6M .card a:hover .image-wrapper::before {
  opacity: .5;
}
.cid-tvL1DeHe6M .card a .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cid-tvL1DeHe6M .card a .image-wrapper img {
  height: 215px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tvL1DeHe6M .card a .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
  }
}
.cid-tvL1DeHe6M .card a .image-wrapper .mbr-iconfont {
  position: absolute;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-tvL1DeHe6M .card a .image-wrapper:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  opacity: 0;
  border-radius: 10px;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-tvL1DeHe6M .text-wrapper {
  margin-top: 44px;
}
.cid-tvL1DeHe6M .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tvL1DeHe6M .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tvL1DeHe6M .mbr-link {
  color: #000000;
  text-align: center;
}
.cid-tvL1DeHe6M .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tyrHzlZKmw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tyrHzlZKmw img,
.cid-tyrHzlZKmw .item-img {
  width: 100%;
}
.cid-tyrHzlZKmw .item:focus,
.cid-tyrHzlZKmw span:focus {
  outline: none;
}
.cid-tyrHzlZKmw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tyrHzlZKmw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  outline: 1px solid #e2e2e2;
  outline-style: auto;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tyrHzlZKmw .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tyrHzlZKmw .item-wrapper .item-footer {
    padding: 0 2rem 1.2rem;
  }
}
@media (max-width: 991px) {
  .cid-tyrHzlZKmw .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tyrHzlZKmw .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tyrHzlZKmw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tyrHzlZKmw .mbr-section-title {
  color: #0ea519;
}
.cid-tyrHzlZKmw .mbr-section-subtitle {
  color: #ed4009;
}
.cid-tyrHzlZKmw .mbr-text,
.cid-tyrHzlZKmw .mbr-section-btn {
  text-align: left;
}
.cid-tyrHzlZKmw .item-title {
  color: #181818;
  text-align: left;
}
.cid-tyrHzlZKmw .mbr-text {
  color: #6c7577;
  text-align: left;
}
.cid-tyrHzlZKmw .item-subtitle {
  text-align: center;
}
.cid-tyrHzlZKmw .display-4 {
  font-weight: 500;
}
.cid-tvKZRxLLhs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-tvKZRxLLhs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKZRxLLhs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvKZRxLLhs .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tvKZRxLLhs .container-fluid {
    padding: 0 30px;
  }
}
.cid-tvKZRxLLhs .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tvKZRxLLhs .container {
    padding: 0 30px;
  }
}
.cid-tvKZRxLLhs .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-tvKZRxLLhs .contacts-wrapper,
.cid-tvKZRxLLhs .list-wrapper,
.cid-tvKZRxLLhs .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-tvKZRxLLhs .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-tvKZRxLLhs .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-tvKZRxLLhs .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-tvKZRxLLhs .list .item-wrap:hover {
  color: #ffffff;
}
.cid-tvKZRxLLhs .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tvKZRxLLhs .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-tvKZRxLLhs .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-tvKZRxLLhs .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-tvKZRxLLhs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tyrNFBdBiQ .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tyrNFBdBiQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tyrNFBdBiQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tyrNFBdBiQ .menu_box .navbar.opened,
  .cid-tyrNFBdBiQ .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tyrNFBdBiQ .navbar-dropdown {
  position: relative !important;
}
.cid-tyrNFBdBiQ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tyrNFBdBiQ .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tyrNFBdBiQ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tyrNFBdBiQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tyrNFBdBiQ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tyrNFBdBiQ .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-tyrNFBdBiQ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tyrNFBdBiQ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tyrNFBdBiQ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tyrNFBdBiQ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tyrNFBdBiQ .offcanvas-body .mbr-text,
  .cid-tyrNFBdBiQ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-tyrNFBdBiQ .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-tyrNFBdBiQ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tyrNFBdBiQ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-tyrNFBdBiQ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tyrNFBdBiQ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tyrNFBdBiQ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tyrNFBdBiQ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tyrNFBdBiQ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tyrNFBdBiQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tyrNFBdBiQ .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-tyrNFBdBiQ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tyrNFBdBiQ 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-tyrNFBdBiQ .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tyrNFBdBiQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tyrNFBdBiQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tyrNFBdBiQ .nav-item {
    margin: 0 !important;
  }
}
.cid-tyrNFBdBiQ .nav-item .nav-link {
  position: relative;
}
.cid-tyrNFBdBiQ .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-tyrNFBdBiQ .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-tyrNFBdBiQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tyrNFBdBiQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tyrNFBdBiQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tyrNFBdBiQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tyrNFBdBiQ .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-tyrNFBdBiQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tyrNFBdBiQ .offcanvas_box {
    display: none;
  }
}
.cid-tyrNFBdBiQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tyrNFBdBiQ .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tyrNFBdBiQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tyrNFBdBiQ .container {
  display: flex;
  margin: auto;
}
.cid-tyrNFBdBiQ .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-tyrNFBdBiQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tyrNFBdBiQ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tyrNFBdBiQ .navbar-caption {
  color: #000000;
}
.cid-tyrNFBdBiQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tyrNFBdBiQ .navbar-nav {
    margin: 0;
  }
}
.cid-tyrNFBdBiQ .dropdown-menu,
.cid-tyrNFBdBiQ .navbar.opened {
  background-color: false !important;
}
.cid-tyrNFBdBiQ .nav-item:focus,
.cid-tyrNFBdBiQ .nav-link:focus {
  outline: none;
}
.cid-tyrNFBdBiQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tyrNFBdBiQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyrNFBdBiQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tyrNFBdBiQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tyrNFBdBiQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyrNFBdBiQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyrNFBdBiQ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tyrNFBdBiQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tyrNFBdBiQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tyrNFBdBiQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tyrNFBdBiQ .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-tyrNFBdBiQ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tyrNFBdBiQ .navbar.collapsed {
  justify-content: center;
}
.cid-tyrNFBdBiQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyrNFBdBiQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tyrNFBdBiQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyrNFBdBiQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyrNFBdBiQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyrNFBdBiQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tyrNFBdBiQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tyrNFBdBiQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tyrNFBdBiQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tyrNFBdBiQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyrNFBdBiQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyrNFBdBiQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tyrNFBdBiQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyrNFBdBiQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tyrNFBdBiQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tyrNFBdBiQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tyrNFBdBiQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tyrNFBdBiQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tyrNFBdBiQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tyrNFBdBiQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tyrNFBdBiQ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tyrNFBdBiQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tyrNFBdBiQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tyrNFBdBiQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tyrNFBdBiQ .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-tyrNFBdBiQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-tyrNFBdBiQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyrNFBdBiQ .dropdown-item.active,
.cid-tyrNFBdBiQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tyrNFBdBiQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tyrNFBdBiQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tyrNFBdBiQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tyrNFBdBiQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyrNFBdBiQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tyrNFBdBiQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tyrNFBdBiQ 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-tyrNFBdBiQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tyrNFBdBiQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tyrNFBdBiQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyrNFBdBiQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyrNFBdBiQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tyrNFBdBiQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyrNFBdBiQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tyrNFBdBiQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tyrNFBdBiQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyrNFBdBiQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tyrNFBdBiQ .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-tyrNFBdBiQ .navbar {
    height: 70px;
  }
  .cid-tyrNFBdBiQ .navbar.opened {
    height: auto;
  }
  .cid-tyrNFBdBiQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyrNFBdBiQ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tyrNFBdBiQ .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tyrNFBdBiQ .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tyrNFBdBiQ .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tyrNFBdBiQ .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tyrNFBdBiQ .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tyrNFBdBiQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tyrNFBdBiQ .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-tyrNFBdBiQ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tyrNFBdBiQ .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-tyrNFBdBiQ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tyrNFBdBiQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tyrNFBdBiQ .mbr-section-subtitle,
.cid-tyrNFBdBiQ .text_widget,
.cid-tyrNFBdBiQ .mbr-section-btn {
  text-align: left;
}
.cid-tyrNFBdBiQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tyrOvwipxt {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tyrOvwipxt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyrOvwipxt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyrOqu0vL4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tyrOqu0vL4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyrOqu0vL4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyrOqu0vL4 .text-wrap {
  width: 100%;
}
.cid-tyrOqu0vL4 .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-tyrOqu0vL4 .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-tyrOqu0vL4 .list-wrap {
  margin-top: 52px;
}
.cid-tyrOqu0vL4 .list-title {
  margin-bottom: 10px;
  color: #000000;
}
.cid-tyrOqu0vL4 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 12px;
  width: 100%;
  list-style: none;
  padding-left: 24px;
  margin-bottom: 0;
  color: #747474;
  transition: 0.4s all;
}
.cid-tyrOqu0vL4 .list li {
  position: relative;
  width: 100%;
  margin: 0 0 8px 0;
  color: inherit !important;
}
.cid-tyrOqu0vL4 .list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 16px;
  height: 1px;
  background-color: currentColor;
}
.cid-tyrNGhn5rz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-tyrNGhn5rz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyrNGhn5rz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyrNGhn5rz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tyrNGhn5rz .container-fluid {
    padding: 0 30px;
  }
}
.cid-tyrNGhn5rz .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tyrNGhn5rz .container {
    padding: 0 30px;
  }
}
.cid-tyrNGhn5rz .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-tyrNGhn5rz .contacts-wrapper,
.cid-tyrNGhn5rz .list-wrapper,
.cid-tyrNGhn5rz .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-tyrNGhn5rz .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-tyrNGhn5rz .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-tyrNGhn5rz .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-tyrNGhn5rz .list .item-wrap:hover {
  color: #ffffff;
}
.cid-tyrNGhn5rz .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tyrNGhn5rz .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-tyrNGhn5rz .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-tyrNGhn5rz .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-tyrNGhn5rz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tAb2HdaUYL .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tAb2HdaUYL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tAb2HdaUYL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tAb2HdaUYL .menu_box .navbar.opened,
  .cid-tAb2HdaUYL .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tAb2HdaUYL .navbar-dropdown {
  position: relative !important;
}
.cid-tAb2HdaUYL .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tAb2HdaUYL .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tAb2HdaUYL .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tAb2HdaUYL .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tAb2HdaUYL .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tAb2HdaUYL .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-tAb2HdaUYL .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tAb2HdaUYL .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tAb2HdaUYL .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tAb2HdaUYL .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tAb2HdaUYL .offcanvas-body .mbr-text,
  .cid-tAb2HdaUYL .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-tAb2HdaUYL .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-tAb2HdaUYL .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tAb2HdaUYL .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-tAb2HdaUYL .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tAb2HdaUYL .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tAb2HdaUYL .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tAb2HdaUYL .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tAb2HdaUYL ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tAb2HdaUYL .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tAb2HdaUYL .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-tAb2HdaUYL .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tAb2HdaUYL 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-tAb2HdaUYL .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tAb2HdaUYL .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tAb2HdaUYL .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tAb2HdaUYL .nav-item {
    margin: 0 !important;
  }
}
.cid-tAb2HdaUYL .nav-item .nav-link {
  position: relative;
}
.cid-tAb2HdaUYL .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-tAb2HdaUYL .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-tAb2HdaUYL .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tAb2HdaUYL .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tAb2HdaUYL .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tAb2HdaUYL .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tAb2HdaUYL .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-tAb2HdaUYL .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tAb2HdaUYL .offcanvas_box {
    display: none;
  }
}
.cid-tAb2HdaUYL .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tAb2HdaUYL .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tAb2HdaUYL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tAb2HdaUYL .container {
  display: flex;
  margin: auto;
}
.cid-tAb2HdaUYL .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-tAb2HdaUYL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tAb2HdaUYL .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tAb2HdaUYL .navbar-caption {
  color: #000000;
}
.cid-tAb2HdaUYL .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tAb2HdaUYL .navbar-nav {
    margin: 0;
  }
}
.cid-tAb2HdaUYL .dropdown-menu,
.cid-tAb2HdaUYL .navbar.opened {
  background-color: false !important;
}
.cid-tAb2HdaUYL .nav-item:focus,
.cid-tAb2HdaUYL .nav-link:focus {
  outline: none;
}
.cid-tAb2HdaUYL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAb2HdaUYL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAb2HdaUYL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAb2HdaUYL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAb2HdaUYL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAb2HdaUYL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAb2HdaUYL .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tAb2HdaUYL .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tAb2HdaUYL .navbar.opened {
  transition: all 0.3s;
}
.cid-tAb2HdaUYL .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tAb2HdaUYL .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-tAb2HdaUYL .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tAb2HdaUYL .navbar.collapsed {
  justify-content: center;
}
.cid-tAb2HdaUYL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAb2HdaUYL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tAb2HdaUYL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAb2HdaUYL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAb2HdaUYL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAb2HdaUYL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tAb2HdaUYL .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tAb2HdaUYL .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tAb2HdaUYL .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tAb2HdaUYL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAb2HdaUYL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAb2HdaUYL .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tAb2HdaUYL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAb2HdaUYL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tAb2HdaUYL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAb2HdaUYL .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tAb2HdaUYL .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tAb2HdaUYL .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tAb2HdaUYL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAb2HdaUYL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAb2HdaUYL .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tAb2HdaUYL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAb2HdaUYL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAb2HdaUYL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAb2HdaUYL .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-tAb2HdaUYL .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-tAb2HdaUYL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAb2HdaUYL .dropdown-item.active,
.cid-tAb2HdaUYL .dropdown-item:active {
  background-color: transparent;
}
.cid-tAb2HdaUYL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAb2HdaUYL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAb2HdaUYL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAb2HdaUYL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAb2HdaUYL ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tAb2HdaUYL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAb2HdaUYL 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-tAb2HdaUYL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tAb2HdaUYL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAb2HdaUYL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAb2HdaUYL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAb2HdaUYL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAb2HdaUYL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAb2HdaUYL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAb2HdaUYL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAb2HdaUYL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAb2HdaUYL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tAb2HdaUYL .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-tAb2HdaUYL .navbar {
    height: 70px;
  }
  .cid-tAb2HdaUYL .navbar.opened {
    height: auto;
  }
  .cid-tAb2HdaUYL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAb2HdaUYL .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tAb2HdaUYL .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tAb2HdaUYL .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tAb2HdaUYL .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tAb2HdaUYL .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tAb2HdaUYL .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tAb2HdaUYL .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tAb2HdaUYL .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-tAb2HdaUYL .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tAb2HdaUYL .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-tAb2HdaUYL .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tAb2HdaUYL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tAb2HdaUYL .mbr-section-subtitle,
.cid-tAb2HdaUYL .text_widget,
.cid-tAb2HdaUYL .mbr-section-btn {
  text-align: left;
}
.cid-tAb2HdaUYL a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tAb2HeeAeN {
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-tAb2HeeAeN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAb2HeeAeN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAb2HeeAeN .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tAb2HeeAeN .container-fluid {
    padding: 0 30px;
  }
}
.cid-tAb2HeeAeN .container-fluid .row {
  padding: 0;
}
.cid-tAb2HeeAeN .title-wrapper {
  padding: 180px 120px;
}
@media (max-width: 1200px) {
  .cid-tAb2HeeAeN .title-wrapper {
    padding: 120px 60px;
  }
}
@media (max-width: 992px) {
  .cid-tAb2HeeAeN .title-wrapper {
    padding: 80px 0;
  }
}
.cid-tAb2HeeAeN .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tAb2HeeAeN .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tAb2HeeAeN .image-wrapper {
  position: relative;
}
.cid-tAb2HeeAeN .image-wrapper img {
  object-fit: cover;
}
.cid-tAb2HeeAeN .image-wrapper img:first-child {
  height: 900px;
}
@media (max-width: 992px) {
  .cid-tAb2HeeAeN .image-wrapper img:first-child {
    height: 350px;
  }
}
.cid-tAb2HeeAeN .image-wrapper img:last-child {
  position: absolute;
  bottom: 5rem;
  left: -7rem;
  width: 315px;
  height: 425px;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .cid-tAb2HeeAeN .image-wrapper img:last-child {
    left: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-tAb2HeeAeN .image-wrapper img:last-child {
    display: none;
  }
}
.cid-tAb2HeeAeN .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tAb2HeeAeN .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tAb2HeeAeN .mbr-section-title,
.cid-tAb2HeeAeN .mbr-section-btn {
  text-align: center;
}
#custom-html-24 {
  /* Type valid CSS here */
}
#custom-html-24 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-24 p {
  font-size: 60px;
  color: #777;
}
#custom-html-27 {
  /* Type valid CSS here */
}
#custom-html-27 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-27 p {
  font-size: 60px;
  color: #777;
}
.cid-tAb2HuHL0q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-tAb2HuHL0q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAb2HuHL0q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAb2HuHL0q .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tAb2HuHL0q .container-fluid {
    padding: 0 30px;
  }
}
.cid-tAb2HuHL0q .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tAb2HuHL0q .container {
    padding: 0 30px;
  }
}
.cid-tAb2HuHL0q .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
.cid-tAb2HuHL0q .contacts-wrapper,
.cid-tAb2HuHL0q .list-wrapper,
.cid-tAb2HuHL0q .soc-wrapper {
  width: fit-content;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
}
.cid-tAb2HuHL0q .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.cid-tAb2HuHL0q .list {
  margin: 0;
  padding: 0 0 50px 0;
  list-style-type: none;
  color: #b1b0b5;
  text-align: center;
}
.cid-tAb2HuHL0q .list .item-wrap {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.625;
}
.cid-tAb2HuHL0q .list .item-wrap:hover {
  color: #ffffff;
}
.cid-tAb2HuHL0q .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tAb2HuHL0q .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-tAb2HuHL0q .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-tAb2HuHL0q .copyright {
  padding: 10px 0;
  margin: 60px 0 0;
  color: #b1b0b5;
  text-align: center;
}
.cid-tAb2HuHL0q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
