body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #37334d !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #37334d !important;
  border-color: #37334d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #37334d !important;
  border-color: #37334d !important;
}
.btn-primary:before {
  background-color: #16151f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #16151f !important;
  border-color: #16151f !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #96d6eb !important;
  border-color: #96d6eb !important;
  color: #15576d !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #15576d !important;
  background-color: #96d6eb !important;
  border-color: #96d6eb !important;
}
.btn-secondary:before {
  background-color: #56bddf !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #15576d !important;
  background-color: #56bddf !important;
  border-color: #56bddf !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #0b0a10;
  color: #0b0a10;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #37334d;
}
.btn-primary-outline:before {
  background-color: #37334d;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #37334d !important;
  border-color: #37334d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #40b5db;
  color: #40b5db;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #15576d;
  border-color: #96d6eb;
}
.btn-secondary-outline:before {
  background-color: #96d6eb;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #96d6eb !important;
  border-color: #96d6eb !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #37334d;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #37334d !important;
}
.text-secondary {
  color: #96d6eb !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b0a10 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #40b5db !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #37334d;
  border-color: #37334d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #37334d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a8a3c2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b083d5;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #37334d;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #37334d;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #37334d;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.12rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #37334d;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #37334d;
  border-bottom-color: #37334d;
}
.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: #37334d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #96d6eb !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2337334d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rOpXVL1Lb4 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
  box-shadow: 2px 5px 10px #b6b6b6;
}
@media (min-width: 992px) {
  .cid-rOpXVL1Lb4 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-rOpXVL1Lb4 .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-rOpXVL1Lb4 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rOpXVL1Lb4 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rOpXVL1Lb4 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rOpXVL1Lb4 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-rOpXVL1Lb4 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rOpXVL1Lb4 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rOpXVL1Lb4 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rOpXVL1Lb4 a {
  font-style: normal;
}
.cid-rOpXVL1Lb4 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-rOpXVL1Lb4 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-rOpXVL1Lb4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rOpXVL1Lb4 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-rOpXVL1Lb4 .content-text {
  margin-bottom: 0;
}
.cid-rOpXVL1Lb4 .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rOpXVL1Lb4 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #37334d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rOpXVL1Lb4 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-rOpXVL1Lb4 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-rOpXVL1Lb4 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-rOpXVL1Lb4 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-rOpXVL1Lb4 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rOpXVL1Lb4 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rOpXVL1Lb4 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rOpXVL1Lb4 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rOpXVL1Lb4 .nav-dropdown .link {
  font-weight: 400;
}
.cid-rOpXVL1Lb4 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rOpXVL1Lb4 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-rOpXVL1Lb4 .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-rOpXVL1Lb4 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-rOpXVL1Lb4 .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-rOpXVL1Lb4 .menu-content-top.show {
  display: block;
}
.cid-rOpXVL1Lb4 .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-rOpXVL1Lb4 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-rOpXVL1Lb4 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-rOpXVL1Lb4 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-rOpXVL1Lb4 .dropdown-item:before {
    display: none;
  }
  .cid-rOpXVL1Lb4 .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-rOpXVL1Lb4 .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-rOpXVL1Lb4 img {
    height: 3.8rem !important;
  }
  .cid-rOpXVL1Lb4 .btn {
    display: flex;
  }
  .cid-rOpXVL1Lb4 button.navbar-toggler {
    display: block;
  }
  .cid-rOpXVL1Lb4 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rOpXVL1Lb4 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rOpXVL1Lb4 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rOpXVL1Lb4 .navbar-collapse.collapsing,
  .cid-rOpXVL1Lb4 .navbar-collapse.show {
    display: block !important;
  }
  .cid-rOpXVL1Lb4 .navbar-collapse.collapsing .navbar-nav,
  .cid-rOpXVL1Lb4 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rOpXVL1Lb4 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rOpXVL1Lb4 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-rOpXVL1Lb4 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rOpXVL1Lb4 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rOpXVL1Lb4 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rOpXVL1Lb4 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rOpXVL1Lb4 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rOpXVL1Lb4 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rOpXVL1Lb4 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-rOpXVL1Lb4 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rOpXVL1Lb4 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rOpXVL1Lb4 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-rOpXVL1Lb4 .navbar .menu-content-top {
    display: block;
  }
  .cid-rOpXVL1Lb4 .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-rOpXVL1Lb4 .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-rOpXVL1Lb4 .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-rOpXVL1Lb4 .menu-bottom {
    display: flex;
  }
  .cid-rOpXVL1Lb4 .navbar {
    display: block;
    padding: 0;
  }
  .cid-rOpXVL1Lb4 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rOpXVL1Lb4 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-rOpXVL1Lb4 .navbar-toggler {
    display: none;
  }
}
.cid-rOpXVL1Lb4 .navbar-short .menu-content-top {
  border: none;
}
.cid-rOpXVL1Lb4 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rOpXVL1Lb4 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rOpXVL1Lb4 .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-rOpXVL1Lb4 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rOpXVL1Lb4 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rOpXVL1Lb4 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rOpXVL1Lb4 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rOpXVL1Lb4 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rOpXVL1Lb4 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rOpXVL1Lb4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rOpXVL1Lb4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rOpXVL1Lb4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rOpXVL1Lb4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rOpXVL1Lb4 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rOpXVL1Lb4 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rOpXVL1Lb4 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rOpXVL1Lb4 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rOpXVL1Lb4 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rOpXVL1Lb4 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rOpXVL1Lb4 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rOpXVL1Lb4 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rOpXVL1Lb4 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-rOpXVL1Lb4 button.navbar-toggler:focus {
  outline: none;
}
.cid-rOpXVL1Lb4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-rOpXVL1Lb4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rOpXVL1Lb4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rOpXVL1Lb4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rOpXVL1Lb4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rOpXVL1Lb4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOpXVL1Lb4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rOpXVL1Lb4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rOpXVL1Lb4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOpXVL1Lb4 .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rOpXVL1Lb4 .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rOpXVL1Lb4 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-rOpXVL1Lb4 .collapsed .btn {
  display: flex;
}
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.collapsing,
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rOpXVL1Lb4 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rOpXVL1Lb4 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem  - 1rem);
  }
  .cid-rOpXVL1Lb4 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rOpXVL1Lb4 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rOpXVL1Lb4 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rOpXVL1Lb4 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rOpXVL1Lb4 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-rOpXVL1Lb4 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rOpXVL1Lb4 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rOpXVL1Lb4 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rOpXVL1Lb4 .collapsed .dropdown-item:before {
  display: none;
}
.cid-rOpXVL1Lb4 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rOpXVL1Lb4 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rOpXVL1Lb4 .nav-link:focus {
  outline: none;
}
.cid-rOpXVL1Lb4 .navbar-toggler {
  position: relative;
}
.cid-rOpXVL1Lb4 .dropdown-item.active,
.cid-rOpXVL1Lb4 .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-rOpXVL1Lb4 .nav-link:hover,
.cid-rOpXVL1Lb4 .dropdown-item:hover {
  color: #96d6eb;
}
.cid-rOpPL8jTRc {
  padding-top: 180px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/image-1-1800x400.jpg");
}
.cid-rOpPL8jTRc .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-rOpPL8jTRc .mbr-overlay {
  background: linear-gradient(#333333 -10%, #333333 75%);
}
.cid-rOpPL8jTRc H1 {
  color: #ffffff;
  text-align: center;
}
.cid-rOq0P7X8Rm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rOq0P7X8Rm .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  line-height: 1.6;
}
.cid-rOq0P7X8Rm .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rOq0P7X8Rm .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rOq0P7X8Rm .wrapper {
  padding: 2rem 1rem 2rem 1rem;
}
.cid-rOq0P7X8Rm .card-overlay {
  display: none;
  background: #37334d;
}
@media (min-width: 768px) {
  .cid-rOq0P7X8Rm .image-element:hover .card-overlay {
    opacity: 0.7;
    border-bottom-right-radius: 0rem;
  }
  .cid-rOq0P7X8Rm .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rOq0P7X8Rm .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rOq0P7X8Rm .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rOq0P7X8Rm .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rOq0P7X8Rm .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rOq0P7X8Rm .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rOq0P7X8Rm .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rOq0P7X8Rm .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-rOq0P7X8Rm .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rOq0P7X8Rm .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rOq0P7X8Rm .card-title,
  .cid-rOq0P7X8Rm .underline,
  .cid-rOq0P7X8Rm .mbr-text,
  .cid-rOq0P7X8Rm .mbr-section-btn,
  .cid-rOq0P7X8Rm .mbr-section-subtitle,
  .cid-rOq0P7X8Rm .mbr-section-title {
    text-align: center !important;
  }
  .cid-rOq0P7X8Rm .wrapper {
    background-color: #37334d;
  }
}
.cid-rOq0P7X8Rm .mbr-section-title {
  text-align: left;
}
.cid-rOq0P7X8Rm .mbr-section-title,
.cid-rOq0P7X8Rm .underline {
  text-align: center;
}
.cid-rOq0P7X8Rm .btn {
  border: 3px solid #fff !important;
  font-weight: 500;
}
.cid-rOq0P7X8Rm .btn:hover {
  color: #37334d !important;
  border: 3px solid #fff !important;
  background-color: white !important;
}
.cid-rOq0P7X8Rm h2 {
  font-weight: 600;
}
.cid-rOvz9oNF3q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/0-1136x296.jpg");
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.cid-rOvz9oNF3q .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-rOvz9oNF3q .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-rOvz9oNF3q .card-title {
  margin-bottom: 0rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-rOvz9oNF3q h4 {
  font-weight: 500;
}
.cid-rOvz9oNF3q .btn {
  border: 3px solid #fff !important;
  font-weight: 500;
  width: 160px;
}
.cid-rOvz9oNF3q .btn:hover {
  color: #37334d !important;
  border: 3px solid #fff !important;
  background-color: white !important;
}
.cid-rOvz9oNF3q p {
  font-weight: 400;
}
.cid-rOqEORcVaE {
  padding-top: 45px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-258276704-2000x880.jpg");
}
.cid-rOqEORcVaE .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 20%;
  background-color: #ffffff;
}
.cid-rOqEORcVaE .block {
  background-color: #96d6eb;
}
.cid-rOqEORcVaE img {
  width: 100%;
}
.cid-rOqEORcVaE .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
  display: flex;
  justify-content: flex-end;
}
.cid-rOqEORcVaE .content {
  max-width: 600px;
}
.cid-rOqEORcVaE h4 {
  position: absolute;
  transform: rotate(270deg);
  transform-origin: bottom left;
  left: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-rOqEORcVaE .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-rOqEORcVaE h4 {
    left: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-rOqEORcVaE .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-rOqEORcVaE h4 {
    left: 2rem;
    bottom: 30%;
  }
}
.cid-rOqEORcVaE H2 {
  color: #37334d;
  font-weight: 500;
}
.cid-rOqEORcVaE .mbr-text,
.cid-rOqEORcVaE .mbr-section-btn {
  color: #37334d;
}
.cid-rOqEORcVaE .btn {
  border: 3px solid #37334d !important;
}
.cid-rOqEORcVaE .btn:hover {
  background-color: #37334d;
  border: 3px solid #37334d !important;
}
.cid-rVAYAxL95y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rVAYAxL95y h3 {
  text-align: center;
}
.cid-rVAYAxL95y .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-rVAYAxL95y .mbr-content-text {
  color: #232323;
  text-align: center;
}
.cid-rVAYAxL95y .card {
  word-wrap: break-word;
}
.cid-rVAYAxL95y .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-rVAYAxL95y h2 {
  font-weight: 400;
}
.cid-rOr1RWg110 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rOr1RWg110 .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #96d6eb;
}
.cid-rOr1RWg110 img {
  width: 100%;
}
.cid-rOr1RWg110 .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-rOr1RWg110 .content-wrapper {
  padding-top: 6rem;
}
.cid-rOr1RWg110 h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-rOr1RWg110 .content-wrapper {
    padding-top: 0rem;
  }
  .cid-rOr1RWg110 p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rOr1RWg110 .back {
    width: 100%;
    height: 75%;
  }
  .cid-rOr1RWg110 .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-rOr1RWg110 p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rOr1RWg110 .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-rOr1RWg110 h4 {
    right: 2rem;
  }
}
.cid-rOr1RWg110 p {
  font-weight: 500;
}
.cid-rOr1RWg110 .btn {
  border: 3px solid #37334d !important;
}
.cid-rOr1RWg110 .btn:hover {
  background-color: #37334d;
  border: 3px solid #37334d !important;
}
.cid-rOr1RWg110 h2 {
  font-weight: 500 !important;
}
.cid-rOr9bCAGJT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rOr9bCAGJT a:link {
  text-decoration: none;
}
.cid-rOr9bCAGJT .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ef7420 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rOr9bCAGJT .icon-transition span:hover {
  background-color: #37334d;
}
.cid-rOr9bCAGJT .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rOr9bCAGJT .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rOr9bCAGJT .foot-menu {
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-rOr9bCAGJT .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-rOr9bCAGJT .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-rOr9bCAGJT .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-rOr9bCAGJT .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-rOr9bCAGJT .plan-title,
.cid-rOr9bCAGJT .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-rOr9bCAGJT .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-rOr9bCAGJT .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-rOr9bCAGJT .mbr-section-title span {
  color: #ffbc00;
}
