body {
  font-family: Dosis;
}
.display-1 {
  font-family: 'Dosis', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #be1e2d !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #be1e2d !important;
  border-color: #be1e2d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #73121b !important;
  border-color: #73121b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #73121b !important;
  border-color: #73121b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #236895 !important;
  border-color: #236895 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #236895 !important;
  border-color: #236895 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a82b00 !important;
  border-color: #a82b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a82b00 !important;
  border-color: #a82b00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #1e9a5e !important;
  border-color: #1e9a5e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1e9a5e !important;
  border-color: #1e9a5e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #969696 !important;
  border-color: #969696 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #969696 !important;
  border-color: #969696 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #191919 !important;
  border-color: #191919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #191919 !important;
  border-color: #191919 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #be1e2d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #73121b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #be1e2d !important;
  border-color: #be1e2d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3e97d1;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #236895 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4100;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a82b00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #36d88a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1e9a5e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c1c1c1;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #969696 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #444444;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #191919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #be1e2d !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #661018 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1b8d56 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #992700 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #be1e2d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-gallery-filter li.active .btn {
  background-color: #be1e2d;
  border-color: #be1e2d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #be1e2d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e9737e;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #be1e2d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #be1e2d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #be1e2d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #be1e2d;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #be1e2d;
  border-bottom-color: #be1e2d;
}
.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: #be1e2d !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: #3e97d1 !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='%23be1e2d' %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-rzMrgNeUFf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-rzMrgNeUFf .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rzMrgNeUFf .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-rzMrgNeUFf .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rzMrgNeUFf .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-rzMrgNeUFf .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzMrgNeUFf .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-rzMrgNeUFf .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-rzMrgNeUFf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzMrgNeUFf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rzMrgNeUFf .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-rzMrgNeUFf .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-rzMrgNeUFf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-rzMrgNeUFf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rzMrgNeUFf .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-rzMrgNeUFf .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-rzMrgNeUFf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzMrgNeUFf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-rzMrgNeUFf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzMrgNeUFf .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rzMrgNeUFf .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rzMrgNeUFf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzMrgNeUFf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzMrgNeUFf .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzMrgNeUFf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzMrgNeUFf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzMrgNeUFf .dropdown-item.active,
.cid-rzMrgNeUFf .dropdown-item:active {
  background-color: transparent;
}
.cid-rzMrgNeUFf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzMrgNeUFf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzMrgNeUFf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzMrgNeUFf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rzMrgNeUFf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-rzMrgNeUFf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzMrgNeUFf ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rzMrgNeUFf .navbar-buttons {
  text-align: center;
}
.cid-rzMrgNeUFf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzMrgNeUFf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMrgNeUFf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzMrgNeUFf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzMrgNeUFf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMrgNeUFf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzMrgNeUFf a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-rzMrgNeUFf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzMrgNeUFf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-rzMrgNeUFf .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-rzMrgNeUFf .nav-link:hover,
.cid-rzMrgNeUFf .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-rzMt37x8iA {
  background-image: url("../../../assets/images/hero2-2000x1125.jpg");
}
.cid-rzMt37x8iA .mbr-text,
.cid-rzMt37x8iA .typed-text,
.cid-rzMt37x8iA .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rzMt37x8iA .btn {
  margin-left: 4px !important;
}
.cid-rzMt37x8iA .animated-element {
  color: #ffbc00;
}
.cid-rzMt37x8iA .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uLdBJIqYsy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #be1e2d;
}
@media (max-width: 991px) {
  .cid-uLdBJIqYsy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLdBJIqYsy .row {
  flex-direction: row-reverse;
}
.cid-uLdBJIqYsy img {
  width: 100%;
}
.cid-uKQi49u7OX {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uKQi49u7OX .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uKQi49u7OX .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uKQi49u7OX .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKQi49u7OX .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uKQi49u7OX .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #be1e2d;
}
.cid-rzMrbJWA9w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzMrbJWA9w .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rzMrbJWA9w .photo-split {
  padding: 0;
}
.cid-rzMrbJWA9w .photo-split img {
  width: 100%;
}
.cid-rzMrbJWA9w .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-rzMrbJWA9w .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rzMrbJWA9w .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-rzMrbJWA9w .wrap-block {
  padding: 3rem 3rem;
}
.cid-rzMrbJWA9w .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-rzMrbJWA9w .wrap-block ul li {
  display: inline-block;
}
.cid-rzMrbJWA9w .wrap-block ul li span {
  text-align: center;
}
.cid-rzMrbJWA9w .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-rzMrbJWA9w .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rzMrbJWA9w .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rzMrbJWA9w .mbr-list,
.cid-rzMrbJWA9w .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-rzMrbJWA9w .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-rzMrbJWA9w .mbr-section-title,
  .cid-rzMrbJWA9w .mbr-section-subtitle,
  .cid-rzMrbJWA9w .mbr-text {
    text-align: center !important;
  }
  .cid-rzMrbJWA9w .social-list {
    text-align: center !important;
  }
}
.cid-rzMr96oZs2 {
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-rzMr96oZs2 .stats-item:hover span {
  color: #be1e2d;
}
.cid-rzMr96oZs2 .stats-item {
  padding: 80px 20px;
}
.cid-rzMr96oZs2 .stats-item:nth-child(2n) {
  background-color: #efefef;
}
.cid-rzMr96oZs2 .stats-item:nth-child(odd) {
  background-color: #cccccc;
}
.cid-rzMr96oZs2 .stats-item > span {
  transition: all 0.3s ease-in-out;
}
.cid-rzMr96oZs2 .mbr-iconfont {
  font-size: 50px;
}
.cid-rzMr96oZs2 .heading {
  margin: 20px 0;
  color: #232323;
}
.cid-rzMr96oZs2 .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 768px) and (min-width: 577px) {
  .cid-rzMr96oZs2 .stats-item:first-child {
    background: #efefef;
  }
  .cid-rzMr96oZs2 .stats-item:nth-child(2n) {
    background: #cccccc;
  }
  .cid-rzMr96oZs2 .stats-item:nth-child(0n+3) {
    background: #cccccc none repeat scroll 0 center;
  }
  .cid-rzMr96oZs2 .stats-item:last-child {
    background: #efefef;
  }
}
.cid-rzMr96oZs2 .counter {
  text-align: center;
  color: #000000;
}
.cid-rzMr96oZs2 .mbr-card-title,
.cid-rzMr96oZs2 .mbr-iconfont {
  text-align: center;
  color: #000000;
  display: block;
}
.cid-uLcRsQHIgJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLcRsQHIgJ .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uLcRsQHIgJ .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLcRsQHIgJ .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uLcRsQHIgJ .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uLcRsQHIgJ .row .row {
    flex-direction: column-reverse;
  }
  .cid-uLcRsQHIgJ .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLcRsQHIgJ .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uLcRsQHIgJ .card-subtitle {
  color: #be1e2d;
}
.cid-uLcRsQHIgJ .mbr-text {
  color: #555555;
}
.cid-rzMreKQP39 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rzMreKQP39 .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-rzMreKQP39 .form-group {
  margin-bottom: 1.3em;
}
.cid-rzMreKQP39 .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-rzMreKQP39 .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-rzMreKQP39 textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDFTkNH9n {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDFTkNH9n a:link {
  text-decoration: none;
}
.cid-uLDFTkNH9n .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDFTkNH9n .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDFTkNH9n .inner-text {
  line-height: 3em;
}
.cid-uLDFTkNH9n .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDFTkNH9n .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDFTkNH9n .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDFTkNH9n .content-text,
.cid-uLDFTkNH9n .inner-text {
  color: #c1c1c1;
}
.cid-uKmXzcbmvh {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uKmXzcbmvh .mbr-text,
.cid-uKmXzcbmvh .mbr-section-btn {
  color: #232323;
}
.cid-uKmXzcbmvh .card-title,
.cid-uKmXzcbmvh .card-box {
  color: #ffffff;
}
.cid-uKmXzcbmvh .mbr-text,
.cid-uKmXzcbmvh .link-wrap {
  color: #ffffff;
}
.cid-uKmMLfPGw5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uKmMLfPGw5 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uKmMLfPGw5 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uKmMLfPGw5 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uKmMLfPGw5 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uKmMLfPGw5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKmMLfPGw5 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uKmMLfPGw5 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uKmMLfPGw5 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uKmMLfPGw5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmMLfPGw5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uKmMLfPGw5 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uKmMLfPGw5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmMLfPGw5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmMLfPGw5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKmMLfPGw5 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uKmMLfPGw5 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uKmMLfPGw5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKmMLfPGw5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uKmMLfPGw5 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uKmMLfPGw5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmMLfPGw5 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uKmMLfPGw5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmMLfPGw5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmMLfPGw5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKmMLfPGw5 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uKmMLfPGw5 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uKmMLfPGw5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKmMLfPGw5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmMLfPGw5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uKmMLfPGw5 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uKmMLfPGw5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKmMLfPGw5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uKmMLfPGw5 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uKmMLfPGw5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKmMLfPGw5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKmMLfPGw5 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKmMLfPGw5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKmMLfPGw5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmMLfPGw5 .dropdown-item.active,
.cid-uKmMLfPGw5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmMLfPGw5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmMLfPGw5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmMLfPGw5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmMLfPGw5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uKmMLfPGw5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uKmMLfPGw5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmMLfPGw5 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uKmMLfPGw5 .navbar-buttons {
  text-align: center;
}
.cid-uKmMLfPGw5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKmMLfPGw5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKmMLfPGw5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKmMLfPGw5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKmMLfPGw5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKmMLfPGw5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKmMLfPGw5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKmMLfPGw5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKmMLfPGw5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKmMLfPGw5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKmMLfPGw5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKmMLfPGw5 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uKmMLfPGw5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKmMLfPGw5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uKmMLfPGw5 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uKmMLfPGw5 .nav-link:hover,
.cid-uKmMLfPGw5 .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uKmUubmvJE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKmUubmvJE h3,
.cid-uKmUubmvJE h4,
.cid-uKmUubmvJE h5,
.cid-uKmUubmvJE h6,
.cid-uKmUubmvJE p {
  margin: 0;
}
.cid-uKmUubmvJE .section-head {
  margin-bottom: 2.5rem;
}
.cid-uKmUubmvJE .mbr-section-subtitle {
  margin-top: 0.5rem;
}
.cid-uKmUubmvJE .nav-tabs .nav-item.open .nav-link:focus,
.cid-uKmUubmvJE .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uKmUubmvJE .nav-tabs {
  flex-wrap: nowrap;
  border-bottom: 1px solid #353535;
}
.cid-uKmUubmvJE .nav-item {
  width: 100%;
  text-align: center;
}
.cid-uKmUubmvJE .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0 !important;
}
.cid-uKmUubmvJE .nav-tabs .nav-link:not(.active) {
  color: #353535;
}
.cid-uKmUubmvJE .nav-link,
.cid-uKmUubmvJE .nav-link.active {
  padding: 0 10px 18px;
  background-color: transparent;
}
.cid-uKmUubmvJE .nav-tabs .nav-link.active {
  color: #be1e2d;
  border-bottom: 1px solid #be1e2d;
}
.cid-uKmUubmvJE .panel-body,
.cid-uKmUubmvJE .card-header {
  padding: 3rem 0;
  display: flex;
}
@media (max-width: 991px) {
  .cid-uKmUubmvJE .panel-body,
  .cid-uKmUubmvJE .card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.cid-uKmUubmvJE .image-wrap {
  width: 490px;
  margin-right: 3rem;
  flex-shrink: 0;
}
.cid-uKmUubmvJE .image-wrap img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .cid-uKmUubmvJE .image-wrap {
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 521px) {
  .cid-uKmUubmvJE .image-wrap {
    width: 100%;
  }
}
.cid-uKmUubmvJE .panel-title {
  color: #be1e2d;
  margin-bottom: 0.6rem;
}
.cid-uKmUubmvJE .panel-subtitle {
  color: #353535;
}
.cid-uKmUubmvJE .panel-text {
  margin-top: 1.5rem;
}
.cid-uKsukvOSbG {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLCGTrCtTP {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLCGTrCtTP .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uLCGTrCtTP .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uLCGTrCtTP .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uLCGTrCtTP .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uLCGTrCtTP .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uLCGTrCtTP .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uLCGTrCtTP .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uLCGTrCtTP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKmMLhmX44 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uKmMLhmX44 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uKmMLhmX44 .photo-split {
  padding: 0;
}
.cid-uKmMLhmX44 .photo-split img {
  width: 100%;
}
.cid-uKmMLhmX44 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-uKmMLhmX44 .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uKmMLhmX44 .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-uKmMLhmX44 .counter-container ul li:before {
  color: #be1e2d;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-uKmMLhmX44 .wrap-block {
  padding: 3rem 3rem;
}
.cid-uKmMLhmX44 .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uKmMLhmX44 .wrap-block ul li {
  display: inline-block;
}
.cid-uKmMLhmX44 .wrap-block ul li span {
  text-align: center;
}
.cid-uKmMLhmX44 .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-uKmMLhmX44 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uKmMLhmX44 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uKmMLhmX44 .mbr-list,
.cid-uKmMLhmX44 .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-uKmMLhmX44 .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uKmMLhmX44 .mbr-section-title,
  .cid-uKmMLhmX44 .mbr-section-subtitle,
  .cid-uKmMLhmX44 .mbr-text {
    text-align: center !important;
  }
  .cid-uKmMLhmX44 .social-list {
    text-align: center !important;
  }
}
.cid-uKmMLh74lt {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKmMLh74lt .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKmMLh74lt .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKmMLh74lt .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-uKmMLh74lt .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-uKmMLh74lt .process-icon,
.cid-uKmMLh74lt .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-uKmMLh74lt .wrapper,
.cid-uKmMLh74lt .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-uKmMLh74lt .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #444444;
  opacity: .4;
}
.cid-uKmMLh74lt .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-uKmMLh74lt .icon-container a {
  display: inherit;
}
.cid-uKmMLh74lt .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #be1e2d !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-uKmMLh74lt .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-uKmMLh74lt .icon-main:hover .icon-wrapper {
  background-color: #be1e2d !important;
}
.cid-uKmMLh74lt .icon-main:hover .icon-number {
  background-color: #444444 !important;
  color: #ffffff !important;
}
.cid-uKmMLh74lt .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-uKmMLh74lt .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-uKmMLh74lt .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-uKmMLh74lt .third-elem .wrapper:before {
    display: none;
  }
}
.cid-uKmMLh74lt .mbr-section-title {
  margin: 0;
}
.cid-uKmMLh74lt .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-uKmMLhC8LQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uKmMLhC8LQ .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uKmMLhC8LQ .form-group {
  margin-bottom: 1.3em;
}
.cid-uKmMLhC8LQ .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uKmMLhC8LQ .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uKmMLhC8LQ textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uKmMLhJzb2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uKmMLhJzb2 a:link {
  text-decoration: none;
}
.cid-uKmMLhJzb2 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uKmMLhJzb2 .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uKmMLhJzb2 .inner-text {
  line-height: 3em;
}
.cid-uKmMLhJzb2 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKmMLhJzb2 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uKmMLhJzb2 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uKmMLhJzb2 .content-text,
.cid-uKmMLhJzb2 .inner-text {
  color: #c1c1c1;
}
.cid-uKyDUQ78Aq {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uKyDUQ78Aq .mbr-text,
.cid-uKyDUQ78Aq .mbr-section-btn {
  color: #232323;
}
.cid-uKyDUQ78Aq .card-title,
.cid-uKyDUQ78Aq .card-box {
  color: #ffffff;
}
.cid-uKyDUQ78Aq .mbr-text,
.cid-uKyDUQ78Aq .link-wrap {
  color: #ffffff;
}
.cid-uKyDUQxeB5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uKyDUQxeB5 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uKyDUQxeB5 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uKyDUQxeB5 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uKyDUQxeB5 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uKyDUQxeB5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKyDUQxeB5 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uKyDUQxeB5 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uKyDUQxeB5 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uKyDUQxeB5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKyDUQxeB5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uKyDUQxeB5 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uKyDUQxeB5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKyDUQxeB5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKyDUQxeB5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKyDUQxeB5 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uKyDUQxeB5 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uKyDUQxeB5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKyDUQxeB5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uKyDUQxeB5 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uKyDUQxeB5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKyDUQxeB5 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uKyDUQxeB5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKyDUQxeB5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKyDUQxeB5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKyDUQxeB5 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uKyDUQxeB5 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uKyDUQxeB5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKyDUQxeB5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKyDUQxeB5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uKyDUQxeB5 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uKyDUQxeB5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKyDUQxeB5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uKyDUQxeB5 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uKyDUQxeB5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKyDUQxeB5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKyDUQxeB5 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKyDUQxeB5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKyDUQxeB5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKyDUQxeB5 .dropdown-item.active,
.cid-uKyDUQxeB5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKyDUQxeB5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKyDUQxeB5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKyDUQxeB5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKyDUQxeB5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uKyDUQxeB5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uKyDUQxeB5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKyDUQxeB5 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uKyDUQxeB5 .navbar-buttons {
  text-align: center;
}
.cid-uKyDUQxeB5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKyDUQxeB5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKyDUQxeB5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKyDUQxeB5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKyDUQxeB5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKyDUQxeB5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKyDUQxeB5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKyDUQxeB5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKyDUQxeB5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKyDUQxeB5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKyDUQxeB5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKyDUQxeB5 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uKyDUQxeB5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKyDUQxeB5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uKyDUQxeB5 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uKyDUQxeB5 .nav-link:hover,
.cid-uKyDUQxeB5 .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uKyEfvaQYG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uKyEfvaQYG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKyEfvaQYG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uKyEfvaQYG .text-wrapper {
    padding: 2rem;
  }
}
.cid-uKyGJ29nD7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uKyGJ29nD7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKyGJ29nD7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uKyGJ29nD7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uKyDUSAust {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uKyDUSAust .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKyDUSAust .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKyDUSAust .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-uKyDUSAust .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-uKyDUSAust .process-icon,
.cid-uKyDUSAust .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-uKyDUSAust .wrapper,
.cid-uKyDUSAust .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-uKyDUSAust .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #444444;
  opacity: .4;
}
.cid-uKyDUSAust .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-uKyDUSAust .icon-container a {
  display: inherit;
}
.cid-uKyDUSAust .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #be1e2d !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-uKyDUSAust .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-uKyDUSAust .icon-main:hover .icon-wrapper {
  background-color: #be1e2d !important;
}
.cid-uKyDUSAust .icon-main:hover .icon-number {
  background-color: #444444 !important;
  color: #ffffff !important;
}
.cid-uKyDUSAust .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-uKyDUSAust .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-uKyDUSAust .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-uKyDUSAust .third-elem .wrapper:before {
    display: none;
  }
}
.cid-uKyDUSAust .mbr-section-title {
  margin: 0;
}
.cid-uKyDUSAust .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-uKyKaHtyra {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uKyKaHtyra img,
.cid-uKyKaHtyra .item-img {
  width: 100%;
}
.cid-uKyKaHtyra .item:focus,
.cid-uKyKaHtyra span:focus {
  outline: none;
}
.cid-uKyKaHtyra .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uKyKaHtyra .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKyKaHtyra .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKyKaHtyra .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uKyKaHtyra .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKyKaHtyra .mbr-section-title {
  color: #232323;
}
.cid-uKyKaHtyra .mbr-text,
.cid-uKyKaHtyra .mbr-section-btn {
  text-align: left;
}
.cid-uKyKaHtyra .item-title {
  text-align: left;
}
.cid-uKyKaHtyra .item-subtitle {
  text-align: center;
}
.cid-uKyDUT20hs {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uKyDUT20hs .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uKyDUT20hs .form-group {
  margin-bottom: 1.3em;
}
.cid-uKyDUT20hs .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uKyDUT20hs .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uKyDUT20hs textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDFZIyVNU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDFZIyVNU a:link {
  text-decoration: none;
}
.cid-uLDFZIyVNU .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDFZIyVNU .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDFZIyVNU .inner-text {
  line-height: 3em;
}
.cid-uLDFZIyVNU .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDFZIyVNU .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDFZIyVNU .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDFZIyVNU .content-text,
.cid-uLDFZIyVNU .inner-text {
  color: #c1c1c1;
}
.cid-uKDnswQOeT {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uKDnswQOeT .mbr-text,
.cid-uKDnswQOeT .mbr-section-btn {
  color: #232323;
}
.cid-uKDnswQOeT .card-title,
.cid-uKDnswQOeT .card-box {
  color: #ffffff;
}
.cid-uKDnswQOeT .mbr-text,
.cid-uKDnswQOeT .link-wrap {
  color: #ffffff;
}
.cid-uKDnsxu6ch .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uKDnsxu6ch .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uKDnsxu6ch .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uKDnsxu6ch .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uKDnsxu6ch .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uKDnsxu6ch .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKDnsxu6ch .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uKDnsxu6ch .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uKDnsxu6ch .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uKDnsxu6ch .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKDnsxu6ch .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uKDnsxu6ch .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uKDnsxu6ch .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKDnsxu6ch .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKDnsxu6ch .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKDnsxu6ch .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uKDnsxu6ch .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uKDnsxu6ch .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKDnsxu6ch .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uKDnsxu6ch .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uKDnsxu6ch .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKDnsxu6ch .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uKDnsxu6ch .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKDnsxu6ch .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKDnsxu6ch .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKDnsxu6ch .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uKDnsxu6ch .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uKDnsxu6ch .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKDnsxu6ch .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKDnsxu6ch .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uKDnsxu6ch .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uKDnsxu6ch .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKDnsxu6ch .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uKDnsxu6ch .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uKDnsxu6ch .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKDnsxu6ch .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKDnsxu6ch .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKDnsxu6ch .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKDnsxu6ch .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKDnsxu6ch .dropdown-item.active,
.cid-uKDnsxu6ch .dropdown-item:active {
  background-color: transparent;
}
.cid-uKDnsxu6ch .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKDnsxu6ch .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKDnsxu6ch .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKDnsxu6ch .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uKDnsxu6ch .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uKDnsxu6ch .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKDnsxu6ch ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uKDnsxu6ch .navbar-buttons {
  text-align: center;
}
.cid-uKDnsxu6ch button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKDnsxu6ch button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKDnsxu6ch button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKDnsxu6ch button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKDnsxu6ch button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKDnsxu6ch button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKDnsxu6ch nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKDnsxu6ch nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKDnsxu6ch nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKDnsxu6ch nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKDnsxu6ch .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKDnsxu6ch a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uKDnsxu6ch .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKDnsxu6ch .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uKDnsxu6ch .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uKDnsxu6ch .nav-link:hover,
.cid-uKDnsxu6ch .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uKJGTQzQ4p {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKJtaBsSmS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uKJtaBsSmS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKJtaBsSmS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uKJtaBsSmS .text-wrapper {
    padding: 2rem;
  }
}
.cid-uKJxuILbC7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #353535;
}
.cid-uKJxuILbC7 .line {
  background-color: #be1e2d;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uKJxuILbC7 .mbr-text {
  color: #ffffff;
}
.cid-uKJvzbwqAJ {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uKJvzbwqAJ .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uKJvzbwqAJ .mbr-section-title,
.cid-uKJvzbwqAJ .mbr-section-subtitle {
  text-align: center;
}
.cid-uKJvzbwqAJ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uKJvzbwqAJ .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uKJvzbwqAJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uKJvzbwqAJ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uKJvzbwqAJ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKJvzbwqAJ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uLp5bJherA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-uLp5bJherA .container {
    max-width: 1400px;
  }
}
.cid-uLp5bJherA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #be1e2d;
  margin-bottom: 2rem;
}
.cid-uLp5bJherA .card-wrapper {
  margin-top: 3rem;
}
.cid-uLp5bJherA .row {
  justify-content: center;
}
.cid-uLp5bJherA .card-text {
  text-align: center;
}
.cid-uLp5wsGBtM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-uLp5wsGBtM .container {
    max-width: 1400px;
  }
}
.cid-uLp5wsGBtM .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #be1e2d;
  margin-bottom: 2rem;
}
.cid-uLp5wsGBtM .card-wrapper {
  margin-top: 3rem;
}
.cid-uLp5wsGBtM .row {
  justify-content: center;
}
.cid-uLp61QYnqG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-uLp61QYnqG .container {
    max-width: 1400px;
  }
}
.cid-uLp61QYnqG .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #be1e2d;
  margin-bottom: 2rem;
}
.cid-uLp61QYnqG .card-wrapper {
  margin-top: 3rem;
}
.cid-uLp61QYnqG .row {
  justify-content: center;
}
.cid-uKJwKTRKr6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #be1e2d;
}
.cid-uKJwKTRKr6 .mbr-text {
  color: #ffffff;
}
.cid-uKJwKTRKr6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uKEAi15GOl {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uKEAdf1kIY {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uKEAdf1kIY .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uKEAdf1kIY .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uKEAdf1kIY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKEAdf1kIY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #be1e2d;
  transition: all 0.3s;
}
.cid-uKEAdf1kIY .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #be1e2d;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uKEAdf1kIY .social-row .soc-item:hover {
  background-color: #be1e2d;
}
.cid-uKEAdf1kIY .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKEAdf1kIY .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uKEAdf1kIY .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKEAdf1kIY .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uKEAdf1kIY .card-subtitle {
  color: #be1e2d;
}
.cid-uKJHZXwwi8 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uKJHZXwwi8 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uKJHZXwwi8 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uKJHZXwwi8 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #be1e2d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #be1e2d;
  color: #be1e2d;
  content: "✓";
}
.cid-uKJOjgPOVR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKJNWX5fCM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uKJNWX5fCM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKJNWX5fCM .row {
  flex-direction: row-reverse;
}
.cid-uKJNWX5fCM img {
  width: 100%;
}
.cid-uKJOE65FYM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKJzwVrodo {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKJzwVrodo img {
  width: 120px;
  margin: auto;
}
.cid-uKJzwVrodo .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uKJzwVrodo .card {
    max-width: 12.5%;
  }
}
.cid-uLcRp9sMdp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLcRp9sMdp .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uLcRp9sMdp .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLcRp9sMdp .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uLcRp9sMdp .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uLcRp9sMdp .row .row {
    flex-direction: column-reverse;
  }
  .cid-uLcRp9sMdp .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLcRp9sMdp .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uLcRp9sMdp .card-subtitle {
  color: #be1e2d;
}
.cid-uLcRp9sMdp .mbr-text {
  color: #555555;
}
.cid-uKDnsyKpIr {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uKDnsyKpIr .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uKDnsyKpIr .form-group {
  margin-bottom: 1.3em;
}
.cid-uKDnsyKpIr .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uKDnsyKpIr .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uKDnsyKpIr textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDG4SyrsD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDG4SyrsD a:link {
  text-decoration: none;
}
.cid-uLDG4SyrsD .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDG4SyrsD .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDG4SyrsD .inner-text {
  line-height: 3em;
}
.cid-uLDG4SyrsD .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDG4SyrsD .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDG4SyrsD .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDG4SyrsD .content-text,
.cid-uLDG4SyrsD .inner-text {
  color: #c1c1c1;
}
.cid-uKEx7C3rDT {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uKEx7C3rDT .mbr-text,
.cid-uKEx7C3rDT .mbr-section-btn {
  color: #232323;
}
.cid-uKEx7C3rDT .card-title,
.cid-uKEx7C3rDT .card-box {
  color: #ffffff;
}
.cid-uKEx7C3rDT .mbr-text,
.cid-uKEx7C3rDT .link-wrap {
  color: #ffffff;
}
.cid-uKEx7CwRY7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uKEx7CwRY7 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uKEx7CwRY7 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uKEx7CwRY7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uKEx7CwRY7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uKEx7CwRY7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKEx7CwRY7 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uKEx7CwRY7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uKEx7CwRY7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uKEx7CwRY7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKEx7CwRY7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uKEx7CwRY7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uKEx7CwRY7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEx7CwRY7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEx7CwRY7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKEx7CwRY7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uKEx7CwRY7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uKEx7CwRY7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEx7CwRY7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uKEx7CwRY7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uKEx7CwRY7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEx7CwRY7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uKEx7CwRY7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEx7CwRY7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEx7CwRY7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKEx7CwRY7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uKEx7CwRY7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uKEx7CwRY7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKEx7CwRY7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEx7CwRY7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uKEx7CwRY7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uKEx7CwRY7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKEx7CwRY7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uKEx7CwRY7 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uKEx7CwRY7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKEx7CwRY7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKEx7CwRY7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKEx7CwRY7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKEx7CwRY7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEx7CwRY7 .dropdown-item.active,
.cid-uKEx7CwRY7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEx7CwRY7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEx7CwRY7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEx7CwRY7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEx7CwRY7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uKEx7CwRY7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uKEx7CwRY7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKEx7CwRY7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uKEx7CwRY7 .navbar-buttons {
  text-align: center;
}
.cid-uKEx7CwRY7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKEx7CwRY7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKEx7CwRY7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKEx7CwRY7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEx7CwRY7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEx7CwRY7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKEx7CwRY7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEx7CwRY7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKEx7CwRY7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKEx7CwRY7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEx7CwRY7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKEx7CwRY7 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uKEx7CwRY7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKEx7CwRY7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uKEx7CwRY7 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uKEx7CwRY7 .nav-link:hover,
.cid-uKEx7CwRY7 .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uLda11Ol3g {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLdaCxMW9x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLdaCxMW9x .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uLdaCxMW9x .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uLdaCxMW9x .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uLdaCxMW9x .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uLdaCxMW9x .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #be1e2d;
}
.cid-uLdiHoNAdJ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uLdiHoNAdJ .row {
    flex-direction: column-reverse;
  }
  .cid-uLdiHoNAdJ .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLdiHoNAdJ .google-map {
  height: 100%;
  position: relative;
}
.cid-uLdiHoNAdJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLdiHoNAdJ .google-map [data-state-details] {
  color: #6b6763;
  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-uLdiHoNAdJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLdiHoNAdJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLdiHoNAdJ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uLdiHoNAdJ .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uLdiHoNAdJ .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uLdiHoNAdJ .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uLdiHoNAdJ .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uLdiHoNAdJ .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #be1e2d;
}
.cid-uLdiHoNAdJ P {
  color: #be1e2d;
}
.cid-uLdklWQzQ4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLdklWQzQ4 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLdklWQzQ4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLdklWQzQ4 .mbr-iconfont {
  font-size: 2rem;
  color: #be1e2d;
  padding-right: 1.5rem;
}
.cid-uLdklWQzQ4 .card-title {
  color: #000000;
}
.cid-uLdhmbB7P9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uLdhmbB7P9 .row {
    flex-direction: column-reverse;
  }
  .cid-uLdhmbB7P9 .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLdhmbB7P9 .google-map {
  height: 100%;
  position: relative;
}
.cid-uLdhmbB7P9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLdhmbB7P9 .google-map [data-state-details] {
  color: #6b6763;
  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-uLdhmbB7P9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLdhmbB7P9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLdhmbB7P9 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uLdhmbB7P9 .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uLdhmbB7P9 .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uLdhmbB7P9 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uLdhmbB7P9 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uLdhmbB7P9 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #be1e2d;
}
.cid-uLdhmbB7P9 P {
  color: #be1e2d;
}
.cid-uLdjfW7Ru4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLdjfW7Ru4 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLdjfW7Ru4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLdjfW7Ru4 .mbr-iconfont {
  font-size: 2rem;
  color: #be1e2d;
  padding-right: 1.5rem;
}
.cid-uLdjfW7Ru4 .card-title {
  color: #000000;
}
.cid-uLdlvJ92wQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLdkxS6DNc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLdkxS6DNc .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLdkxS6DNc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLdkxS6DNc .mbr-iconfont {
  font-size: 2rem;
  color: #be1e2d;
  padding-right: 1.5rem;
}
.cid-uLdkxS6DNc .card-title {
  color: #000000;
}
.cid-uLdl9Bkh3T {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLdl9Bkh3T .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLdl9Bkh3T .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLdl9Bkh3T .mbr-iconfont {
  font-size: 2rem;
  color: #be1e2d;
  padding-right: 1.5rem;
}
.cid-uLdl9Bkh3T .card-title {
  color: #000000;
}
.cid-uLdm1Hcmkv {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-uLdm1Hcmkv .container {
    max-width: 1400px;
  }
}
.cid-uLdm1Hcmkv .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #be1e2d;
  margin-bottom: 2rem;
}
.cid-uLdm1Hcmkv .card-wrapper {
  margin-top: 3rem;
}
.cid-uLdm1Hcmkv .row {
  justify-content: center;
}
.cid-uLdnrnm5PU {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #be1e2d;
}
.cid-uLdnrnm5PU .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLdnrnm5PU .mbr-iconfont {
  align-items: center;
}
.cid-uLdnrnm5PU .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uLdnrnm5PU .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uLdnrnm5PU .icon-transition span:hover {
  background-color: #000000;
  color: #f3f7f9;
}
.cid-uLdnrnm5PU .social-media {
  padding: 0;
}
.cid-uLdnrnm5PU .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uLdnrnm5PU .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLdnrnm5PU .mbr-list,
.cid-uLdnrnm5PU .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uLdnrnm5PU .social-list {
    text-align: center !important;
  }
}
.cid-uLdnrnm5PU .mbr-section-title,
.cid-uLdnrnm5PU .social-list {
  color: #ffffff;
}
.cid-uLdo8xBvtL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLdo8xBvtL .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uLdo8xBvtL .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLdo8xBvtL .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uLdo8xBvtL .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uLdo8xBvtL .row .row {
    flex-direction: column-reverse;
  }
  .cid-uLdo8xBvtL .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLdo8xBvtL .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uLdo8xBvtL .card-subtitle {
  color: #be1e2d;
}
.cid-uLdo8xBvtL .mbr-text {
  color: #555555;
}
.cid-uKEx7DH8RY {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uKEx7DH8RY .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uKEx7DH8RY .form-group {
  margin-bottom: 1.3em;
}
.cid-uKEx7DH8RY .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uKEx7DH8RY .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uKEx7DH8RY textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDG8fqrkU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDG8fqrkU a:link {
  text-decoration: none;
}
.cid-uLDG8fqrkU .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDG8fqrkU .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDG8fqrkU .inner-text {
  line-height: 3em;
}
.cid-uLDG8fqrkU .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDG8fqrkU .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDG8fqrkU .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDG8fqrkU .content-text,
.cid-uLDG8fqrkU .inner-text {
  color: #c1c1c1;
}
.cid-uKExm51fBN {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uKExm51fBN .mbr-text,
.cid-uKExm51fBN .mbr-section-btn {
  color: #232323;
}
.cid-uKExm51fBN .card-title,
.cid-uKExm51fBN .card-box {
  color: #ffffff;
}
.cid-uKExm51fBN .mbr-text,
.cid-uKExm51fBN .link-wrap {
  color: #ffffff;
}
.cid-uL2K3vYrl6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uL2K3vYrl6 .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uL2K3vYrl6 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uL2K3vYrl6 .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uL2K3vYrl6 .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uL2K3vYrl6 .row .row {
    flex-direction: column-reverse;
  }
  .cid-uL2K3vYrl6 .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uL2K3vYrl6 .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uL2K3vYrl6 .card-subtitle {
  color: #be1e2d;
}
.cid-uL2K3vYrl6 .mbr-text {
  color: #555555;
}
.cid-uKExm5mY8s .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uKExm5mY8s .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uKExm5mY8s .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uKExm5mY8s .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uKExm5mY8s .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uKExm5mY8s .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKExm5mY8s .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uKExm5mY8s .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uKExm5mY8s .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uKExm5mY8s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKExm5mY8s .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uKExm5mY8s .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uKExm5mY8s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKExm5mY8s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKExm5mY8s .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKExm5mY8s .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uKExm5mY8s .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uKExm5mY8s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKExm5mY8s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uKExm5mY8s .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uKExm5mY8s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKExm5mY8s .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uKExm5mY8s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKExm5mY8s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKExm5mY8s .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKExm5mY8s .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uKExm5mY8s .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uKExm5mY8s .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKExm5mY8s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKExm5mY8s .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uKExm5mY8s .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uKExm5mY8s .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKExm5mY8s .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uKExm5mY8s .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uKExm5mY8s .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKExm5mY8s .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKExm5mY8s .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKExm5mY8s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKExm5mY8s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKExm5mY8s .dropdown-item.active,
.cid-uKExm5mY8s .dropdown-item:active {
  background-color: transparent;
}
.cid-uKExm5mY8s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKExm5mY8s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKExm5mY8s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKExm5mY8s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uKExm5mY8s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uKExm5mY8s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKExm5mY8s ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uKExm5mY8s .navbar-buttons {
  text-align: center;
}
.cid-uKExm5mY8s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKExm5mY8s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKExm5mY8s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKExm5mY8s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKExm5mY8s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKExm5mY8s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKExm5mY8s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKExm5mY8s nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKExm5mY8s nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKExm5mY8s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKExm5mY8s .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKExm5mY8s a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uKExm5mY8s .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKExm5mY8s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uKExm5mY8s .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uKExm5mY8s .nav-link:hover,
.cid-uKExm5mY8s .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uKExm6hznz {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uKExm6hznz .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uKExm6hznz .form-group {
  margin-bottom: 1.3em;
}
.cid-uKExm6hznz .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uKExm6hznz .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uKExm6hznz textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDGeP2F7x {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGeP2F7x a:link {
  text-decoration: none;
}
.cid-uLDGeP2F7x .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGeP2F7x .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGeP2F7x .inner-text {
  line-height: 3em;
}
.cid-uLDGeP2F7x .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGeP2F7x .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGeP2F7x .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGeP2F7x .content-text,
.cid-uLDGeP2F7x .inner-text {
  color: #c1c1c1;
}
.cid-uKExp03qpb {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uKExp03qpb .mbr-text,
.cid-uKExp03qpb .mbr-section-btn {
  color: #232323;
}
.cid-uKExp03qpb .card-title,
.cid-uKExp03qpb .card-box {
  color: #ffffff;
}
.cid-uKExp03qpb .mbr-text,
.cid-uKExp03qpb .link-wrap {
  color: #ffffff;
}
.cid-uLcTiWXEVx {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLcTiWXEVx .mbr-section-subtitle {
  color: #be1e2d;
}
.cid-uKExp0MUzZ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKExp0MUzZ .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKExp0MUzZ .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKExp0MUzZ .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-uKExp0MUzZ .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-uKExp0MUzZ .process-icon,
.cid-uKExp0MUzZ .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-uKExp0MUzZ .wrapper,
.cid-uKExp0MUzZ .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-uKExp0MUzZ .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #444444;
  opacity: .4;
}
.cid-uKExp0MUzZ .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-uKExp0MUzZ .icon-container a {
  display: inherit;
}
.cid-uKExp0MUzZ .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #be1e2d !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-uKExp0MUzZ .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-uKExp0MUzZ .icon-main:hover .icon-wrapper {
  background-color: #be1e2d !important;
}
.cid-uKExp0MUzZ .icon-main:hover .icon-number {
  background-color: #444444 !important;
  color: #ffffff !important;
}
.cid-uKExp0MUzZ .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-uKExp0MUzZ .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-uKExp0MUzZ .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-uKExp0MUzZ .third-elem .wrapper:before {
    display: none;
  }
}
.cid-uKExp0MUzZ .mbr-section-title {
  margin: 0;
}
.cid-uKExp0MUzZ .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-uKExp0pKU6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uKExp0pKU6 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uKExp0pKU6 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uKExp0pKU6 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uKExp0pKU6 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uKExp0pKU6 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKExp0pKU6 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uKExp0pKU6 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uKExp0pKU6 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uKExp0pKU6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKExp0pKU6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uKExp0pKU6 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uKExp0pKU6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKExp0pKU6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKExp0pKU6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKExp0pKU6 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uKExp0pKU6 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uKExp0pKU6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKExp0pKU6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uKExp0pKU6 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uKExp0pKU6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKExp0pKU6 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uKExp0pKU6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKExp0pKU6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKExp0pKU6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKExp0pKU6 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uKExp0pKU6 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uKExp0pKU6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKExp0pKU6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKExp0pKU6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uKExp0pKU6 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uKExp0pKU6 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKExp0pKU6 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uKExp0pKU6 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uKExp0pKU6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKExp0pKU6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKExp0pKU6 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKExp0pKU6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKExp0pKU6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKExp0pKU6 .dropdown-item.active,
.cid-uKExp0pKU6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKExp0pKU6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKExp0pKU6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKExp0pKU6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKExp0pKU6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uKExp0pKU6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uKExp0pKU6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKExp0pKU6 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uKExp0pKU6 .navbar-buttons {
  text-align: center;
}
.cid-uKExp0pKU6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKExp0pKU6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKExp0pKU6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKExp0pKU6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKExp0pKU6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKExp0pKU6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKExp0pKU6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKExp0pKU6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKExp0pKU6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKExp0pKU6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKExp0pKU6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKExp0pKU6 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uKExp0pKU6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKExp0pKU6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uKExp0pKU6 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uKExp0pKU6 .nav-link:hover,
.cid-uKExp0pKU6 .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uKQkm5llLs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-uKQkm5llLs .mbr-text,
.cid-uKQkm5llLs .mbr-section-btn {
  color: #232323;
}
.cid-uKQkm5llLs .card-title,
.cid-uKQkm5llLs .card-box {
  color: #ffffff;
}
.cid-uKQkm5llLs .mbr-text,
.cid-uKQkm5llLs .link-wrap {
  color: #ffffff;
}
.cid-uKQjRgg00G {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKQjRgg00G .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #be1e2d;
  margin-left: 1rem;
}
.cid-uKQjRgg00G .panel-group {
  border: none;
}
.cid-uKQjRgg00G .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uKQjRgg00G .panel-body,
.cid-uKQjRgg00G .card-header {
  padding: 1rem 0;
}
.cid-uKQjRgg00G .panel-title-edit {
  color: #000000;
}
.cid-uKQjRgg00G .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uKQr0BktOE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKQr0BktOE .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #be1e2d;
  margin-left: 1rem;
}
.cid-uKQr0BktOE .panel-group {
  border: none;
}
.cid-uKQr0BktOE .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uKQr0BktOE .panel-body,
.cid-uKQr0BktOE .card-header {
  padding: 1rem 0;
}
.cid-uKQr0BktOE .panel-title-edit {
  color: #000000;
}
.cid-uKQr0BktOE .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uLEYRcSAjI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLEYRcSAjI img,
.cid-uLEYRcSAjI .item-img {
  width: 100%;
}
.cid-uLEYRcSAjI .item:focus,
.cid-uLEYRcSAjI span:focus {
  outline: none;
}
.cid-uLEYRcSAjI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLEYRcSAjI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLEYRcSAjI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLEYRcSAjI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLEYRcSAjI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLEYRcSAjI .mbr-section-title {
  color: #232323;
}
.cid-uLEYRcSAjI .mbr-text,
.cid-uLEYRcSAjI .mbr-section-btn {
  text-align: left;
}
.cid-uLEYRcSAjI .item-title {
  text-align: left;
}
.cid-uLEYRcSAjI .item-subtitle {
  text-align: center;
}
.cid-uLF9tidAiQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLF9tidAiQ .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uLF9tidAiQ .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLF9tidAiQ .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uLF9tidAiQ .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uLF9tidAiQ .row .row {
    flex-direction: column-reverse;
  }
  .cid-uLF9tidAiQ .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLF9tidAiQ .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uLF9tidAiQ .card-subtitle {
  color: #be1e2d;
}
.cid-uLF9tidAiQ .mbr-text {
  color: #555555;
}
.cid-uLEJB7Ufos {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uLEJB7Ufos .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLEJB7Ufos img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uLEJB7Ufos .text-wrapper {
    padding: 2rem;
  }
}
.cid-uKQpHYjSMI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #be1e2d;
}
.cid-uKQpHYjSMI .mbr-text {
  color: #ffffff;
}
.cid-uKQpHYjSMI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uKExp1k98a {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uKExp1k98a .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uKExp1k98a .form-group {
  margin-bottom: 1.3em;
}
.cid-uKExp1k98a .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uKExp1k98a .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uKExp1k98a textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDGMOMgyG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGMOMgyG a:link {
  text-decoration: none;
}
.cid-uLDGMOMgyG .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGMOMgyG .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGMOMgyG .inner-text {
  line-height: 3em;
}
.cid-uLDGMOMgyG .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGMOMgyG .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGMOMgyG .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGMOMgyG .content-text,
.cid-uLDGMOMgyG .inner-text {
  color: #c1c1c1;
}
.cid-uKKqykMcaQ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uKKqykMcaQ .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uKKqykMcaQ .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uKKqykMcaQ .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uKKqykMcaQ .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uKKqykMcaQ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKKqykMcaQ .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uKKqykMcaQ .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uKKqykMcaQ .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uKKqykMcaQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKKqykMcaQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uKKqykMcaQ .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uKKqykMcaQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKKqykMcaQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKKqykMcaQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKKqykMcaQ .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uKKqykMcaQ .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uKKqykMcaQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKKqykMcaQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uKKqykMcaQ .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uKKqykMcaQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKKqykMcaQ .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uKKqykMcaQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKKqykMcaQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKKqykMcaQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKKqykMcaQ .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uKKqykMcaQ .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uKKqykMcaQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKKqykMcaQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKKqykMcaQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uKKqykMcaQ .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uKKqykMcaQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKKqykMcaQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uKKqykMcaQ .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uKKqykMcaQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKKqykMcaQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKKqykMcaQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKKqykMcaQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKKqykMcaQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKKqykMcaQ .dropdown-item.active,
.cid-uKKqykMcaQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uKKqykMcaQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKKqykMcaQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKKqykMcaQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKKqykMcaQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKKqykMcaQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uKKqykMcaQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKKqykMcaQ ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uKKqykMcaQ .navbar-buttons {
  text-align: center;
}
.cid-uKKqykMcaQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKKqykMcaQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uKKqykMcaQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKKqykMcaQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKKqykMcaQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKKqykMcaQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKKqykMcaQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKKqykMcaQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKKqykMcaQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKKqykMcaQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKKqykMcaQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKKqykMcaQ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uKKqykMcaQ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKKqykMcaQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uKKqykMcaQ .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uKKqykMcaQ .nav-link:hover,
.cid-uKKqykMcaQ .dropdown-item:hover {
  color: #be1e2d !important;
}
.cid-uKJQBv72Ac {
  display: flex;
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/tools-41-2000x1114.png");
}
.cid-uKJQBv72Ac .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-uKJQBv72Ac .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uKJQBv72Ac {
    align-items: flex-end;
  }
  .cid-uKJQBv72Ac .row {
    justify-content: flex-start;
  }
  .cid-uKJQBv72Ac .content-wrap {
    width: 72%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uKJQBv72Ac .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uKJQBv72Ac {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uKJQBv72Ac .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uKJQBv72Ac .content-wrap {
    width: 100%;
  }
}
.cid-uKJQBv72Ac .mbr-section-title {
  color: #be1e2d;
}
.cid-uKKpOac5cT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
#custom-html-43 {
  /* Type valid CSS here */
}
#custom-html-43 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-43 p {
  font-size: 60px;
  color: #777;
}
.cid-uKQdKtV8rp {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKQdKtV8rp .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uKQdKtV8rp .card {
    margin-bottom: 2rem!important;
  }
  .cid-uKQdKtV8rp .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uKQdKtV8rp .link-wrap {
    align-items: center;
  }
}
.cid-uKQdKtV8rp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKQbJp4d1C {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKQbJp4d1C .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uKQbJp4d1C .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKQbJp4d1C .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uKQbJp4d1C .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uKQbJp4d1C .row .row {
    flex-direction: column-reverse;
  }
  .cid-uKQbJp4d1C .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uKQbJp4d1C .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKQbJp4d1C .card-subtitle {
  color: #0095ff;
}
.cid-uKQbJp4d1C .mbr-text {
  color: #555555;
}
#custom-html-41 {
  /* Type valid CSS here */
}
#custom-html-41 div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-41 p {
  font-size: 60px;
  color: #777;
}
.cid-uKQdvo42xP {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKQdvo42xP .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uKQdvo42xP .card {
    margin-bottom: 2rem!important;
  }
  .cid-uKQdvo42xP .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uKQdvo42xP .link-wrap {
    align-items: center;
  }
}
.cid-uKQdvo42xP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-40 {
  /* Type valid CSS here */
}
#custom-html-40 div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-40 p {
  font-size: 60px;
  color: #777;
}
.cid-uKQd3bX15P {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKQd3bX15P .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uKQd3bX15P .card {
    margin-bottom: 2rem!important;
  }
  .cid-uKQd3bX15P .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uKQd3bX15P .link-wrap {
    align-items: center;
  }
}
.cid-uKQd3bX15P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-3y {
  /* Type valid CSS here */
}
#custom-html-3y div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-3y p {
  font-size: 60px;
  color: #777;
}
.cid-uLFeNY0P7y {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLFeNY0P7y .mbr-section-subtitle {
  color: #be1e2d;
}
.cid-uLFbVMFLbG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLFbVMFLbG .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uLFbVMFLbG .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLFbVMFLbG .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uLFbVMFLbG .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uLFbVMFLbG .row .row {
    flex-direction: column-reverse;
  }
  .cid-uLFbVMFLbG .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLFbVMFLbG .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uLFbVMFLbG .card-subtitle {
  color: #be1e2d;
}
.cid-uLFbVMFLbG .mbr-text {
  color: #555555;
}
.cid-uKExM2qQng {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uKExM2qQng .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uKExM2qQng .form-group {
  margin-bottom: 1.3em;
}
.cid-uKExM2qQng .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uKExM2qQng .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uKExM2qQng textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDGTuEmOF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGTuEmOF a:link {
  text-decoration: none;
}
.cid-uLDGTuEmOF .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGTuEmOF .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGTuEmOF .inner-text {
  line-height: 3em;
}
.cid-uLDGTuEmOF .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGTuEmOF .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGTuEmOF .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGTuEmOF .content-text,
.cid-uLDGTuEmOF .inner-text {
  color: #c1c1c1;
}
.cid-uL5UwF7mio {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uL5UwF7mio .mbr-text,
.cid-uL5UwF7mio .mbr-section-btn {
  color: #232323;
}
.cid-uL5UwF7mio .card-title,
.cid-uL5UwF7mio .card-box {
  color: #ffffff;
}
.cid-uL5UwF7mio .mbr-text,
.cid-uL5UwF7mio .link-wrap {
  color: #ffffff;
}
.cid-uL5UE4rfmf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uL5UE4rfmf .mbr-section-subtitle {
  color: #be1e2d;
}
#custom-html-4j {
  /* Type valid CSS here */
}
#custom-html-4j div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4j p {
  font-size: 60px;
  color: #777;
}
.cid-uL5UwFwYfI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uL5UwFwYfI .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uL5UwFwYfI .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uL5UwFwYfI .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uL5UwFwYfI .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uL5UwFwYfI .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL5UwFwYfI .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uL5UwFwYfI .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uL5UwFwYfI .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uL5UwFwYfI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL5UwFwYfI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uL5UwFwYfI .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uL5UwFwYfI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL5UwFwYfI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL5UwFwYfI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uL5UwFwYfI .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uL5UwFwYfI .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uL5UwFwYfI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL5UwFwYfI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uL5UwFwYfI .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uL5UwFwYfI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL5UwFwYfI .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uL5UwFwYfI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL5UwFwYfI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL5UwFwYfI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uL5UwFwYfI .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uL5UwFwYfI .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uL5UwFwYfI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uL5UwFwYfI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uL5UwFwYfI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uL5UwFwYfI .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uL5UwFwYfI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uL5UwFwYfI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uL5UwFwYfI .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uL5UwFwYfI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uL5UwFwYfI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uL5UwFwYfI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uL5UwFwYfI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL5UwFwYfI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL5UwFwYfI .dropdown-item.active,
.cid-uL5UwFwYfI .dropdown-item:active {
  background-color: transparent;
}
.cid-uL5UwFwYfI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL5UwFwYfI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL5UwFwYfI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL5UwFwYfI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uL5UwFwYfI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uL5UwFwYfI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL5UwFwYfI ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uL5UwFwYfI .navbar-buttons {
  text-align: center;
}
.cid-uL5UwFwYfI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uL5UwFwYfI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uL5UwFwYfI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uL5UwFwYfI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uL5UwFwYfI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uL5UwFwYfI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uL5UwFwYfI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uL5UwFwYfI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uL5UwFwYfI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uL5UwFwYfI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uL5UwFwYfI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uL5UwFwYfI a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uL5UwFwYfI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uL5UwFwYfI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uL5UwFwYfI .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uL5UwFwYfI .nav-link:hover,
.cid-uL5UwFwYfI .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uL5UwFGKj5 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uL5UwFGKj5 .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uL5UwFGKj5 .form-group {
  margin-bottom: 1.3em;
}
.cid-uL5UwFGKj5 .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uL5UwFGKj5 .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uL5UwFGKj5 textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDGjfDyok {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGjfDyok a:link {
  text-decoration: none;
}
.cid-uLDGjfDyok .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGjfDyok .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGjfDyok .inner-text {
  line-height: 3em;
}
.cid-uLDGjfDyok .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGjfDyok .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGjfDyok .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGjfDyok .content-text,
.cid-uLDGjfDyok .inner-text {
  color: #c1c1c1;
}
.cid-uLcQnr9wYG {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uLcQnr9wYG .mbr-text,
.cid-uLcQnr9wYG .mbr-section-btn {
  color: #232323;
}
.cid-uLcQnr9wYG .card-title,
.cid-uLcQnr9wYG .card-box {
  color: #ffffff;
}
.cid-uLcQnr9wYG .mbr-text,
.cid-uLcQnr9wYG .link-wrap {
  color: #ffffff;
}
.cid-uLcQnrybwJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLcQnrybwJ .mbr-section-subtitle {
  color: #be1e2d;
}
.cid-uLcQnrItaY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uLcQnrItaY .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uLcQnrItaY .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uLcQnrItaY .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uLcQnrItaY .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uLcQnrItaY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLcQnrItaY .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uLcQnrItaY .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uLcQnrItaY .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uLcQnrItaY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLcQnrItaY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uLcQnrItaY .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uLcQnrItaY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLcQnrItaY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLcQnrItaY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLcQnrItaY .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uLcQnrItaY .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uLcQnrItaY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLcQnrItaY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uLcQnrItaY .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uLcQnrItaY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLcQnrItaY .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uLcQnrItaY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLcQnrItaY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLcQnrItaY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLcQnrItaY .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uLcQnrItaY .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uLcQnrItaY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLcQnrItaY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLcQnrItaY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uLcQnrItaY .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uLcQnrItaY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uLcQnrItaY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uLcQnrItaY .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uLcQnrItaY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLcQnrItaY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLcQnrItaY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLcQnrItaY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLcQnrItaY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLcQnrItaY .dropdown-item.active,
.cid-uLcQnrItaY .dropdown-item:active {
  background-color: transparent;
}
.cid-uLcQnrItaY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLcQnrItaY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLcQnrItaY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLcQnrItaY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uLcQnrItaY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uLcQnrItaY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLcQnrItaY ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uLcQnrItaY .navbar-buttons {
  text-align: center;
}
.cid-uLcQnrItaY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLcQnrItaY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLcQnrItaY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLcQnrItaY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLcQnrItaY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLcQnrItaY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLcQnrItaY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLcQnrItaY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLcQnrItaY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLcQnrItaY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLcQnrItaY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLcQnrItaY a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uLcQnrItaY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLcQnrItaY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uLcQnrItaY .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uLcQnrItaY .nav-link:hover,
.cid-uLcQnrItaY .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uLcQLISUp1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLcQLISUp1 .mbr-section-subtitle {
  color: #be1e2d;
}
.cid-uLcQnrVGX1 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uLcQnrVGX1 .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uLcQnrVGX1 .form-group {
  margin-bottom: 1.3em;
}
.cid-uLcQnrVGX1 .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uLcQnrVGX1 .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uLcQnrVGX1 textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDGmdUOVh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGmdUOVh a:link {
  text-decoration: none;
}
.cid-uLDGmdUOVh .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGmdUOVh .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGmdUOVh .inner-text {
  line-height: 3em;
}
.cid-uLDGmdUOVh .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGmdUOVh .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGmdUOVh .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGmdUOVh .content-text,
.cid-uLDGmdUOVh .inner-text {
  color: #c1c1c1;
}
.cid-uLcUyXX0Is {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uLcUyXX0Is .mbr-text,
.cid-uLcUyXX0Is .mbr-section-btn {
  color: #232323;
}
.cid-uLcUyXX0Is .card-title,
.cid-uLcUyXX0Is .card-box {
  color: #ffffff;
}
.cid-uLcUyXX0Is .mbr-text,
.cid-uLcUyXX0Is .link-wrap {
  color: #ffffff;
}
.cid-uLcUyYlwi9 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLcUyYlwi9 .mbr-section-subtitle {
  color: #be1e2d;
}
.cid-uLcW8CUUox {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uLcW8CUUox .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uLcW8CUUox .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uLcW8CUUox .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uLcW8CUUox .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #be1e2d;
  transition: all 0.3s;
}
.cid-uLcW8CUUox .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #be1e2d;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uLcW8CUUox .social-row .soc-item:hover {
  background-color: #be1e2d;
}
.cid-uLcW8CUUox .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uLcW8CUUox .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uLcW8CUUox .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uLcW8CUUox .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uLDGPZ15IO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGPZ15IO a:link {
  text-decoration: none;
}
.cid-uLDGPZ15IO .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGPZ15IO .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGPZ15IO .inner-text {
  line-height: 3em;
}
.cid-uLDGPZ15IO .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGPZ15IO .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGPZ15IO .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGPZ15IO .content-text,
.cid-uLDGPZ15IO .inner-text {
  color: #c1c1c1;
}
.cid-uLcUyYG11y .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uLcUyYG11y .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uLcUyYG11y .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uLcUyYG11y .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uLcUyYG11y .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uLcUyYG11y .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLcUyYG11y .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uLcUyYG11y .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uLcUyYG11y .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uLcUyYG11y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLcUyYG11y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uLcUyYG11y .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uLcUyYG11y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLcUyYG11y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLcUyYG11y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLcUyYG11y .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uLcUyYG11y .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uLcUyYG11y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLcUyYG11y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uLcUyYG11y .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uLcUyYG11y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLcUyYG11y .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uLcUyYG11y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLcUyYG11y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLcUyYG11y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLcUyYG11y .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uLcUyYG11y .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uLcUyYG11y .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLcUyYG11y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLcUyYG11y .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uLcUyYG11y .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uLcUyYG11y .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uLcUyYG11y .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uLcUyYG11y .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uLcUyYG11y .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLcUyYG11y .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLcUyYG11y .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLcUyYG11y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLcUyYG11y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLcUyYG11y .dropdown-item.active,
.cid-uLcUyYG11y .dropdown-item:active {
  background-color: transparent;
}
.cid-uLcUyYG11y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLcUyYG11y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLcUyYG11y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLcUyYG11y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uLcUyYG11y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uLcUyYG11y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLcUyYG11y ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uLcUyYG11y .navbar-buttons {
  text-align: center;
}
.cid-uLcUyYG11y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLcUyYG11y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLcUyYG11y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLcUyYG11y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLcUyYG11y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLcUyYG11y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLcUyYG11y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLcUyYG11y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLcUyYG11y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLcUyYG11y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLcUyYG11y .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLcUyYG11y a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uLcUyYG11y .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLcUyYG11y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uLcUyYG11y .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uLcUyYG11y .nav-link:hover,
.cid-uLcUyYG11y .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uLd5nTLCBF {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uLd5nTLCBF .mbr-text,
.cid-uLd5nTLCBF .mbr-section-btn {
  color: #232323;
}
.cid-uLd5nTLCBF .card-title,
.cid-uLd5nTLCBF .card-box {
  color: #ffffff;
}
.cid-uLd5nTLCBF .mbr-text,
.cid-uLd5nTLCBF .link-wrap {
  color: #ffffff;
}
.cid-uLd5nU5NTR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLd5nU5NTR .mbr-section-subtitle {
  color: #be1e2d;
}
.cid-uLd5nUbxu6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uLd5nUbxu6 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uLd5nUbxu6 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uLd5nUbxu6 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uLd5nUbxu6 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uLd5nUbxu6 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLd5nUbxu6 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uLd5nUbxu6 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uLd5nUbxu6 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uLd5nUbxu6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLd5nUbxu6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uLd5nUbxu6 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uLd5nUbxu6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLd5nUbxu6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLd5nUbxu6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLd5nUbxu6 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uLd5nUbxu6 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uLd5nUbxu6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLd5nUbxu6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uLd5nUbxu6 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uLd5nUbxu6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLd5nUbxu6 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uLd5nUbxu6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLd5nUbxu6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLd5nUbxu6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLd5nUbxu6 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uLd5nUbxu6 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uLd5nUbxu6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLd5nUbxu6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLd5nUbxu6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uLd5nUbxu6 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uLd5nUbxu6 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uLd5nUbxu6 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uLd5nUbxu6 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uLd5nUbxu6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLd5nUbxu6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLd5nUbxu6 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLd5nUbxu6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLd5nUbxu6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLd5nUbxu6 .dropdown-item.active,
.cid-uLd5nUbxu6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uLd5nUbxu6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLd5nUbxu6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLd5nUbxu6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLd5nUbxu6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uLd5nUbxu6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uLd5nUbxu6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLd5nUbxu6 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uLd5nUbxu6 .navbar-buttons {
  text-align: center;
}
.cid-uLd5nUbxu6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLd5nUbxu6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLd5nUbxu6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLd5nUbxu6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLd5nUbxu6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLd5nUbxu6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLd5nUbxu6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLd5nUbxu6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLd5nUbxu6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLd5nUbxu6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLd5nUbxu6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLd5nUbxu6 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uLd5nUbxu6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLd5nUbxu6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uLd5nUbxu6 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uLd5nUbxu6 .nav-link:hover,
.cid-uLd5nUbxu6 .dropdown-item:hover {
  color: #ffffff !important;
}
#custom-html-60 {
  /* Type valid CSS here */
}
#custom-html-60 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-60 p {
  font-size: 60px;
  color: #777;
}
.cid-uLDGruVwFB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGruVwFB a:link {
  text-decoration: none;
}
.cid-uLDGruVwFB .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGruVwFB .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGruVwFB .inner-text {
  line-height: 3em;
}
.cid-uLDGruVwFB .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGruVwFB .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGruVwFB .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGruVwFB .content-text,
.cid-uLDGruVwFB .inner-text {
  color: #c1c1c1;
}
.cid-uLpmvPwzdr .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uLpmvPwzdr .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uLpmvPwzdr .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uLpmvPwzdr .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uLpmvPwzdr .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uLpmvPwzdr .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLpmvPwzdr .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uLpmvPwzdr .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uLpmvPwzdr .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uLpmvPwzdr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLpmvPwzdr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uLpmvPwzdr .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uLpmvPwzdr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLpmvPwzdr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLpmvPwzdr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLpmvPwzdr .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uLpmvPwzdr .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uLpmvPwzdr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLpmvPwzdr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uLpmvPwzdr .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uLpmvPwzdr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLpmvPwzdr .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uLpmvPwzdr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLpmvPwzdr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLpmvPwzdr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLpmvPwzdr .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uLpmvPwzdr .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uLpmvPwzdr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLpmvPwzdr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLpmvPwzdr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uLpmvPwzdr .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uLpmvPwzdr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uLpmvPwzdr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uLpmvPwzdr .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uLpmvPwzdr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLpmvPwzdr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLpmvPwzdr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLpmvPwzdr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLpmvPwzdr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLpmvPwzdr .dropdown-item.active,
.cid-uLpmvPwzdr .dropdown-item:active {
  background-color: transparent;
}
.cid-uLpmvPwzdr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLpmvPwzdr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLpmvPwzdr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLpmvPwzdr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLpmvPwzdr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uLpmvPwzdr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLpmvPwzdr ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uLpmvPwzdr .navbar-buttons {
  text-align: center;
}
.cid-uLpmvPwzdr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLpmvPwzdr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uLpmvPwzdr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLpmvPwzdr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLpmvPwzdr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLpmvPwzdr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLpmvPwzdr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLpmvPwzdr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLpmvPwzdr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLpmvPwzdr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLpmvPwzdr .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLpmvPwzdr a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uLpmvPwzdr .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLpmvPwzdr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uLpmvPwzdr .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uLpmvPwzdr .nav-link:hover,
.cid-uLpmvPwzdr .dropdown-item:hover {
  color: #be1e2d !important;
}
.cid-uLpmvPWXGx {
  display: flex;
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/tools-41-2000x1114.png");
}
.cid-uLpmvPWXGx .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-uLpmvPWXGx .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uLpmvPWXGx {
    align-items: flex-end;
  }
  .cid-uLpmvPWXGx .row {
    justify-content: flex-start;
  }
  .cid-uLpmvPWXGx .content-wrap {
    width: 72%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLpmvPWXGx .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLpmvPWXGx {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLpmvPWXGx .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLpmvPWXGx .content-wrap {
    width: 100%;
  }
}
.cid-uLpmvPWXGx .mbr-section-title {
  color: #be1e2d;
}
.cid-uLpmvQ8Klm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLpmvQfOKg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLpmvQfOKg .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uLpmvQfOKg .card {
    margin-bottom: 2rem!important;
  }
  .cid-uLpmvQfOKg .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uLpmvQfOKg .link-wrap {
    align-items: center;
  }
}
.cid-uLpmvQfOKg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-67 {
  /* Type valid CSS here */
}
#custom-html-67 div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-67 p {
  font-size: 60px;
  color: #777;
}
.cid-uLEM0vVudE {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLEM0vVudE .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uLEM0vVudE .card {
    margin-bottom: 2rem!important;
  }
  .cid-uLEM0vVudE .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uLEM0vVudE .link-wrap {
    align-items: center;
  }
}
.cid-uLEM0vVudE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uLpmvRaGTQ {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uLpmvRaGTQ .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-uLpmvRaGTQ .form-group {
  margin-bottom: 1.3em;
}
.cid-uLpmvRaGTQ .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uLpmvRaGTQ .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-uLpmvRaGTQ textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-uLDGXn5ldx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGXn5ldx a:link {
  text-decoration: none;
}
.cid-uLDGXn5ldx .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGXn5ldx .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGXn5ldx .inner-text {
  line-height: 3em;
}
.cid-uLDGXn5ldx .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGXn5ldx .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGXn5ldx .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGXn5ldx .content-text,
.cid-uLDGXn5ldx .inner-text {
  color: #c1c1c1;
}
.cid-uLpmXWYai4 {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uLpmXWYai4 .mbr-text,
.cid-uLpmXWYai4 .mbr-section-btn {
  color: #232323;
}
.cid-uLpmXWYai4 .card-title,
.cid-uLpmXWYai4 .card-box {
  color: #ffffff;
}
.cid-uLpmXWYai4 .mbr-text,
.cid-uLpmXWYai4 .link-wrap {
  color: #ffffff;
}
.cid-uLpmXXeoru .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uLpmXXeoru .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uLpmXXeoru .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uLpmXXeoru .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uLpmXXeoru .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uLpmXXeoru .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLpmXXeoru .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uLpmXXeoru .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uLpmXXeoru .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uLpmXXeoru .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLpmXXeoru .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uLpmXXeoru .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uLpmXXeoru .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLpmXXeoru .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLpmXXeoru .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLpmXXeoru .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uLpmXXeoru .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uLpmXXeoru .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLpmXXeoru .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uLpmXXeoru .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uLpmXXeoru .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLpmXXeoru .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uLpmXXeoru .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLpmXXeoru .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLpmXXeoru .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLpmXXeoru .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uLpmXXeoru .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uLpmXXeoru .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLpmXXeoru .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLpmXXeoru .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uLpmXXeoru .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uLpmXXeoru .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uLpmXXeoru .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uLpmXXeoru .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uLpmXXeoru .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLpmXXeoru .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLpmXXeoru .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLpmXXeoru .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLpmXXeoru .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLpmXXeoru .dropdown-item.active,
.cid-uLpmXXeoru .dropdown-item:active {
  background-color: transparent;
}
.cid-uLpmXXeoru .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLpmXXeoru .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLpmXXeoru .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLpmXXeoru .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uLpmXXeoru .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uLpmXXeoru .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLpmXXeoru ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uLpmXXeoru .navbar-buttons {
  text-align: center;
}
.cid-uLpmXXeoru button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLpmXXeoru button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLpmXXeoru button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLpmXXeoru button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLpmXXeoru button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLpmXXeoru button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLpmXXeoru nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLpmXXeoru nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLpmXXeoru nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLpmXXeoru nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLpmXXeoru .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLpmXXeoru a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uLpmXXeoru .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLpmXXeoru .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uLpmXXeoru .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uLpmXXeoru .nav-link:hover,
.cid-uLpmXXeoru .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uLpofaGe93 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLDGDjVAVF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGDjVAVF a:link {
  text-decoration: none;
}
.cid-uLDGDjVAVF .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGDjVAVF .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGDjVAVF .inner-text {
  line-height: 3em;
}
.cid-uLDGDjVAVF .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGDjVAVF .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGDjVAVF .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGDjVAVF .content-text,
.cid-uLDGDjVAVF .inner-text {
  color: #c1c1c1;
}
.cid-uLpnd2632S {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uLpnd2632S .mbr-text,
.cid-uLpnd2632S .mbr-section-btn {
  color: #232323;
}
.cid-uLpnd2632S .card-title,
.cid-uLpnd2632S .card-box {
  color: #ffffff;
}
.cid-uLpnd2632S .mbr-text,
.cid-uLpnd2632S .link-wrap {
  color: #ffffff;
}
.cid-uLpnd2zEY1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uLpnd2zEY1 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uLpnd2zEY1 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uLpnd2zEY1 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uLpnd2zEY1 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uLpnd2zEY1 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLpnd2zEY1 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uLpnd2zEY1 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uLpnd2zEY1 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uLpnd2zEY1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLpnd2zEY1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uLpnd2zEY1 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uLpnd2zEY1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLpnd2zEY1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLpnd2zEY1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLpnd2zEY1 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uLpnd2zEY1 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uLpnd2zEY1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLpnd2zEY1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uLpnd2zEY1 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uLpnd2zEY1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLpnd2zEY1 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uLpnd2zEY1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLpnd2zEY1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLpnd2zEY1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLpnd2zEY1 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uLpnd2zEY1 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uLpnd2zEY1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLpnd2zEY1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLpnd2zEY1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uLpnd2zEY1 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uLpnd2zEY1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uLpnd2zEY1 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uLpnd2zEY1 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uLpnd2zEY1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLpnd2zEY1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLpnd2zEY1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLpnd2zEY1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLpnd2zEY1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLpnd2zEY1 .dropdown-item.active,
.cid-uLpnd2zEY1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uLpnd2zEY1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLpnd2zEY1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLpnd2zEY1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLpnd2zEY1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uLpnd2zEY1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uLpnd2zEY1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLpnd2zEY1 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uLpnd2zEY1 .navbar-buttons {
  text-align: center;
}
.cid-uLpnd2zEY1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLpnd2zEY1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLpnd2zEY1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLpnd2zEY1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLpnd2zEY1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLpnd2zEY1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLpnd2zEY1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLpnd2zEY1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLpnd2zEY1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLpnd2zEY1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLpnd2zEY1 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLpnd2zEY1 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uLpnd2zEY1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLpnd2zEY1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uLpnd2zEY1 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uLpnd2zEY1 .nav-link:hover,
.cid-uLpnd2zEY1 .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uLprmfH0wx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLDGI5xL5W {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLDGI5xL5W a:link {
  text-decoration: none;
}
.cid-uLDGI5xL5W .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLDGI5xL5W .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLDGI5xL5W .inner-text {
  line-height: 3em;
}
.cid-uLDGI5xL5W .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLDGI5xL5W .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLDGI5xL5W .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLDGI5xL5W .content-text,
.cid-uLDGI5xL5W .inner-text {
  color: #c1c1c1;
}
.cid-uLEB8KdQoJ {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uLEB8KdQoJ .mbr-text,
.cid-uLEB8KdQoJ .mbr-section-btn {
  color: #232323;
}
.cid-uLEB8KdQoJ .card-title,
.cid-uLEB8KdQoJ .card-box {
  color: #ffffff;
}
.cid-uLEB8KdQoJ .mbr-text,
.cid-uLEB8KdQoJ .link-wrap {
  color: #ffffff;
}
.cid-uLEB8Kwdss {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLEB8Kwdss .mbr-section-subtitle {
  color: #be1e2d;
}
.cid-uLEB8KFOfx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uLEB8KFOfx .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uLEB8KFOfx .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uLEB8KFOfx .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uLEB8KFOfx .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uLEB8KFOfx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLEB8KFOfx .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uLEB8KFOfx .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uLEB8KFOfx .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uLEB8KFOfx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLEB8KFOfx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uLEB8KFOfx .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uLEB8KFOfx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLEB8KFOfx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLEB8KFOfx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLEB8KFOfx .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uLEB8KFOfx .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uLEB8KFOfx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLEB8KFOfx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uLEB8KFOfx .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uLEB8KFOfx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLEB8KFOfx .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uLEB8KFOfx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLEB8KFOfx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLEB8KFOfx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLEB8KFOfx .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uLEB8KFOfx .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uLEB8KFOfx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLEB8KFOfx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLEB8KFOfx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uLEB8KFOfx .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uLEB8KFOfx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uLEB8KFOfx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uLEB8KFOfx .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uLEB8KFOfx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLEB8KFOfx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLEB8KFOfx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLEB8KFOfx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLEB8KFOfx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLEB8KFOfx .dropdown-item.active,
.cid-uLEB8KFOfx .dropdown-item:active {
  background-color: transparent;
}
.cid-uLEB8KFOfx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLEB8KFOfx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLEB8KFOfx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLEB8KFOfx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uLEB8KFOfx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uLEB8KFOfx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLEB8KFOfx ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uLEB8KFOfx .navbar-buttons {
  text-align: center;
}
.cid-uLEB8KFOfx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLEB8KFOfx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLEB8KFOfx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLEB8KFOfx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEB8KFOfx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEB8KFOfx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLEB8KFOfx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEB8KFOfx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLEB8KFOfx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLEB8KFOfx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEB8KFOfx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLEB8KFOfx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uLEB8KFOfx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLEB8KFOfx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uLEB8KFOfx .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uLEB8KFOfx .nav-link:hover,
.cid-uLEB8KFOfx .dropdown-item:hover {
  color: #ffffff !important;
}
#custom-html-7h {
  /* Type valid CSS here */
}
#custom-html-7h div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7h p {
  font-size: 60px;
  color: #777;
}
.cid-uLEB8KXX0R {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLEB8KXX0R a:link {
  text-decoration: none;
}
.cid-uLEB8KXX0R .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLEB8KXX0R .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLEB8KXX0R .inner-text {
  line-height: 3em;
}
.cid-uLEB8KXX0R .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLEB8KXX0R .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLEB8KXX0R .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLEB8KXX0R .content-text,
.cid-uLEB8KXX0R .inner-text {
  color: #c1c1c1;
}
.cid-uLEMWyXF0I {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/prime-ramp-2000x1335.jpeg");
}
.cid-uLEMWyXF0I .mbr-text,
.cid-uLEMWyXF0I .mbr-section-btn {
  color: #232323;
}
.cid-uLEMWyXF0I .card-title,
.cid-uLEMWyXF0I .card-box {
  color: #ffffff;
}
.cid-uLEMWyXF0I .mbr-text,
.cid-uLEMWyXF0I .link-wrap {
  color: #ffffff;
}
.cid-uLEMWzcgAh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLEMWzcgAh .mbr-section-subtitle {
  color: #be1e2d;
}
.cid-uLEMWziFVo .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-uLEMWziFVo .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uLEMWziFVo .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-uLEMWziFVo .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uLEMWziFVo .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uLEMWziFVo .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLEMWziFVo .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uLEMWziFVo .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #be1e2d;
}
.cid-uLEMWziFVo .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uLEMWziFVo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLEMWziFVo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uLEMWziFVo .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uLEMWziFVo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLEMWziFVo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLEMWziFVo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLEMWziFVo .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uLEMWziFVo .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uLEMWziFVo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLEMWziFVo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uLEMWziFVo .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uLEMWziFVo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLEMWziFVo .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uLEMWziFVo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLEMWziFVo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLEMWziFVo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLEMWziFVo .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uLEMWziFVo .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uLEMWziFVo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLEMWziFVo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLEMWziFVo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uLEMWziFVo .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uLEMWziFVo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uLEMWziFVo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uLEMWziFVo .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uLEMWziFVo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLEMWziFVo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLEMWziFVo .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLEMWziFVo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLEMWziFVo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLEMWziFVo .dropdown-item.active,
.cid-uLEMWziFVo .dropdown-item:active {
  background-color: transparent;
}
.cid-uLEMWziFVo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLEMWziFVo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLEMWziFVo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLEMWziFVo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uLEMWziFVo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uLEMWziFVo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLEMWziFVo ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uLEMWziFVo .navbar-buttons {
  text-align: center;
}
.cid-uLEMWziFVo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLEMWziFVo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLEMWziFVo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLEMWziFVo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEMWziFVo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEMWziFVo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLEMWziFVo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEMWziFVo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLEMWziFVo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLEMWziFVo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEMWziFVo .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLEMWziFVo a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uLEMWziFVo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLEMWziFVo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uLEMWziFVo .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uLEMWziFVo .nav-link:hover,
.cid-uLEMWziFVo .dropdown-item:hover {
  color: #ffffff !important;
}
#custom-html-7q {
  /* Type valid CSS here */
}
#custom-html-7q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7q p {
  font-size: 60px;
  color: #777;
}
.cid-uLEMWzvR9w {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uLEMWzvR9w a:link {
  text-decoration: none;
}
.cid-uLEMWzvR9w .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLEMWzvR9w .icon-transition span:hover {
  background-color: #be1e2d;
}
.cid-uLEMWzvR9w .inner-text {
  line-height: 3em;
}
.cid-uLEMWzvR9w .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLEMWzvR9w .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLEMWzvR9w .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLEMWzvR9w .content-text,
.cid-uLEMWzvR9w .inner-text {
  color: #c1c1c1;
}
