body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #f14304 !important;
}
.bg-success {
  background-color: #232323 !important;
}
.bg-info {
  background-color: #ff9500 !important;
}
.bg-warning {
  background-color: #951d19 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f14304 !important;
  border-color: #f14304 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #f14304 !important;
  border-color: #f14304 !important;
}
.btn-primary:before {
  background-color: #a62e03 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a62e03 !important;
  border-color: #a62e03 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary:before {
  background-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff9500 !important;
  border-color: #ff9500 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #ff9500 !important;
  border-color: #ff9500 !important;
}
.btn-info:before {
  background-color: #b36800 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b36800 !important;
  border-color: #b36800 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-success:before {
  background-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #951d19 !important;
  border-color: #951d19 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #951d19 !important;
  border-color: #951d19 !important;
}
.btn-warning:before {
  background-color: #53100e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #53100e !important;
  border-color: #53100e !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger:before {
  background-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #8d2702;
  color: #8d2702;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #f14304;
}
.btn-primary-outline:before {
  background-color: #f14304;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f14304 !important;
  border-color: #f14304 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #808080;
  border-color: #ffffff;
}
.btn-secondary-outline:before {
  background-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #995900;
  color: #995900;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #ff9500;
}
.btn-info-outline:before {
  background-color: #ff9500;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9500 !important;
  border-color: #ff9500 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #232323;
}
.btn-success-outline:before {
  background-color: #232323;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #3e0c0a;
  color: #3e0c0a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #951d19;
}
.btn-warning-outline:before {
  background-color: #951d19;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #951d19 !important;
  border-color: #951d19 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  border-color: #000000;
}
.btn-danger-outline:before {
  background-color: #000000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
  border-radius: 100px;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f14304;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #f14304 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #232323 !important;
}
.text-info {
  color: #ff9500 !important;
}
.text-warning {
  color: #951d19 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #8d2702 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #995900 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #3e0c0a !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff9500;
}
.alert-warning {
  background-color: #951d19;
}
.alert-danger {
  background-color: #000000;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f14304;
  border-color: #f14304;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f14304;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fed3c3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffeacc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e1514c;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #f14304;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #f14304;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #f14304;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f14304;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f14304;
  border-bottom-color: #f14304;
}
.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: #f14304 !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: #ffffff !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%;
}
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='%23f14304' %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;
}
.cid-soCbUMbChp .navbar-dropdown {
  position: relative !important;
}
.cid-soCbUMbChp .nav-link {
  position: relative;
}
.cid-soCbUMbChp .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-soCbUMbChp .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-soCbUMbChp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-soCbUMbChp .dropdown-menu {
  padding: 0;
}
.cid-soCbUMbChp .dropdown-item:hover,
.cid-soCbUMbChp .dropdown-item:focus {
  background: #f14304 !important;
  color: white !important;
}
.cid-soCbUMbChp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-soCbUMbChp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-soCbUMbChp .container {
  display: flex;
  margin: auto;
}
.cid-soCbUMbChp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-soCbUMbChp .navbar-caption {
  padding-right: 4rem;
}
.cid-soCbUMbChp .dropdown-menu,
.cid-soCbUMbChp .navbar.opened {
  background: #ffffff !important;
}
.cid-soCbUMbChp .nav-item:focus,
.cid-soCbUMbChp .nav-link:focus {
  outline: none;
}
.cid-soCbUMbChp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-soCbUMbChp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soCbUMbChp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-soCbUMbChp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-soCbUMbChp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-soCbUMbChp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-soCbUMbChp .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-soCbUMbChp .navbar.opened {
  transition: all .3s;
}
.cid-soCbUMbChp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-soCbUMbChp .navbar .navbar-logo img {
  width: auto;
}
.cid-soCbUMbChp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soCbUMbChp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-soCbUMbChp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soCbUMbChp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-soCbUMbChp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soCbUMbChp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soCbUMbChp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soCbUMbChp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soCbUMbChp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-soCbUMbChp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-soCbUMbChp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-soCbUMbChp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soCbUMbChp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soCbUMbChp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soCbUMbChp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soCbUMbChp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-soCbUMbChp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soCbUMbChp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-soCbUMbChp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-soCbUMbChp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-soCbUMbChp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-soCbUMbChp .navbar.navbar-short {
  min-height: 60px;
}
.cid-soCbUMbChp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soCbUMbChp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-soCbUMbChp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soCbUMbChp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soCbUMbChp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soCbUMbChp .dropdown-item.active,
.cid-soCbUMbChp .dropdown-item:active {
  background-color: transparent;
}
.cid-soCbUMbChp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-soCbUMbChp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soCbUMbChp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soCbUMbChp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-soCbUMbChp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soCbUMbChp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soCbUMbChp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-soCbUMbChp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-soCbUMbChp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-soCbUMbChp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-soCbUMbChp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-soCbUMbChp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-soCbUMbChp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-soCbUMbChp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-soCbUMbChp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soCbUMbChp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-soCbUMbChp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-soCbUMbChp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soCbUMbChp .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-soCbUMbChp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soCbUMbChp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-soCbUMbChp .navbar {
    height: 77px;
  }
  .cid-soCbUMbChp .navbar.opened {
    height: auto;
  }
  .cid-soCbUMbChp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBai5SZlyY {
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-uBai5SZlyY .mbr-section-title,
.cid-uBai5SZlyY .mbr-section-subtitle {
  color: #000000;
}
.cid-uBai5SZlyY .mbr-section-text {
  color: #232323;
}
.cid-uBai5SZlyY .mbr-text,
.cid-uBai5SZlyY .typed-text,
.cid-uBai5SZlyY .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uBai5SZlyY .btn {
  margin-left: 4px !important;
}
.cid-uBai5SZlyY .animated-element {
  color: #f14304;
}
.cid-uBai5SZlyY .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #f14304;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uBai5SZlyY .mbr-section-title {
  color: #232323;
}
.cid-uBai5SZlyY .mbr-section-subtitle,
.cid-uBai5SZlyY .typed-text {
  color: #232323;
}
.cid-soCMTra7s0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-soCMTra7s0 .mbr-section-title {
  color: #233d63;
  margin-bottom: 25px;
}
.cid-soCMTra7s0 .icon__block {
  background: linear-gradient(135deg, rgba(241, 67, 4, 0.54) 0%, rgba(241, 67, 4, 0.85) 60%, #f14304 100%);
}
.cid-soCMTra7s0 .mbr-section-title,
.cid-soCMTra7s0 .icon__wrap {
  text-align: center;
  color: #f14304;
}
.cid-soCMTra7s0 .mbr-section-subtitle {
  text-align: center;
}
.cid-soCMTra7s0 .icon__wrap {
  width: 100%;
  margin-bottom: 23px;
}
.cid-soCMTra7s0 .icon__wrap .icon__block {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 10px;
}
.cid-soCMTra7s0 .icon__wrap .icon__block::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 65px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(-45deg);
}
.cid-soCMTra7s0 .icon__wrap .icon__block::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 65px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.15);
  transform: rotate(45deg);
}
.cid-soCMTra7s0 .icon__wrap .icon__block .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  position: relative;
  z-index: 10;
}
.cid-soCOk9fbwM {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-soCOk9fbwM .title_block {
  margin-bottom: 80px;
}
.cid-soCOk9fbwM .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #037131;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-soCOk9fbwM .mbr-section-title,
.cid-soCOk9fbwM .card-title {
  color: #ffffff;
}
.cid-soCOk9fbwM .card-title {
  margin-bottom: 22px;
  color: #f14304;
}
.cid-soCOk9fbwM .card-text {
  margin-bottom: 20px;
  line-height: 1.5;
}
.cid-soCOk9fbwM .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-soCOk9fbwM .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-soCOk9fbwM .btn_link:hover {
  cursor: pointer;
}
.cid-soCOk9fbwM .btn_link:hover a {
  color: #f14304 !important;
}
.cid-soCOk9fbwM .btn_link:hover span {
  transform: translatex(5px);
}
.cid-soCOk9fbwM .item-img {
  margin-bottom: 40px;
}
.cid-soCOk9fbwM img,
.cid-soCOk9fbwM .item-img {
  width: 100%;
  object-fit: contain;
  height: 180px;
  height: 230px;
  height: 280px;
}
.cid-soCOk9fbwM .item:focus,
.cid-soCOk9fbwM span:focus {
  outline: none;
}
@media (max-width: 991px) {
  .cid-soCOk9fbwM .title_block {
    margin-bottom: 40px;
  }
  .cid-soCOk9fbwM .card-title,
  .cid-soCOk9fbwM .card-text {
    margin-bottom: 16px;
  }
  .cid-soCOk9fbwM .item-wrapper {
    max-width: 290px;
    text-align: center;
    margin: 50px auto 0;
  }
}
.cid-soCOk9fbwM .mbr-section-title {
  color: #f14304;
}
.cid-snywnRdWhX {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snywnRdWhX .img-wrap {
  -webkit-animation: jump 2s ease-in-out alternate;
  animation: jump 2s ease-in-out alternate;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  position: relative;
}
.cid-snywnRdWhX .img-wrap img {
  width: 100%;
}
.cid-snywnRdWhX .mbr-section-subtitle {
  color: #232323;
}
.cid-snywnRdWhX .mbr-section-title {
  color: #ffffff;
}
.cid-snywnRdWhX .mbr-text {
  color: #b0b6d4;
  font-weight: 500;
}
.cid-snywnRdWhX .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-snywnRdWhX .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-snywnRdWhX .mbr-section-btn {
    justify-content: center !important;
  }
}
@-webkit-keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-snywnRdWhX .mbr-section-title,
.cid-snywnRdWhX .separator,
.cid-snywnRdWhX .sep-holder {
  color: #f14304;
}
.cid-snywnRdWhX .mbr-text,
.cid-snywnRdWhX .mbr-section-btn {
  color: #000000;
}
.cid-snywnRdWhX .mbr-section-subtitle,
.cid-snywnRdWhX .mbr-section-title .accent-word {
  color: #000000;
}
.cid-soCphwBfPQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-soCphwBfPQ .wrap {
  overflow: hidden;
  height: 490px;
  background-color: #f14304;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-soCphwBfPQ .wrap {
    height: auto;
  }
}
@media (min-width: 1200px) {
  .cid-soCphwBfPQ .content__block {
    padding: 80px 30px;
  }
}
@media (max-width: 1199px) {
  .cid-soCphwBfPQ .content__block {
    padding: 50px 30px;
  }
}
@media (max-width: 767px) {
  .cid-soCphwBfPQ .content__block {
    padding: 40px 15px;
  }
}
.cid-soCphwBfPQ .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: left;
}
.cid-soCphwBfPQ .mbr-text {
  opacity: 0.8;
  margin-bottom: 20px;
}
.cid-soCphwBfPQ .image {
  height: 490px;
}
@media (min-width: 1200px) {
  .cid-soCphwBfPQ .image {
    padding: 80px 15px 0;
  }
}
@media (max-width: 1199px) {
  .cid-soCphwBfPQ .image {
    padding: 50px 15px 0;
  }
}
@media (max-width: 767px) {
  .cid-soCphwBfPQ .image {
    padding: 0 0 40px;
  }
}
.cid-soCphwBfPQ .image img {
  max-width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.cid-soCphwBfPQ .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-soCphwBfPQ .mbr-section-title {
  color: #ffffff;
}
.cid-soCplYY0mF .main_wrapper {
  position: relative;
  height: 300px;
  width: 100%;
  background-color: #c0c0c0;
}
.cid-soCplYY0mF .b_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.cid-soCplYY0mF .block_wrapper {
  height: 100%;
  background-color: #ffffff;
  pointer-events: fill;
  padding: 50px 20px 50px 50px;
}
.cid-soCplYY0mF .title__address {
  margin-bottom: 20px;
}
.cid-soCplYY0mF .work__address {
  margin: 10px 0 40px;
}
.cid-soCplYY0mF .work__phone {
  margin-bottom: 20px;
}
.cid-soCplYY0mF .mbr-section-btn {
  margin-top: 40px;
}
.cid-soCplYY0mF .btn-primary:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.cid-soCplYY0mF .google-map {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.cid-soCplYY0mF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-soCplYY0mF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-soCplYY0mF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-soCplYY0mF .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-soCplYY0mF .container {
    max-width: 100%;
  }
  .cid-soCplYY0mF .container .row {
    margin: 0;
  }
  .cid-soCplYY0mF .block_wrapper {
    height: 100%;
    background-color: #ffffff;
    pointer-events: fill;
    padding: 30px 20px;
  }
}
.cid-soCfLROEcf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-soCfLROEcf .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-soCfLROEcf .first-column .mbr-text {
  margin: 0;
}
.cid-soCfLROEcf .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-soCfLROEcf .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-soCfLROEcf .icons-wrapper ul li .mbr-iconfont {
  color: #ff9a0c;
  font-size: 1.5rem;
}
.cid-soCfLROEcf .icons-wrapper ul li .mbr-iconfont:hover {
  color: #037131;
}
.cid-soCfLROEcf .form-group {
  max-width: 55%;
}
.cid-soCfLROEcf .form-group,
.cid-soCfLROEcf .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-soCfLROEcf .form-control {
  font-size: .9rem;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-soCfLROEcf .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-soCfLROEcf .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-soCfLROEcf .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-soCfLROEcf .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-soCfLROEcf .col + .mbr-section-btn .btn,
.cid-soCfLROEcf .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-soCfLROEcf .dragArea > *:nth-last-child(2).col,
.cid-soCfLROEcf .dragArea > *:nth-last-child(2).col-auto,
.cid-soCfLROEcf .col + .mbr-section-btn,
.cid-soCfLROEcf .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-soCfLROEcf .first-column,
  .cid-soCfLROEcf .second-column {
    padding-bottom: 2rem;
  }
  .cid-soCfLROEcf .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-soCfLROEcf .first-column,
  .cid-soCfLROEcf .second-column,
  .cid-soCfLROEcf .third-column {
    text-align: center;
  }
}
.cid-soCfZW2Cy5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-soCfZW2Cy5 .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-soCfZW2Cy5 section {
  position: relative;
}
.cid-soCfZW2Cy5 h4 {
  margin: 0;
}
.cid-soCfZW2Cy5 a {
  font-weight: 300;
}
.cid-soCfZW2Cy5 .row {
  align-items: center;
}
.cid-soCfZW2Cy5 .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-soCfZW2Cy5 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-soCfZW2Cy5 .img1 {
  color: #ffffff;
}
.cid-soCfZW2Cy5 .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-soCfZW2Cy5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-soCfZW2Cy5 .align-left,
  .cid-soCfZW2Cy5 .align-right {
    text-align: center;
  }
  .cid-soCfZW2Cy5 .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-soCfZW2Cy5 .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-soCfZW2Cy5 .item {
    padding-bottom: 0.5rem;
  }
}
.cid-soCfZW2Cy5 .item-title {
  color: #ffffff;
}
.cid-soCfZW2Cy5 H4 {
  color: #ffffff;
}
