body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 2;
}
.display-7 > .mbr-iconfont {
  font-size: 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: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    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.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #ff4e3c !important;
}
.bg-success {
  background-color: #fff000 !important;
}
.bg-info {
  background-color: #61728a !important;
}
.bg-warning {
  background-color: #000000 !important;
}
.bg-danger {
  background-color: #1352ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ef1600 !important;
  border-color: #ef1600 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ef1600 !important;
  border-color: #ef1600 !important;
}
.btn-primary:hover {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #282f39 !important;
  border-color: #282f39 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary:hover {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-info,
.btn-info:active {
  background-color: #61728a !important;
  border-color: #61728a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info:hover {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff000 !important;
  border-color: #fff000 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success:hover {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning:hover {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger:hover {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-white:hover {
  color: white!important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ff4e3c;
  color: #ff4e3c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff4e3c;
  border-color: #ff4e3c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #282f39;
  color: #282f39;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #282f39;
  border-color: #282f39;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #282f39 !important;
  border-color: #282f39 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #61728a;
  color: #61728a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #61728a;
  border-color: #61728a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #61728a !important;
  border-color: #61728a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #fff000;
  color: #fff000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #fff000;
  border-color: #fff000;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #fff000 !important;
  border-color: #fff000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #1352ff;
  color: #1352ff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #1352ff;
  border-color: #1352ff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.text-primary {
  color: #ff4e3c !important;
}
.text-secondary {
  color: #282f39 !important;
}
.text-success {
  color: #fff000 !important;
}
.text-info {
  color: #61728a !important;
}
.text-warning {
  color: #000000 !important;
}
.text-danger {
  color: #1352ff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ffaba2 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #526075 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fff666 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #99a6b8 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #333333 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #799dff !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #61728a;
}
.alert-warning {
  background-color: #000000;
}
.alert-danger {
  background-color: #1352ff;
}
.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;
  -webkit-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: #ff4e3c;
  border-color: #ff4e3c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff4e3c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffccc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a8b3c2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfe8ff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #ff4e3c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4e3c;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4e3c;
  border-bottom-color: #ff4e3c;
}
.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: #ff4e3c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #282f39 !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='%23ff4e3c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-t4mM1ydFGu {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4mM1ydFGu .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-t4mM1ydFGu .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-t4mM1ydFGu .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t4mM1ydFGu .navbar-caption {
  font-weight: 500;
}
.cid-t4mM1ydFGu nav.navbar {
  position: fixed;
}
.cid-t4mM1ydFGu .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-t4mM1ydFGu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4mM1ydFGu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t4mM1ydFGu .dropdown-item:hover,
.cid-t4mM1ydFGu .dropdown-item:focus {
  background: #ff4e3c !important;
  color: white !important;
}
.cid-t4mM1ydFGu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t4mM1ydFGu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t4mM1ydFGu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t4mM1ydFGu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t4mM1ydFGu .nav-link {
  position: relative;
}
.cid-t4mM1ydFGu .container {
  display: flex;
  margin: auto;
}
.cid-t4mM1ydFGu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-t4mM1ydFGu .dropdown-menu,
.cid-t4mM1ydFGu .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-t4mM1ydFGu .nav-item:focus,
.cid-t4mM1ydFGu .nav-link:focus {
  outline: none;
}
.cid-t4mM1ydFGu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t4mM1ydFGu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4mM1ydFGu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t4mM1ydFGu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4mM1ydFGu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4mM1ydFGu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4mM1ydFGu .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f9f9f9;
}
.cid-t4mM1ydFGu .navbar.opened {
  transition: all 0.3s;
}
.cid-t4mM1ydFGu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t4mM1ydFGu .navbar .navbar-logo img {
  width: auto;
}
.cid-t4mM1ydFGu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4mM1ydFGu .navbar.collapsed {
  justify-content: center;
}
.cid-t4mM1ydFGu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4mM1ydFGu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4mM1ydFGu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-t4mM1ydFGu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4mM1ydFGu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4mM1ydFGu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t4mM1ydFGu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4mM1ydFGu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t4mM1ydFGu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t4mM1ydFGu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4mM1ydFGu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4mM1ydFGu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4mM1ydFGu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4mM1ydFGu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t4mM1ydFGu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4mM1ydFGu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4mM1ydFGu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4mM1ydFGu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4mM1ydFGu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4mM1ydFGu .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t4mM1ydFGu .navbar.navbar-short {
  min-height: 80px;
}
.cid-t4mM1ydFGu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4mM1ydFGu .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-t4mM1ydFGu .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-t4mM1ydFGu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4mM1ydFGu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4mM1ydFGu .dropdown-item.active,
.cid-t4mM1ydFGu .dropdown-item:active {
  background-color: transparent;
}
.cid-t4mM1ydFGu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4mM1ydFGu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4mM1ydFGu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4mM1ydFGu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-t4mM1ydFGu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4mM1ydFGu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4mM1ydFGu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4mM1ydFGu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t4mM1ydFGu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t4mM1ydFGu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t4mM1ydFGu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4mM1ydFGu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t4mM1ydFGu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t4mM1ydFGu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4mM1ydFGu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t4mM1ydFGu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t4mM1ydFGu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t4mM1ydFGu .navbar-dropdown {
  position: fixed;
}
.cid-t4mM1ydFGu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4mM1ydFGu .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-t4mM1ydFGu .navbar {
    height: 70px;
  }
  .cid-t4mM1ydFGu .navbar.opened {
    height: auto;
  }
  .cid-t4mM1ydFGu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZqakGdhKi {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/slider-img-1-2000x679.jpg");
}
.cid-rZqakGdhKi .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-rZqakGdhKi .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-t4mVjmtKZ7 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t4mVjmtKZ7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-t4mVjmtKZ7 .select {
  z-index: 999;
}
.cid-t4mVjmtKZ7 form {
  padding: 2rem 2rem;
  background: #f2f2f4;
  border-radius: 30px;
}
.cid-t4mVjmtKZ7 .jq-selectbox__dropdown,
.cid-t4mVjmtKZ7 ul {
  border-radius: 20px !important;
}
.cid-t4mVjmtKZ7 .jq-selectbox {
  border-radius: 30px;
}
.cid-t4mVjmtKZ7 .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-t4mVjmtKZ7 .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-t4mVjmtKZ7 input,
.cid-t4mVjmtKZ7 textarea,
.cid-t4mVjmtKZ7 .select {
  border-radius: 30px;
}
.cid-t4mVjmtKZ7 input,
.cid-t4mVjmtKZ7 textarea {
  padding: 2rem 3rem;
}
.cid-t4mVjmtKZ7 textarea {
  min-height: 10rem;
}
.cid-t4mVjmtKZ7 .form-control,
.cid-t4mVjmtKZ7 .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #f2f2f4;
  color: #181818;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t4mVjmtKZ7 .form-control::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .field-input::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .form-control::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-t4mVjmtKZ7 .form-control:-moz-placeholder,
