@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





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: #ff513c !important;
}
.bg-success {
  background-color: #fff000 !important;
}
.bg-info {
  background-color: #61728a !important;
}
.bg-warning {
  background-color: #d52b27 !important;
}
.bg-danger {
  background-color: #1352ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ef1a00 !important;
  border-color: #ef1a00 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ef1a00 !important;
  border-color: #ef1a00 !important;
}
.btn-primary:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !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: #ff513c !important;
  border-color: #ff513c !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: #ff513c !important;
  border-color: #ff513c !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: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !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: #ff513c !important;
  border-color: #ff513c !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: #ff513c !important;
  border-color: #ff513c !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: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ff513c;
  color: #ff513c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff513c;
  border-color: #ff513c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff513c !important;
  border-color: #ff513c !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: #d52b27;
  color: #d52b27;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #d52b27;
  border-color: #d52b27;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d52b27 !important;
  border-color: #d52b27 !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: #ff513c !important;
}
.text-secondary {
  color: #282f39 !important;
}
.text-success {
  color: #fff000 !important;
}
.text-info {
  color: #61728a !important;
}
.text-warning {
  color: #d52b27 !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: #ffaca2 !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: #e77e7b !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: #d52b27;
}
.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: #ff513c;
  border-color: #ff513c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff513c;
}
.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: #f7d2d1;
}
.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: #ff513c;
}
/* 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: #ff513c;
  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: #ff513c;
  border-bottom-color: #ff513c;
}
.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: #ff513c !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='%23ff513c' %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-rZqajfjXzL .navbar {
  padding: .5rem 0;
  transition: none;
  min-height: 50px;
  background: none;
}
.cid-rZqajfjXzL .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#ffffff, #ffffff);
}
.cid-rZqajfjXzL .navbar-fixed-top {
  padding-top: 0;
}
.cid-rZqajfjXzL .navbar-collapse {
  flex-basis: auto;
}
.cid-rZqajfjXzL .dropdown-item {
  padding: 0;
}
.cid-rZqajfjXzL .dropdown-menu {
  border: 0px solid lightgray;
  background: #ff5e3a !important;
}
.cid-rZqajfjXzL .menu-content-top {
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-rZqajfjXzL .menu-content-top {
    width: 100%;
  }
  .cid-rZqajfjXzL .menu-content-top .menu-logo {
    display: none;
  }
  .cid-rZqajfjXzL .menu-content-top .navbar-buttons {
    display: none !important;
  }
  .cid-rZqajfjXzL .menu-content-top .menu-content-right {
    justify-content: space-between;
  }
}
.cid-rZqajfjXzL .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rZqajfjXzL .menu-bottom .menu-wrap {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-rZqajfjXzL .menu-bottom .navbar-brand-bottom {
    display: none !important;
  }
}
.cid-rZqajfjXzL .menu-bottom .mbr-overlay2 {
  z-index: 0;
  transition: all .3s;
  background: #ff5e3a;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.cid-rZqajfjXzL .menu-bottom .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rZqajfjXzL .menu-bottom .icons-menu span {
  font-size: 16px;
  color: #ff513c;
}
.cid-rZqajfjXzL .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rZqajfjXzL a {
  font-style: normal;
}
.cid-rZqajfjXzL .nav-item {
  border-right: 1px #0e2640;
  border-left: 1px #0e2640;
}
.cid-rZqajfjXzL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rZqajfjXzL .nav-item a {
  padding: 20px 0 !important;
  margin: 0 .5rem !important;
}
.cid-rZqajfjXzL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-rZqajfjXzL .content-text {
  margin-bottom: 0;
}
.cid-rZqajfjXzL .navbar-nav {
  position: relative;
  min-height: 49px;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rZqajfjXzL .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff513c;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rZqajfjXzL .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rZqajfjXzL .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rZqajfjXzL .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rZqajfjXzL .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rZqajfjXzL .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rZqajfjXzL .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rZqajfjXzL .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rZqajfjXzL .nav-dropdown .link {
  font-weight: 400;
}
.cid-rZqajfjXzL .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rZqajfjXzL .content-right-side {
  text-align: center;
}
.cid-rZqajfjXzL .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rZqajfjXzL .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rZqajfjXzL .info-widget {
  margin-left: 16px;
  padding-top: 0.5rem;
}
.cid-rZqajfjXzL .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-rZqajfjXzL .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rZqajfjXzL .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rZqajfjXzL .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rZqajfjXzL .widget-content .widget-title {
  margin-bottom: 0px;
  font-weight: 500;
}
.cid-rZqajfjXzL .widget-content .widget-title .mbr-iconfont {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 20px !important;
}
.cid-rZqajfjXzL .widget-content .widget-title.display-7 {
  line-height: 1.2 !important;
}
.cid-rZqajfjXzL .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-rZqajfjXzL .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rZqajfjXzL .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-rZqajfjXzL .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-rZqajfjXzL .navbar {
    display: block;
    padding: 0;
  }
  .cid-rZqajfjXzL .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-rZqajfjXzL .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.2rem - 4.5rem);
  }
  .cid-rZqajfjXzL .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    padding-top: 8px !important;
  }
  .cid-rZqajfjXzL .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rZqajfjXzL .navbar-toggler {
    display: none;
  }
  .cid-rZqajfjXzL .navbar-collapse {
    justify-content: center;
  }
}
.cid-rZqajfjXzL .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-rZqajfjXzL .btn {
  display: inline-flex;
  align-items: center;
}
.cid-rZqajfjXzL .btn.btn-success-outline {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0;
}
.cid-rZqajfjXzL .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rZqajfjXzL .menu-logo {
  margin-right: auto;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rZqajfjXzL .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rZqajfjXzL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rZqajfjXzL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-rZqajfjXzL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rZqajfjXzL .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rZqajfjXzL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZqajfjXzL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rZqajfjXzL .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rZqajfjXzL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 1;
  transition: font-size 0.25s;
}
.cid-rZqajfjXzL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rZqajfjXzL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rZqajfjXzL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rZqajfjXzL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: auto;
}
.cid-rZqajfjXzL button.navbar-toggler.collapsed {
  align-self: center;
}
.cid-rZqajfjXzL button.navbar-toggler:focus {
  outline: none;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZqajfjXzL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZqajfjXzL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZqajfjXzL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZqajfjXzL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZqajfjXzL .collapsed.navbar-toggler {
  align-self: auto;
}
.cid-rZqajfjXzL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZqajfjXzL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZqajfjXzL .collapsed .btn {
  display: flex;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rZqajfjXzL .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rZqajfjXzL .collapsed button.navbar-toggler {
  display: block;
}
.cid-rZqajfjXzL .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rZqajfjXzL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-rZqajfjXzL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-rZqajfjXzL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rZqajfjXzL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rZqajfjXzL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rZqajfjXzL .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
.cid-rZqajfjXzL .collapsed .menu-bottom .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZqajfjXzL .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing,
  .cid-rZqajfjXzL .navbar-collapse.show {
    display: block !important;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-nav,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-buttons,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rZqajfjXzL .menu-bottom {
    flex-direction: row;
    justify-content: center;
  }
  .cid-rZqajfjXzL .menu-bottom .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .cid-rZqajfjXzL .menu-bottom .navbar-brand-bottom {
    margin-right: auto;
  }
  .cid-rZqajfjXzL img {
    height: 3.8rem !important;
  }
  .cid-rZqajfjXzL .btn {
    display: flex;
  }
  .cid-rZqajfjXzL button.navbar-toggler {
    display: block;
  }
  .cid-rZqajfjXzL .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rZqajfjXzL .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-rZqajfjXzL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-rZqajfjXzL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rZqajfjXzL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rZqajfjXzL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rZqajfjXzL .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-rZqajfjXzL .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-rZqajfjXzL .nav-link:focus {
  outline: none;
}
.cid-rZqajfjXzL .navbar-toggler {
  position: relative;
}
.cid-rZqajfjXzL .dropdown-item.active,
.cid-rZqajfjXzL .dropdown-item:active {
  background: #ff5e3a;
  color: initial;
}
.cid-rZqajfjXzL .widget-title,
.cid-rZqajfjXzL .widget-icon {
  text-align: center;
}
.cid-rZqajfjXzL .widget-text {
  color: #0a1c44;
}
.cid-rZqakGdhKi {
  background-image: url("../../../assets/images/prado-2000x1233.png");
}
.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: #ff513c;
}
.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: #843027;
  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: #ff513c;
  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-s2ob4TvE9L {
  background-image: url("../../../assets/images/rav4-2000x1535.png");
}
.cid-s2ob4TvE9L .block {
  height: 416px;
}
@media (max-width: 992px) {
  .cid-s2ob4TvE9L .block {
    height: 208px;
  }
}
.cid-s2o5YhW0xs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s2o5YhW0xs img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-s2o5YhW0xs .card {
  margin-bottom: 130px !important;
}
.cid-s2o5YhW0xs .card .img-wrapper {
  overflow: hidden;
}
.cid-s2o5YhW0xs .card:hover {
  cursor: pointer;
}
.cid-s2o5YhW0xs .card:hover img {
  transform: scale(1.05);
}
.cid-s2o5YhW0xs .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-s2o5YhW0xs .card {
    margin-bottom: 50px !important;
  }
}
.cid-s2o5YhW0xs .card .card-wrapper {
  text-align: left;
}
.cid-s2o5YhW0xs .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-s2o5YhW0xs .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-s2o5YhW0xs .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-s2o5YhW0xs .card .card-wrapper .card-box .card-text {
  color: #61728a;
}
.cid-s2o5YhW0xs .mbr-section-title {
  color: #06182d;
}
.cid-s2o5YhW0xs .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-s2o5YhW0xs .mbr-section-subtitle {
  color: #06182d;
}
.cid-s2o5YhW0xs .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s2o5YhW0xs .mbr-section-text {
  color: #999999;
}
.cid-s3ujDHkgUs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s3ujDHkgUs h3 {
  text-align: center;
  font-weight: 300;
}
.cid-s3ujDHkgUs .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-s3ujDHkgUs .mbr-section-title {
  color: #06182d;
}
.cid-s3ujDHkgUs .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-s3ujDHkgUs .mbr-section-subtitle {
  color: #61728a;
}
.cid-s3ujDHkgUs .mbr-crt-title .card-title {
  color: #61728a;
}
.cid-s3ujDHkgUs .card {
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-s3ujDHkgUs ellipse {
  stroke: white;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-s3ujDHkgUs .card {
    flex-basis: 50%;
  }
}
.cid-s3ujDHkgUs .progress1 path {
  stroke: #fff000;
}
.cid-s3ujDHkgUs .progress2 path {
  stroke: #ff4e3c;
}
.cid-s3ujDHkgUs .progress3 path {
  stroke: #52c158;
}
.cid-s3ujDHkgUs .progress4 path {
  stroke: #1887cd;
}
.cid-s3ujDHkgUs .card-text {
  color: #767676;
}
.cid-s3ujDHkgUs .pie_progress__number {
  color: #06182d;
}
.cid-s3um90K2JJ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s3um90K2JJ .mbr-section-title {
  color: #06182d;
}
.cid-s3um90K2JJ .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-s3um90K2JJ .mbr-section-subtitle {
  color: #06182d;
}
.cid-s3um90K2JJ .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s3um90K2JJ .mbr-section-text {
  color: #999999;
}
.cid-s3um90K2JJ .nav-tabs .nav-item.open .nav-link:focus,
.cid-s3um90K2JJ .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-s3um90K2JJ .nav-tabs {
  flex-wrap: wrap;
  flex-direction: column;
  border-bottom: 1px solid #f4f6f9;
}
.cid-s3um90K2JJ .nav-tabs .nav-item {
  margin-right: 4px;
}
.cid-s3um90K2JJ .nav-tabs .nav-link {
  color: #06182d;
  font-style: normal;
  font-weight: 300;
  transition: all .5s;
  border: none;
  border-radius: 0 !important;
  background-color: #f4f6f9;
  padding: 1rem 2.2rem;
}
.cid-s3um90K2JJ .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ff513c;
}
.cid-s3um90K2JJ .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #ff513c;
}
.cid-s3um90K2JJ P {
  color: #879a9f;
}
@media (max-width: 576px) {
  .cid-s3um90K2JJ .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-s3um90K2JJ .mbr-text,
  .cid-s3um90K2JJ .nav-link {
    text-align: center;
  }
}
.cid-s3um90K2JJ .img-wrap img {
  width: 100%;
}
.cid-rZqana3jMB {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/14-1920x1280.jpg");
}
.cid-rZqana3jMB .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-rZqana3jMB .mbr-section-subtitle {
  color: #ff4e3c;
}
.cid-rZqana3jMB .mbr-section-subtitle.mbr-bold {
  font-weight: 700;
}
.cid-rZqana3jMB .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqana3jMB .mbr-text {
  color: #ffffff;
}
.cid-rZqana3jMB .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-rZqana3jMB .text-wrap .icons-wrap .icon-wrapper {
  background: transparent;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #61728a;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZqana3jMB .text-wrap .icons-wrap .icon-wrapper:hover {
  background-color: #55acee;
  border-color: #55acee;
}
.cid-rZqana3jMB .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffff;
}
.cid-rZqana3jMB .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZqana3jMB .text-wrap .icons-wrap::before {
  height: 2px;
  width: 30%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #61728a;
}
@media (max-width: 992px) {
  .cid-rZqana3jMB .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZqana3jMB .text-wrap .icons-wrap::after {
  height: 2px;
  width: 30%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #61728a;
}
@media (max-width: 992px) {
  .cid-rZqana3jMB .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-rZqana3jMB .buttons-wrap {
  text-align: center;
}
.cid-rZqana3jMB .buttons-wrap .mbr-section-btn {
  display: inline-block;
}
.cid-rZqana3jMB .buttons-wrap .mbr-section-btn .btn {
  padding-left: 39px;
  padding-right: 39px;
}
.cid-rZqana3jMB .buttons-wrap .mbr-section-btn .btn-success-outline {
  color: #ffffff;
}
.cid-rZqana3jMB .buttons-wrap .mbr-section-btn .btn-success-outline:hover {
  color: #000000;
}
.cid-rZqana3jMB .buttons-wrap .or {
  text-align: center;
  display: inline;
  margin-left: 25px;
  margin-right: 25px;
}
.cid-s3ua7MuUej {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-s3ua7MuUej .mbr-section-title {
  color: #06182d;
}
.cid-s3ua7MuUej .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-s3ua7MuUej .mbr-section-subtitle {
  color: #06182d;
}
.cid-s3ua7MuUej .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s3ua7MuUej .mbr-section-text {
  color: #999999;
}
.cid-s3ua7MuUej .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-s3ua7MuUej .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-s3ua7MuUej .form-control:focus,
.cid-s3ua7MuUej .form-control:hover {
  border: 0px solid #f4f6f9;
  background-color: #f4f6f9;
}
.cid-s3ua7MuUej .form-control.textarea {
  padding-top: 40px;
}
.cid-s3ua7MuUej .form-group {
  margin-bottom: 1rem;
}
.cid-s3ua7MuUej .form-group .wrap {
  display: flex;
}
.cid-s3ua7MuUej .form-group .wrap span {
  padding: 0em 0em;
  margin-bottom: 0px;
  align-self: center;
  color: #61728a;
}
.cid-s3ua7MuUej input::-webkit-input-placeholder,
.cid-s3ua7MuUej textarea::-webkit-input-placeholder {
  color: #61728a;
}
.cid-s3ua7MuUej input:-moz-placeholder,
.cid-s3ua7MuUej textarea:-moz-placeholder {
  color: #61728a;
}
.cid-s3ua7MuUej .jq-selectbox li,
.cid-s3ua7MuUej .jq-selectbox li {
  background-color: #f4f6f9;
  color: #000000;
}
.cid-s3ua7MuUej .jq-selectbox li:hover,
.cid-s3ua7MuUej .jq-selectbox li.selected {
  background-color: #f4f6f9;
  color: #000000;
}
.cid-s3ua7MuUej .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f4f6f9;
}
.cid-s3ua7MuUej .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f4f6f9;
}
.cid-s3ua7MuUej .map {
  width: 100%;
  height: 30rem;
}
.cid-s3ua7MuUej .map iframe {
  width: inherit;
  height: 100%;
}
.cid-s3ua7MuUej .icon-block {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.cid-s3ua7MuUej .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
}
.cid-s3ua7MuUej .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-s3ua7MuUej .mbr-text {
  color: #767676;
}
.cid-s3ua7MuUej a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-s3ua7MuUej .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-s3ua7MuUej .input-group-btn {
  display: block;
  text-align: left;
}
.cid-s3ua7MuUej .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-s3ua7MuUej textarea.form-control {
  resize: none;
}
.cid-s3ua7MuUej .google-map {
  height: 25rem;
  position: relative;
}
.cid-s3ua7MuUej .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-s3ua7MuUej .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-s3ua7MuUej .google-map[data-state] {
  background: #e9e5dc;
}
.cid-s3ua7MuUej .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-s3ua7MuUej h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-s3ua7MuUej .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-s3ua7MuUej .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-s3ua7MuUej .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-s3ua7MuUej * {
    text-align: center !important;
  }
}
.cid-rZqanq7PEg {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rZqanq7PEg .progress {
  width: 100%;
}
.cid-rZqanq7PEg .mbr-flex {
  display: flex;
}
.cid-rZqanq7PEg .mbr-m-auto {
  margin: auto;
  width: 100%;
  padding-bottom: 2rem;
}
.cid-rZqanq7PEg progress {
  height: 4px;
}
.cid-rZqanq7PEg .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZqanq7PEg .mbr-section-subtitle.display-2 {
  letter-spacing: 0;
}
.cid-rZqanq7PEg .progress_value {
  position: relative;
}
.cid-rZqanq7PEg .progress_elements {
  margin: 0 auto;
}
.cid-rZqanq7PEg .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-rZqanq7PEg .progress1 .progressbar-number:before,
.cid-rZqanq7PEg .progress2 .progressbar-number:before,
.cid-rZqanq7PEg .progress3 .progressbar-number:before,
.cid-rZqanq7PEg .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-rZqanq7PEg progress[value]::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.1);
}
.cid-rZqanq7PEg .progress1 progress::-webkit-progress-value {
  background: #ff4e3c;
}
.cid-rZqanq7PEg .progress2 progress::-webkit-progress-value {
  background: #fff000;
}
.cid-rZqanq7PEg .progress3 progress::-webkit-progress-value {
  background: #1352ff;
}
.cid-rZqanq7PEg .progress4 progress::-webkit-progress-value {
  background: #d52b27;
}
.cid-rZqanq7PEg .progress1 .progressbar-number:before {
  content: '100';
}
.cid-rZqanq7PEg .progress2 .progressbar-number:before {
  content: '100';
}
.cid-rZqanq7PEg .progress3 .progressbar-number:before {
  content: '100';
}
.cid-rZqanq7PEg .progress4 .progressbar-number:before {
  content: '63';
}
.cid-rZqanq7PEg .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-rZqanq7PEg .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-rZqanq7PEg .progress_value span {
  padding-left: 30px;
}
.cid-rZqanq7PEg .mbr-section-title {
  color: #06182d;
}
.cid-rZqanq7PEg .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-rZqanq7PEg .progressbar-title p,
.cid-rZqanq7PEg .progress_value {
  color: #61728a;
}
.cid-rZqanq7PEg p {
  margin-bottom: 0.5rem;
}
.cid-rZqanq7PEg img {
  width: 80%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: -20px 20px 55px 2px rgba(61, 72, 87, 0.35);
}
@media (max-width: 576px) {
  .cid-rZqanq7PEg img {
    width: 100%;
  }
}
.cid-rZqapkr5JT {
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-rZqapkr5JT .mbr-text {
  color: #e5e5e5;
}
.cid-rZqapkr5JT .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  width: 130px;
  height: 130px;
  cursor: pointer;
}
.cid-rZqapkr5JT .icon-wrap:hover .mbr-iconfont {
  color: #ff513c;
}
.cid-rZqapkr5JT .icon-wrap span {
  padding-left: 4px;
}
.cid-rZqapkr5JT .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-rZqapkr5JT .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-rZqapkr5JT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rZqapkr5JT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rZqapkr5JT .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rZqapkr5JT a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rZqapkr5JT a.close:hover {
  color: #ffffff;
}
.cid-s3ui0C6adD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s3ui0C6adD .mbr-section-title {
  color: #06182d;
}
.cid-s3ui0C6adD .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-s3ui0C6adD .mbr-section-subtitle {
  color: #06182d;
}
.cid-s3ui0C6adD .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s3ui0C6adD .mbr-section-text {
  color: #999999;
}
.cid-s3ui0C6adD .carousel-control {
  background: #000;
  opacity: 0.2;
}
.cid-s3ui0C6adD .carousel {
  width: 85%;
  margin: auto;
}
.cid-s3ui0C6adD .carousel-item {
  justify-content: center;
}
.cid-s3ui0C6adD .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-s3ui0C6adD .carousel-item .wrap-img {
  text-align: center;
}
.cid-s3ui0C6adD .carousel-item .wrap-img img {
  transition: all 0.3s;
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-s3ui0C6adD .carousel-controls {
  display: flex;
  justify-content: center;
}
.cid-s3ui0C6adD .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-s3ui0C6adD .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-s3ui0C6adD .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-s3ui0C6adD .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-s3ui0C6adD .cloneditem-1,
.cid-s3ui0C6adD .cloneditem-2,
.cid-s3ui0C6adD .cloneditem-3,
.cid-s3ui0C6adD .cloneditem-4,
.cid-s3ui0C6adD .cloneditem-5 {
  display: none;
}
.cid-s3ui0C6adD .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s3ui0C6adD .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-s3ui0C6adD .carousel-inner {
    opacity: 0.8;
  }
  .cid-s3ui0C6adD .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides2 .cloneditem-1,
  .cid-s3ui0C6adD .carousel-inner.slides2 .cloneditem-2,
  .cid-s3ui0C6adD .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-s3ui0C6adD .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides3 .cloneditem-1,
  .cid-s3ui0C6adD .carousel-inner.slides3 .cloneditem-2,
  .cid-s3ui0C6adD .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-s3ui0C6adD .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(25%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-25%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides4 .cloneditem-1,
  .cid-s3ui0C6adD .carousel-inner.slides4 .cloneditem-2,
  .cid-s3ui0C6adD .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-s3ui0C6adD .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(20%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-20%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides5 .cloneditem-1,
  .cid-s3ui0C6adD .carousel-inner.slides5 .cloneditem-2,
  .cid-s3ui0C6adD .carousel-inner.slides5 .cloneditem-3,
  .cid-s3ui0C6adD .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-s3ui0C6adD .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-s3ui0C6adD .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-s3ui0C6adD .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-s3ui0C6adD .carousel-inner.slides6 .cloneditem-1,
  .cid-s3ui0C6adD .carousel-inner.slides6 .cloneditem-2,
  .cid-s3ui0C6adD .carousel-inner.slides6 .cloneditem-3,
  .cid-s3ui0C6adD .carousel-inner.slides6 .cloneditem-4,
  .cid-s3ui0C6adD .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-s3ui0C6adD .carousel-control-prev {
  position: absolute !important;
  left: -50px !important;
}
.cid-s3ui0C6adD .carousel-control-next {
  position: absolute !important;
  right: -50px !important;
}
@media (max-width: 576px) {
  .cid-s3ui0C6adD .carousel-control-prev {
    left: -10px !important;
  }
  .cid-s3ui0C6adD .carousel-control-next {
    right: -10px !important;
  }
}
.cid-s4aleVYG2Z {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #06182d;
}
.cid-s4aleVYG2Z .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-s4aleVYG2Z .copyright {
    margin-bottom: 1rem;
  }
}
.cid-s4aleVYG2Z .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-s4aleVYG2Z .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-s4aleVYG2Z .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-s4aleVYG2Z .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-s4aleVYG2Z .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-s4aleVYG2Z .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-s4aleVYG2Z .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-s4aleVYG2Z .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-s4aleVYG2Z .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-rZqajfjXzL .navbar {
  padding: .5rem 0;
  transition: none;
  min-height: 50px;
  background: none;
}
.cid-rZqajfjXzL .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#ffffff, #ffffff);
}
.cid-rZqajfjXzL .navbar-fixed-top {
  padding-top: 0;
}
.cid-rZqajfjXzL .navbar-collapse {
  flex-basis: auto;
}
.cid-rZqajfjXzL .dropdown-item {
  padding: 0;
}
.cid-rZqajfjXzL .dropdown-menu {
  border: 0px solid lightgray;
  background: #ff5e3a !important;
}
.cid-rZqajfjXzL .menu-content-top {
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-rZqajfjXzL .menu-content-top {
    width: 100%;
  }
  .cid-rZqajfjXzL .menu-content-top .menu-logo {
    display: none;
  }
  .cid-rZqajfjXzL .menu-content-top .navbar-buttons {
    display: none !important;
  }
  .cid-rZqajfjXzL .menu-content-top .menu-content-right {
    justify-content: space-between;
  }
}
.cid-rZqajfjXzL .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rZqajfjXzL .menu-bottom .menu-wrap {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-rZqajfjXzL .menu-bottom .navbar-brand-bottom {
    display: none !important;
  }
}
.cid-rZqajfjXzL .menu-bottom .mbr-overlay2 {
  z-index: 0;
  transition: all .3s;
  background: #ff5e3a;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.cid-rZqajfjXzL .menu-bottom .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rZqajfjXzL .menu-bottom .icons-menu span {
  font-size: 16px;
  color: #ff513c;
}
.cid-rZqajfjXzL .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rZqajfjXzL a {
  font-style: normal;
}
.cid-rZqajfjXzL .nav-item {
  border-right: 1px #0e2640;
  border-left: 1px #0e2640;
}
.cid-rZqajfjXzL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rZqajfjXzL .nav-item a {
  padding: 20px 0 !important;
  margin: 0 .5rem !important;
}
.cid-rZqajfjXzL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-rZqajfjXzL .content-text {
  margin-bottom: 0;
}
.cid-rZqajfjXzL .navbar-nav {
  position: relative;
  min-height: 49px;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rZqajfjXzL .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff513c;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rZqajfjXzL .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rZqajfjXzL .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rZqajfjXzL .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rZqajfjXzL .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rZqajfjXzL .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rZqajfjXzL .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rZqajfjXzL .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rZqajfjXzL .nav-dropdown .link {
  font-weight: 400;
}
.cid-rZqajfjXzL .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rZqajfjXzL .content-right-side {
  text-align: center;
}
.cid-rZqajfjXzL .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rZqajfjXzL .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rZqajfjXzL .info-widget {
  margin-left: 16px;
  padding-top: 0.5rem;
}
.cid-rZqajfjXzL .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-rZqajfjXzL .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rZqajfjXzL .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rZqajfjXzL .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rZqajfjXzL .widget-content .widget-title {
  margin-bottom: 0px;
  font-weight: 500;
}
.cid-rZqajfjXzL .widget-content .widget-title .mbr-iconfont {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 20px !important;
}
.cid-rZqajfjXzL .widget-content .widget-title.display-7 {
  line-height: 1.2 !important;
}
.cid-rZqajfjXzL .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-rZqajfjXzL .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rZqajfjXzL .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-rZqajfjXzL .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-rZqajfjXzL .navbar {
    display: block;
    padding: 0;
  }
  .cid-rZqajfjXzL .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-rZqajfjXzL .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.2rem - 4.5rem);
  }
  .cid-rZqajfjXzL .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    padding-top: 8px !important;
  }
  .cid-rZqajfjXzL .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rZqajfjXzL .navbar-toggler {
    display: none;
  }
  .cid-rZqajfjXzL .navbar-collapse {
    justify-content: center;
  }
}
.cid-rZqajfjXzL .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-rZqajfjXzL .btn {
  display: inline-flex;
  align-items: center;
}
.cid-rZqajfjXzL .btn.btn-success-outline {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0;
}
.cid-rZqajfjXzL .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rZqajfjXzL .menu-logo {
  margin-right: auto;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rZqajfjXzL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rZqajfjXzL .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rZqajfjXzL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rZqajfjXzL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-rZqajfjXzL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rZqajfjXzL .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rZqajfjXzL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZqajfjXzL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rZqajfjXzL .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rZqajfjXzL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 1;
  transition: font-size 0.25s;
}
.cid-rZqajfjXzL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rZqajfjXzL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rZqajfjXzL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rZqajfjXzL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: auto;
}
.cid-rZqajfjXzL button.navbar-toggler.collapsed {
  align-self: center;
}
.cid-rZqajfjXzL button.navbar-toggler:focus {
  outline: none;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZqajfjXzL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZqajfjXzL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZqajfjXzL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZqajfjXzL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZqajfjXzL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZqajfjXzL .collapsed.navbar-toggler {
  align-self: auto;
}
.cid-rZqajfjXzL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZqajfjXzL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZqajfjXzL .collapsed .btn {
  display: flex;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-rZqajfjXzL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rZqajfjXzL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rZqajfjXzL .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rZqajfjXzL .collapsed button.navbar-toggler {
  display: block;
}
.cid-rZqajfjXzL .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rZqajfjXzL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-rZqajfjXzL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-rZqajfjXzL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rZqajfjXzL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rZqajfjXzL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rZqajfjXzL .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
.cid-rZqajfjXzL .collapsed .menu-bottom .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZqajfjXzL .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing,
  .cid-rZqajfjXzL .navbar-collapse.show {
    display: block !important;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-nav,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-buttons,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-rZqajfjXzL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rZqajfjXzL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rZqajfjXzL .menu-bottom {
    flex-direction: row;
    justify-content: center;
  }
  .cid-rZqajfjXzL .menu-bottom .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .cid-rZqajfjXzL .menu-bottom .navbar-brand-bottom {
    margin-right: auto;
  }
  .cid-rZqajfjXzL img {
    height: 3.8rem !important;
  }
  .cid-rZqajfjXzL .btn {
    display: flex;
  }
  .cid-rZqajfjXzL button.navbar-toggler {
    display: block;
  }
  .cid-rZqajfjXzL .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rZqajfjXzL .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-rZqajfjXzL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-rZqajfjXzL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rZqajfjXzL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rZqajfjXzL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rZqajfjXzL .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rZqajfjXzL .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-rZqajfjXzL .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-rZqajfjXzL .nav-link:focus {
  outline: none;
}
.cid-rZqajfjXzL .navbar-toggler {
  position: relative;
}
.cid-rZqajfjXzL .dropdown-item.active,
.cid-rZqajfjXzL .dropdown-item:active {
  background: #ff5e3a;
  color: initial;
}
.cid-rZqajfjXzL .widget-title,
.cid-rZqajfjXzL .widget-icon {
  text-align: center;
}
.cid-rZqajfjXzL .widget-text {
  color: #0a1c44;
}
.cid-s4af1iOyKR {
  background-image: url("../../../assets/images/front-view-118.webp");
}
.cid-s4af1iOyKR .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-s4af1iOyKR .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-s4af1iOyKR .card .wrapper .mbr-section-title span:first-child {
  color: #843027;
}
.cid-s4af1iOyKR .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #843027;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-s4af1iOyKR .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s4af1iOyKR .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s4af1iOyKR .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-s4af1iOyKR .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-s4af1iOyKR .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-s4af1iOyKR .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-s4af1iOyKR .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff513c;
  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-s4af1iOyKR .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-s4ahtPUulJ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s4ahtPUulJ .mbr-section-title {
  color: #06182d;
}
.cid-s4ahtPUulJ .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-s4ahtPUulJ .mbr-section-subtitle {
  color: #06182d;
}
.cid-s4ahtPUulJ .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s4ahtPUulJ .mbr-section-text {
  color: #999999;
}
.cid-s4ahtPUulJ .nav-tabs .nav-item.open .nav-link:focus,
.cid-s4ahtPUulJ .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-s4ahtPUulJ .nav-tabs {
  flex-wrap: wrap;
  flex-direction: column;
  border-bottom: 1px solid #f4f6f9;
}
.cid-s4ahtPUulJ .nav-tabs .nav-item {
  margin-right: 4px;
}
.cid-s4ahtPUulJ .nav-tabs .nav-link {
  color: #06182d;
  font-style: normal;
  font-weight: 300;
  transition: all .5s;
  border: none;
  border-radius: 0 !important;
  background-color: #f4f6f9;
  padding: 1rem 2.2rem;
}
.cid-s4ahtPUulJ .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ff513c;
}
.cid-s4ahtPUulJ .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #ff513c;
}
.cid-s4ahtPUulJ P {
  color: #879a9f;
}
@media (max-width: 576px) {
  .cid-s4ahtPUulJ .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-s4ahtPUulJ .mbr-text,
  .cid-s4ahtPUulJ .nav-link {
    text-align: center;
  }
}
.cid-s4ahtPUulJ .img-wrap img {
  width: 100%;
}
.cid-s4ahtPUulJ .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-s4ahtPUulJ .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-s4ahtPUulJ .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-s4ahtPUulJ .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-s4ahtPUulJ .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-s4ahtPUulJ .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-s4ahtPUulJ .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-s4ahtPUulJ .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-s4ahtPUulJ .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-s4ahtPUulJ .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-s4ahtPUulJ .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-s4ahtPUulJ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s4ahtPUulJ .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-s4ahtPUulJ .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-s4ahtPUulJ .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-s4ahtPUulJ .card .card-header a.panel-title .toggle-icon:before,
.cid-s4ahtPUulJ .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-s4ahtPUulJ .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-s4ahtPUulJ .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-s4ahtPUulJ .card .panel-body {
  padding: 14px 20px;
}
.cid-s4ahtPUulJ .card .panel-body p {
  color: #61728a;
  line-height: 1.5;
}
.cid-s4ahtPUulJ .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-s4eO69Nd31 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s4eO69Nd31 .mbr-section-title {
  color: #06182d;
}
.cid-s4eO69Nd31 .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-s4eO69Nd31 .mbr-section-subtitle {
  color: #06182d;
}
.cid-s4eO69Nd31 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s4eO69Nd31 .mbr-section-text {
  color: #999999;
}
.cid-s4eO69Nd31 .nav-tabs .nav-item.open .nav-link:focus,
.cid-s4eO69Nd31 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-s4eO69Nd31 .nav-tabs {
  flex-wrap: wrap;
  flex-direction: column;
  border-bottom: 1px solid #f4f6f9;
}
.cid-s4eO69Nd31 .nav-tabs .nav-item {
  margin-right: 4px;
}
.cid-s4eO69Nd31 .nav-tabs .nav-link {
  color: #06182d;
  font-style: normal;
  font-weight: 300;
  transition: all .5s;
  border: none;
  border-radius: 0 !important;
  background-color: #f4f6f9;
  padding: 1rem 2.2rem;
}
.cid-s4eO69Nd31 .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ff513c;
}
.cid-s4eO69Nd31 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #ff513c;
}
.cid-s4eO69Nd31 P {
  color: #879a9f;
}
@media (max-width: 576px) {
  .cid-s4eO69Nd31 .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-s4eO69Nd31 .mbr-text,
  .cid-s4eO69Nd31 .nav-link {
    text-align: center;
  }
}
.cid-s4eO69Nd31 .img-wrap img {
  width: 100%;
}
.cid-s4eO69Nd31 .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-s4eO69Nd31 .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-s4eO69Nd31 .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-s4eO69Nd31 .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-s4eO69Nd31 .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-s4eO69Nd31 .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-s4eO69Nd31 .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-s4eO69Nd31 .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-s4eO69Nd31 .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-s4eO69Nd31 .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-s4eO69Nd31 .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-s4eO69Nd31 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s4eO69Nd31 .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-s4eO69Nd31 .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-s4eO69Nd31 .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-s4eO69Nd31 .card .card-header a.panel-title .toggle-icon:before,
.cid-s4eO69Nd31 .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-s4eO69Nd31 .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-s4eO69Nd31 .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-s4eO69Nd31 .card .panel-body {
  padding: 14px 20px;
}
.cid-s4eO69Nd31 .card .panel-body p {
  color: #61728a;
  line-height: 1.5;
}
.cid-s4eO69Nd31 .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-s4aleVYG2Z {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #06182d;
}
.cid-s4aleVYG2Z .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-s4aleVYG2Z .copyright {
    margin-bottom: 1rem;
  }
}
.cid-s4aleVYG2Z .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-s4aleVYG2Z .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-s4aleVYG2Z .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-s4aleVYG2Z .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-s4aleVYG2Z .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-s4aleVYG2Z .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-s4aleVYG2Z .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-s4aleVYG2Z .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-s4aleVYG2Z .text-wrap .icons-wrap::after {
    display: none;
  }
}