.cid-t4mVjmtKZ7 .field-input:-moz-placeholder,
.cid-t4mVjmtKZ7 .form-control:-moz-placeholder,
.cid-t4mVjmtKZ7 .field-input:-moz-placeholder {
  color: #383838;
}
.cid-t4mVjmtKZ7 .form-control:hover,
.cid-t4mVjmtKZ7 .field-input:hover,
.cid-t4mVjmtKZ7 .form-control:focus,
.cid-t4mVjmtKZ7 .field-input:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-t4mVjmtKZ7 .form-control:hover::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .field-input:hover::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .form-control:focus::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .field-input:focus::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .form-control:hover::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .field-input:hover::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .form-control:focus::-webkit-input-placeholder,
.cid-t4mVjmtKZ7 .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-t4mVjmtKZ7 .form-control:hover:-moz-placeholder,
.cid-t4mVjmtKZ7 .field-input:hover:-moz-placeholder,
.cid-t4mVjmtKZ7 .form-control:focus:-moz-placeholder,
.cid-t4mVjmtKZ7 .field-input:focus:-moz-placeholder,
.cid-t4mVjmtKZ7 .form-control:hover:-moz-placeholder,
.cid-t4mVjmtKZ7 .field-input:hover:-moz-placeholder,
.cid-t4mVjmtKZ7 .form-control:focus:-moz-placeholder,
.cid-t4mVjmtKZ7 .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-t4mVjmtKZ7 .jq-number__spin:hover,
.cid-t4mVjmtKZ7 .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-t4mVjmtKZ7 .jq-number__spin {
  background-color: #ffffff;
  border-color: #f2f2f4;
  color: #181818;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t4mVjmtKZ7 .jq-selectbox li,
.cid-t4mVjmtKZ7 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-t4mVjmtKZ7 .jq-selectbox li:hover,
.cid-t4mVjmtKZ7 .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-t4mVjmtKZ7 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-t4mVjmtKZ7 .jq-number__spin.minus:hover:after,
.cid-t4mVjmtKZ7 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-t4mVjmtKZ7 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-t4mVjmtKZ7 .jq-number__spin.minus:after,
.cid-t4mVjmtKZ7 .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-t4mVjmtKZ7 input::-webkit-clear-button {
  display: none;
}
.cid-t4mVjmtKZ7 input::-webkit-inner-spin-button {
  display: none;
}
.cid-t4mVjmtKZ7 input::-webkit-outer-spin-button {
  display: none;
}
.cid-t4mVjmtKZ7 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-t4mVjmtKZ7 .icon-wrap {
  display: flex;
  margin-bottom: 4rem;
}
.cid-t4mVjmtKZ7 .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-t4mVjmtKZ7 .align-wrap {
  display: inline-block;
}
.cid-t4mVjmtKZ7 .mbr-iconfont {
  font-size: 3.5rem;
  color: #181818 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-t4mVjmtKZ7 .icons-wrap {
  display: flex;
}
.cid-t4mVjmtKZ7 .icon-title,
.cid-t4mVjmtKZ7 .mbr-iconfont {
  color: #ed6436;
}
@media (max-width: 767px) {
  .cid-t4mVjmtKZ7 form {
    padding: 2rem 1rem;
  }
  .cid-t4mVjmtKZ7 .col-auto {
    margin: auto;
    width: 100%;
  }
  .cid-t4mVjmtKZ7 .icons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-t4mVjmtKZ7 .icon-wrap {
    margin-right: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-t4mVjmtKZ7 .icon-wrap span {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
  .cid-t4mVjmtKZ7 .align-wrap {
    text-align: center;
  }
}
.cid-rZqalT6jOx {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/slider-img-2-2000x679.jpg");
}
.cid-rZqalT6jOx .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqalT6jOx .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-rZqamDmpQI {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rZqamDmpQI .mbr-section-title {
  color: #06182d;
}
.cid-rZqamDmpQI .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqamDmpQI .mbr-text,
.cid-rZqamDmpQI .mbr-section-btn {
  color: #61728a;
}
.cid-rZqamDmpQI .mbr-section-subtitle {
  color: #61728a;
}
.cid-rZqamDmpQI .card {
  margin-bottom: 40px;
}
.cid-rZqamDmpQI .card .card-wrapper {
  display: flex;
}
@media (max-width: 768px) {
  .cid-rZqamDmpQI .card .card-wrapper {
    justify-content: center;
  }
  .cid-rZqamDmpQI .card .card-wrapper .card-box {
    width: auto;
  }
}
.cid-rZqamDmpQI .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  transition: all 0.3s ease-in-out;
  align-self: center;
}
.cid-rZqamDmpQI .card .card-wrapper .card-box {
  margin-left: 14px;
}
.cid-rZqamDmpQI .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #61728a;
  margin-bottom: 0rem;
}
.cid-rZqamDmpQI .card .card-wrapper .card-box .card-text {
  color: #61728a;
}
.cid-rZqamDmpQI .buttons-wrap {
  text-align: left;
}
@media (max-width: 768px) {
  .cid-rZqamDmpQI .buttons-wrap {
    text-align: center;
  }
}
.cid-rZqamDmpQI .buttons-wrap .mbr-section-btn {
  display: inline-block;
}
.cid-rZqamDmpQI .buttons-wrap .mbr-section-btn .btn {
  padding-left: 39px;
  padding-right: 39px;
}
.cid-rZqamDmpQI .buttons-wrap .mbr-section-btn .btn-success-outline {
  color: #030f1c;
}
.cid-rZqamDmpQI .buttons-wrap .mbr-section-btn .btn-success-outline:hover {
  color: #000000;
}
.cid-rZqamDmpQI .buttons-wrap .or {
  text-align: center;
  display: inline;
  margin-left: 25px;
  margin-right: 25px;
  color: #61728a;
  margin-bottom: 0;
  vertical-align: sub;
}
@media (max-width: 992px) {
  .cid-rZqamDmpQI .buttons-wrap .or {
    display: none;
  }
}
.cid-rZqao4M7ed {
  padding-top: 90px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-rZqao4M7ed .mbr-section-title {
  color: #06182d;
}
.cid-rZqao4M7ed .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqao4M7ed .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZqao4M7ed .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqao4M7ed .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-rZqao4M7ed .title-text {
  margin-bottom: 70px;
}
.cid-rZqao4M7ed .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZqao4M7ed .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-rZqao4M7ed .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-rZqao4M7ed .title-text .mbr-section-title {
  color: #282f39;
}
.cid-rZqao4M7ed .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-rZqao4M7ed .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-rZqao4M7ed .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-rZqao4M7ed .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #ff4e3c;
}
.cid-rZqao4M7ed .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-rZqao4M7ed .p-4 {
  padding: 1rem 0 !important;
}
.cid-rZqao4M7ed .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-rZqao4M7ed .mbri-arrow-down:before {
  content: "\e960";
}
.cid-rZqao4M7ed .mbri-arrow-up:before {
  content: "\e960";
}
.cid-rZqao4M7ed .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-rZqao4M7ed .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-rZqao4M7ed .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-rZqao4M7ed .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-rZqao4M7ed .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-rZqao4M7ed .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-rZqao4M7ed .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #ff4e3c;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-rZqao4M7ed .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-rZqao4M7ed .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rZqao4M7ed .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-rZqao4M7ed .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-rZqao4M7ed .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-rZqao4M7ed .card .card-header a.panel-title .toggle-icon:before,
.cid-rZqao4M7ed .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-rZqao4M7ed .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-rZqao4M7ed .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-rZqao4M7ed .card .panel-body {
  padding: 14px 20px;
}
.cid-rZqao4M7ed .card .panel-body p {
  color: #61728a;
  line-height: 1.5;
}
.cid-rZqao4M7ed .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-t4oem0xBTI {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4oem0xBTI img {
  width: 120px;
  margin: auto;
}
.cid-t4oem0xBTI .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t4oem0xBTI .card {
    max-width: 15%;
  }
}
.cid-t4Lve7R7Ay {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-t4Lve7R7Ay .container {
  display: flex;
  justify-content: center;
}
.cid-t4Lve7R7Ay .main-row {
  align-items: center;
  max-width: 1170px;
  width: 100%;
}
.cid-t4Lve7R7Ay .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #ffffff;
  box-shadow: 0 -30px 100px rgba(0, 37, 133, 0.03);
  border-radius: 30px;
  padding: 0 !important;
}
.cid-t4Lve7R7Ay .col-text {
  display: flex;
  padding: 50px 15px 60px 70px;
}
@media (max-width: 1199px) {
  .cid-t4Lve7R7Ay .col-text {
    padding: 40px 15px 30px;
  }
}
.cid-t4Lve7R7Ay .col-text1 {
  border-right: 1px solid #dfeaf9;
}
@media (max-width: 767px) {
  .cid-t4Lve7R7Ay .col-text1 {
    border-right: none;
    border-bottom: 1px solid #dfeaf9;
  }
}
.cid-t4Lve7R7Ay .icon-box {
  display: flex;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .cid-t4Lve7R7Ay .icon-box {
    margin-right: 20px;
  }
}
.cid-t4Lve7R7Ay .icon-box .mbr-iconfont {
  color: #0066ff;
  font-size: 68px;
}
@media (max-width: 1199px) {
  .cid-t4Lve7R7Ay .icon-box .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-t4Lve7R7Ay .text-container {
  flex-grow: 1;
}
.cid-t4Lve7R7Ay .mbr-section-title {
  color: #010d4c;
  margin-bottom: 10px;
}
.cid-t4Lve7R7Ay .mbr-text {
  color: #181818;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-t4Lve7R7Ay .link-text {
  margin-bottom: 0;
  margin-top: 5px;
}
.cid-t4Lve7R7Ay .link-text a:hover {
  text-decoration: underline;
}
.cid-rZqapN0JPL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f4f6f9;
}
.cid-rZqapN0JPL .mbr-section-title {
  color: #06182d;
}
.cid-rZqapN0JPL .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqapN0JPL .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZqapN0JPL .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqapN0JPL .mbr-section-text {
  color: #999999;
}
.cid-rZqapN0JPL .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rZqapN0JPL .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 0.7em 1.07em 0em 0.8em;
  background-color: #f4f6f9;
  border: 0px solid #dfe3e8;
  border-bottom: 1px solid #dfe3e8;
  color: #61728a;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-rZqapN0JPL .form-control:focus,
.cid-rZqapN0JPL .form-control:hover {
  border: 0px solid #f4f6f9;
  background-color: #f4f6f9;
}
.cid-rZqapN0JPL .form-control.textarea {
  padding-top: 40px;
}
.cid-rZqapN0JPL .form-group {
  margin-bottom: 1rem;
}
.cid-rZqapN0JPL .form-group .wrap {
  display: flex;
}
.cid-rZqapN0JPL .form-group .wrap span {
  padding: 0em 0em;
  margin-bottom: 0px;
  align-self: center;
  color: #61728a;
}
.cid-rZqapN0JPL input::-webkit-input-placeholder,
.cid-rZqapN0JPL textarea::-webkit-input-placeholder {
  color: #61728a;
}
.cid-rZqapN0JPL input:-moz-placeholder,
.cid-rZqapN0JPL textarea:-moz-placeholder {
  color: #61728a;
}
.cid-rZqapN0JPL .jq-selectbox li,
.cid-rZqapN0JPL .jq-selectbox li {
  background-color: #f4f6f9;
  color: #000000;
}
.cid-rZqapN0JPL .jq-selectbox li:hover,
.cid-rZqapN0JPL .jq-selectbox li.selected {
  background-color: #f4f6f9;
  color: #000000;
}
.cid-rZqapN0JPL .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f4f6f9;
}
.cid-rZqapN0JPL .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f4f6f9;
}
.cid-rZqapN0JPL .map {
  width: 100%;
  height: 30rem;
}
.cid-rZqapN0JPL .map iframe {
  width: inherit;
  height: 100%;
}
.cid-rZqapN0JPL .icon-block {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.cid-rZqapN0JPL .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
}
.cid-rZqapN0JPL .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-rZqapN0JPL .mbr-text {
  color: #767676;
}
.cid-rZqapN0JPL a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-rZqapN0JPL .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rZqapN0JPL .input-group-btn {
  display: block;
  text-align: left;
}
.cid-rZqapN0JPL .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-rZqapN0JPL textarea.form-control {
  resize: none;
}
.cid-rZqapN0JPL .google-map {
  height: 25rem;
  position: relative;
}
.cid-rZqapN0JPL .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rZqapN0JPL .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-rZqapN0JPL .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rZqapN0JPL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-rZqapN0JPL h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-rZqapN0JPL .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rZqapN0JPL .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-rZqapN0JPL .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-rZqapN0JPL * {
    text-align: center !important;
  }
}
.cid-rZqasE8Bhf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #06182d;
}
.cid-rZqasE8Bhf .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZqasE8Bhf .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-tzSg84a0gn {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzSg84a0gn .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-tzSg84a0gn .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tzSg84a0gn .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tzSg84a0gn .navbar-caption {
  font-weight: 500;
}
.cid-tzSg84a0gn nav.navbar {
  position: fixed;
}
.cid-tzSg84a0gn .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-tzSg84a0gn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tzSg84a0gn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzSg84a0gn .dropdown-item:hover,
.cid-tzSg84a0gn .dropdown-item:focus {
  background: #ff4e3c !important;
  color: white !important;
}
.cid-tzSg84a0gn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tzSg84a0gn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tzSg84a0gn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tzSg84a0gn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzSg84a0gn .nav-link {
  position: relative;
}
.cid-tzSg84a0gn .container {
  display: flex;
  margin: auto;
}
.cid-tzSg84a0gn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-tzSg84a0gn .dropdown-menu,
.cid-tzSg84a0gn .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-tzSg84a0gn .nav-item:focus,
.cid-tzSg84a0gn .nav-link:focus {
  outline: none;
}
.cid-tzSg84a0gn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzSg84a0gn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzSg84a0gn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzSg84a0gn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzSg84a0gn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzSg84a0gn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzSg84a0gn .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f9f9f9;
}
.cid-tzSg84a0gn .navbar.opened {
  transition: all 0.3s;
}
.cid-tzSg84a0gn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzSg84a0gn .navbar .navbar-logo img {
  width: auto;
}
.cid-tzSg84a0gn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzSg84a0gn .navbar.collapsed {
  justify-content: center;
}
.cid-tzSg84a0gn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzSg84a0gn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzSg84a0gn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-tzSg84a0gn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzSg84a0gn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzSg84a0gn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tzSg84a0gn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzSg84a0gn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzSg84a0gn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzSg84a0gn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzSg84a0gn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzSg84a0gn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzSg84a0gn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzSg84a0gn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tzSg84a0gn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzSg84a0gn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzSg84a0gn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzSg84a0gn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzSg84a0gn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzSg84a0gn .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzSg84a0gn .navbar.navbar-short {
  min-height: 80px;
}
.cid-tzSg84a0gn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tzSg84a0gn .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tzSg84a0gn .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-tzSg84a0gn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzSg84a0gn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzSg84a0gn .dropdown-item.active,
.cid-tzSg84a0gn .dropdown-item:active {
  background-color: transparent;
}
.cid-tzSg84a0gn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzSg84a0gn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzSg84a0gn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzSg84a0gn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-tzSg84a0gn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzSg84a0gn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzSg84a0gn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tzSg84a0gn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tzSg84a0gn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tzSg84a0gn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzSg84a0gn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzSg84a0gn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzSg84a0gn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzSg84a0gn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzSg84a0gn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzSg84a0gn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzSg84a0gn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzSg84a0gn .navbar-dropdown {
  position: fixed;
}
.cid-tzSg84a0gn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzSg84a0gn .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-tzSg84a0gn .navbar {
    height: 70px;
  }
  .cid-tzSg84a0gn .navbar.opened {
    height: auto;
  }
  .cid-tzSg84a0gn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzSgBye3kv {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-tzSgBye3kv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzSgBye3kv .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-tzSgBye3kv .container {
    padding: 0 30px;
  }
}
.cid-tzSgBye3kv .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tzSgBye3kv .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tzSgBye3kv .mbr-text DIV {
  text-align: left;
}
.cid-tzSg89gd51 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #06182d;
}
.cid-tzSg89gd51 .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tzSg89gd51 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tzSg89gd51 .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-tzSg89gd51 .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-tzSg89gd51 .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-tzSg89gd51 .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-tzSg89gd51 .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-tzSg89gd51 .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-tzSg89gd51 .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-tzSg89gd51 .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-tzSg89gd51 .text-wrap .icons-wrap::after {
    display: none;
  }
}
