.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #305fb7 !important;
}
.bg-success {
  background-color: #305fb7 !important;
}
.bg-info {
  background-color: #4479d9 !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #305fb7 !important;
  border-color: #305fb7 !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: #1e3b72 !important;
  border-color: #1e3b72 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1e3b72 !important;
  border-color: #1e3b72 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-info,
.btn-info:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #305fb7 !important;
  border-color: #305fb7 !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: #1e3b72 !important;
  border-color: #1e3b72 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1e3b72 !important;
  border-color: #1e3b72 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #305fb7;
  color: #305fb7;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1e3b72 !important;
  background-color: transparent!important;
  border-color: #1e3b72 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #305fb7 !important;
  border-color: #305fb7 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #4479d9;
  color: #4479d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #305fb7;
  color: #305fb7;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1e3b72 !important;
  background-color: transparent!important;
  border-color: #1e3b72 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #305fb7 !important;
  border-color: #305fb7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #305fb7 !important;
}
.text-secondary {
  color: #bbbbbb !important;
}
.text-success {
  color: #305fb7 !important;
}
.text-info {
  color: #4479d9 !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1b3566 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #888888 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1b3566 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1f4a98 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #305fb7;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4479d9;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #000000;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #305fb7;
  border-color: #305fb7;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #305fb7;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #87a6e0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #87a6e0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #eef2fb;
}
.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: #b3b3b3;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #305fb7 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #305fb7;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #305fb7;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #305fb7;
}
.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: #305fb7;
  border-bottom-color: #305fb7;
}
.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: #305fb7 !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: #bbbbbb !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='%23305fb7' %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-tB89WrAIhl .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tB89WrAIhl .navbar-fixed-top {
  padding-top: 0;
}
.cid-tB89WrAIhl .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-tB89WrAIhl .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-tB89WrAIhl .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-tB89WrAIhl .navbar-buttons {
  flex-wrap: wrap;
}
.cid-tB89WrAIhl .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tB89WrAIhl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tB89WrAIhl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-tB89WrAIhl .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tB89WrAIhl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tB89WrAIhl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tB89WrAIhl .menu-content-top {
  background: #12548d;
  max-width: 100%;
  justify-content: space-between;
  padding: 0 1rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tB89WrAIhl .dropdown-item {
  padding: 0;
  line-height: 2.6;
}
.cid-tB89WrAIhl .dropdown-item:hover {
  color: #000000 !important;
}
.cid-tB89WrAIhl .nav-link,
.cid-tB89WrAIhl .brand-name {
  font-style: normal;
  transition: all 0.3s ease-in;
  color: #ffffff;
}
.cid-tB89WrAIhl .nav-link:hover,
.cid-tB89WrAIhl .brand-name:hover {
  color: #000000 !important;
}
.cid-tB89WrAIhl .dropdown-menu {
  background-color: #ffffff;
}
.cid-tB89WrAIhl .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tB89WrAIhl .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 1rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-tB89WrAIhl .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tB89WrAIhl .nav-item {
  position: relative;
}
.cid-tB89WrAIhl .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tB89WrAIhl .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-tB89WrAIhl .nav-item .nav-link:focus {
  outline: none;
}
.cid-tB89WrAIhl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB89WrAIhl .content-text {
  margin-bottom: 0;
}
.cid-tB89WrAIhl .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tB89WrAIhl .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #305fb7;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tB89WrAIhl .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tB89WrAIhl .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tB89WrAIhl .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tB89WrAIhl .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tB89WrAIhl .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tB89WrAIhl .content-right-side {
  text-align: center;
}
.cid-tB89WrAIhl .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tB89WrAIhl .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tB89WrAIhl .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tB89WrAIhl .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-tB89WrAIhl .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tB89WrAIhl .info-widget:first-child {
  margin-left: 0;
}
.cid-tB89WrAIhl .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-tB89WrAIhl .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tB89WrAIhl .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tB89WrAIhl .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tB89WrAIhl .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.73;
}
.cid-tB89WrAIhl .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-tB89WrAIhl .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-tB89WrAIhl .nav-link {
    line-height: 6.13;
    color: #ffffff;
  }
  .cid-tB89WrAIhl .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #1160a3;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-tB89WrAIhl .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
  .cid-tB89WrAIhl .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tB89WrAIhl .menu-content-top {
    border-bottom: 1px solid rgba(225, 227, 230, 0.2);
  }
  .cid-tB89WrAIhl .navbar {
    display: block;
    padding: 0;
  }
  .cid-tB89WrAIhl .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-tB89WrAIhl .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tB89WrAIhl .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tB89WrAIhl .navbar-toggler {
    display: none;
  }
  .cid-tB89WrAIhl .navbar-collapse {
    justify-content: center;
  }
}
.cid-tB89WrAIhl .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tB89WrAIhl .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-left: 30px;
  margin-right: 0;
}
.cid-tB89WrAIhl .btn-sm {
  padding: 13px 29px;
}
.cid-tB89WrAIhl .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tB89WrAIhl .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tB89WrAIhl .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tB89WrAIhl .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tB89WrAIhl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tB89WrAIhl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tB89WrAIhl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tB89WrAIhl .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tB89WrAIhl .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tB89WrAIhl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tB89WrAIhl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tB89WrAIhl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tB89WrAIhl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tB89WrAIhl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB89WrAIhl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tB89WrAIhl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tB89WrAIhl .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tB89WrAIhl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-tB89WrAIhl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tB89WrAIhl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tB89WrAIhl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tB89WrAIhl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-tB89WrAIhl button.navbar-toggler:focus {
  outline: none;
}
.cid-tB89WrAIhl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tB89WrAIhl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tB89WrAIhl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB89WrAIhl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB89WrAIhl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tB89WrAIhl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB89WrAIhl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tB89WrAIhl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tB89WrAIhl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB89WrAIhl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tB89WrAIhl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tB89WrAIhl .collapsed .btn {
  display: flex;
}
.cid-tB89WrAIhl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tB89WrAIhl .collapsed .navbar-collapse.collapsing,
.cid-tB89WrAIhl .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tB89WrAIhl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tB89WrAIhl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tB89WrAIhl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tB89WrAIhl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tB89WrAIhl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tB89WrAIhl .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tB89WrAIhl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tB89WrAIhl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tB89WrAIhl .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tB89WrAIhl .collapsed button.navbar-toggler {
  display: block;
}
.cid-tB89WrAIhl .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tB89WrAIhl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tB89WrAIhl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tB89WrAIhl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tB89WrAIhl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tB89WrAIhl .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tB89WrAIhl .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tB89WrAIhl .menu-content-top {
    display: flex;
  }
  .cid-tB89WrAIhl .menu-content-top .right-wrap p {
    display: none;
  }
  .cid-tB89WrAIhl .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-tB89WrAIhl .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-tB89WrAIhl .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tB89WrAIhl .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-tB89WrAIhl .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-tB89WrAIhl .navbar-collapse .icons-menu {
    display: none;
  }
  .cid-tB89WrAIhl .navbar-collapse.collapsing,
  .cid-tB89WrAIhl .navbar-collapse.show {
    display: block !important;
  }
  .cid-tB89WrAIhl .navbar-collapse.collapsing .navbar-nav,
  .cid-tB89WrAIhl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tB89WrAIhl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tB89WrAIhl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tB89WrAIhl .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-tB89WrAIhl .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
    color: #305fb7;
  }
  .cid-tB89WrAIhl .navbar-collapse.collapsing .navbar-buttons,
  .cid-tB89WrAIhl .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tB89WrAIhl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tB89WrAIhl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tB89WrAIhl img {
    height: 3.8rem !important;
  }
  .cid-tB89WrAIhl .btn {
    display: flex;
  }
  .cid-tB89WrAIhl button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tB89WrAIhl .navbar-brand {
    margin-top: 0.5rem;
  }
  .cid-tB89WrAIhl .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tB89WrAIhl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tB89WrAIhl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tB89WrAIhl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tB89WrAIhl .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tB89WrAIhl .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tB89WrAIhl .nav-link:focus {
  outline: none;
}
.cid-tB89WrAIhl .navbar-toggler {
  position: relative;
}
.cid-tB89WrAIhl .widget-title,
.cid-tB89WrAIhl .widget-icon {
  color: #e9e9e9;
}
.cid-tB89WrAIhl .widget-text {
  color: #656565;
}
@media (max-width: 768px) {
  .cid-tB89WrAIhl .menu-content-top .menu-content-right .info-widget {
    margin-left: 20px;
  }
  .cid-tB89WrAIhl .menu-content-top .menu-content-right .info-widget:first-child {
    margin-left: 0;
  }
  .cid-tB89WrAIhl .menu-content-top .menu-content-right .info-widget .widget-icon {
    font-size: 20px;
  }
  .cid-tB89WrAIhl .menu-content-top .menu-content-right .info-widget .widget-content {
    display: none;
  }
  .cid-tB89WrAIhl .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-tB89WrAIhl .menu-content-top,
  .cid-tB89WrAIhl .menu-bottom {
    padding: 0 15px;
  }
  .cid-tB89WrAIhl button.navbar-toggler {
    align-self: center;
  }
  .cid-tB89WrAIhl .btn {
    margin-left: 0;
  }
  .cid-tB89WrAIhl .widget-icon {
    padding-right: 0;
  }
}
.cid-tB89WrAIhl .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-tB89WrAIhl .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
  background-color: #000000;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-tB89WrAIhl .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-tB89WrAIhl .icons-menu .mbr-iconfont:hover {
  color: #4c79ca;
  background-color: #101c4c;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-tB89WrAIhl .soc-item {
  margin: .5rem .3rem;
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tB8li4fptF {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #1160a3;
}
.cid-tB8li4fptF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB8li4fptF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo7ZPFyqc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1160a3;
}
@media (min-width: 992px) {
  .cid-tDo7ZPFyqc .carousel {
    min-height: 500px;
  }
  .cid-tDo7ZPFyqc .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tDo7ZPFyqc .carousel {
    min-height: 325px;
  }
  .cid-tDo7ZPFyqc .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tDo7ZPFyqc .carousel {
    min-height: 275px;
  }
  .cid-tDo7ZPFyqc .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-tDo7ZPFyqc .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tDo7ZPFyqc .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tDo7ZPFyqc .carousel,
.cid-tDo7ZPFyqc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDo7ZPFyqc .item-wrapper {
  width: 100%;
}
.cid-tDo7ZPFyqc .carousel-caption {
  bottom: 40px;
}
.cid-tDo7ZPFyqc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tDo7ZPFyqc .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tDo7ZPFyqc .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tDo7ZPFyqc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tDo7ZPFyqc .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDo7ZPFyqc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDo7ZPFyqc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDo7ZPFyqc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDo7ZPFyqc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tDo7ZPFyqc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tDo7ZPFyqc .carousel-indicators li.active,
.cid-tDo7ZPFyqc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDo7ZPFyqc .carousel-indicators li::after,
.cid-tDo7ZPFyqc .carousel-indicators li::before {
  content: none;
}
.cid-tDo7ZPFyqc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDo7ZPFyqc .carousel-indicators {
    display: none !important;
  }
}
.cid-tBdRLlcikA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1160a3;
}
.cid-tB8XL4nvcI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #1160a3;
}
.cid-tB8XL4nvcI .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tB8XL4nvcI .mbr-text {
  color: #ffffff;
}
.cid-tB94DTESmu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tB94DTESmu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB94DTESmu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB94DTESmu .mbr-section-title {
  color: #05345c;
}
.cid-tB90MVpogk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tB90MVpogk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB90MVpogk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB90MVpogk .container-fluid {
  margin: 0;
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-tB90MVpogk .container-fluid {
    padding: 0 12px;
  }
}
.cid-tB90MVpogk .container-fluid .row {
  padding: 0;
}
.cid-tB90MVpogk .image-wrap {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tB90MVpogk .image-wrapper {
    margin-bottom: 70px;
  }
}
.cid-tB90MVpogk .image-wrapper img {
  height: 520px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tB90MVpogk .image-wrapper img {
    height: 400px;
    margin-bottom: 100px;
  }
}
.cid-tB90MVpogk .cards-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 174px 0 60px;
}
@media (min-width: 1500px) {
  .cid-tB90MVpogk .cards-wrap {
    padding: 0 285px 0 60px;
  }
}
@media (max-width: 1200px) {
  .cid-tB90MVpogk .cards-wrap {
    padding: 0 100px 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-tB90MVpogk .cards-wrap {
    padding: 0 25px;
  }
}
.cid-tB90MVpogk .cards-wrap .tab-content .card {
  margin-bottom: 25px;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .card-header {
  border: none;
  padding: 2px 0 9px;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-90deg);
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .card-header .panel-title:not(.collapsed) .panel-title-edit::before {
  opacity: .8;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .card-header .panel-title:hover .panel-title-edit::before {
  opacity: .8;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .card-header .panel-title .panel-number {
  min-width: 25px;
  margin-right: 25px;
  margin-bottom: 0;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  position: relative;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .card-header .panel-title .panel-title-edit::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(99deg, #bbbbbb 0, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .card-header .panel-title .mbr-iconfont {
  margin-left: 25px;
  transform: rotate(90deg);
  transition: all 0.3s ease-out;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .panel-collapse .panel-body {
  padding: 18px 0 0 50px;
  border-top: 1px solid #05345c;
}
.cid-tB90MVpogk .cards-wrap .tab-content .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tB90MVpogk .panel-number {
  color: #b6b6b6;
}
.cid-tB90MVpogk .panel-title-edit,
.cid-tB90MVpogk .mbr-iconfont {
  color: #05345c;
}
.cid-tB90MVpogk .panel-text {
  color: #000000;
}
.cid-tB9oWcgAI4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #1160a3;
}
.cid-tB9oWcgAI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB9oWcgAI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB9oWcgAI4 .mbr-section-title {
  color: #ffffff;
}
.cid-tB9oWcgAI4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tB9h12gCNy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1160a3;
}
@media (min-width: 1400px) {
  .cid-tB9h12gCNy .wrapper {
    padding: 0 4rem 0 8rem;
  }
}
.cid-tB9h12gCNy .left-side {
  text-align: left;
  padding-right: 5rem;
}
.cid-tB9h12gCNy .row {
  align-items: center;
}
@media (max-width: 600px) {
  .cid-tB9h12gCNy .mbr-section-btn {
    margin-bottom: 25px;
  }
}
.cid-tB9h12gCNy .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tB9h12gCNy .mbr-section-subtitle {
  color: #626262;
  margin: 0;
  text-align: left;
}
.cid-tB9h12gCNy .panel-text {
  margin: 0;
  border: 0px;
  color: #ffffff;
}
.cid-tB9h12gCNy span {
  color: #ffffff;
  float: right;
  margin-top: 2px;
}
.cid-tB9h12gCNy .panel-title-edit {
  color: #ffffff;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #ffffff;
}
.cid-tB9h12gCNy .card-header {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 0;
}
.cid-tB9h12gCNy .card {
  border-radius: 0;
  margin-bottom: 22px;
}
@media (max-width: 990px) {
  .cid-tB9h12gCNy .left-side {
    padding: 15px;
  }
}
.cid-tB9h12gCNy img {
  width: 100%;
  transition: all 2s;
}
.cid-tB9h12gCNy img:hover {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tB9pOAOxAK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1160a3;
}
.cid-tB9qC7NYCX {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tB9qC7NYCX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB9qC7NYCX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB9qC7NYCX .mbr-section-title {
  color: #05345c;
}
.cid-tB9qC7NYCX .mbr-section-subtitle {
  color: #05345c;
}
.cid-tB9qDq7f8a {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-tB9qDq7f8a .wrapper {
    padding: 0 4rem 0 8rem;
  }
}
.cid-tB9qDq7f8a .left-side {
  text-align: left;
  padding-right: 5rem;
}
.cid-tB9qDq7f8a .row {
  align-items: center;
}
.cid-tB9qDq7f8a .row {
  flex-direction: row-reverse;
}
.cid-tB9qDq7f8a .left-side {
  padding-left: 5rem;
  padding-right: 0;
}
@media (max-width: 600px) {
  .cid-tB9qDq7f8a .mbr-section-btn {
    margin-bottom: 25px;
  }
}
.cid-tB9qDq7f8a .mbr-section-title {
  text-align: left;
  color: #05345c;
}
.cid-tB9qDq7f8a .mbr-section-subtitle {
  color: #626262;
  margin: 0;
  text-align: left;
}
.cid-tB9qDq7f8a .panel-text {
  margin: 0;
  border: 0px;
  color: #05345c;
}
.cid-tB9qDq7f8a span {
  color: #ffffff;
  float: right;
  margin-top: 2px;
}
.cid-tB9qDq7f8a .panel-title-edit {
  color: #05345c;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #05345c;
  text-align: left;
}
.cid-tB9qDq7f8a .card-header {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 0;
}
.cid-tB9qDq7f8a .card {
  border-radius: 0;
  margin-bottom: 22px;
}
@media (max-width: 990px) {
  .cid-tB9qDq7f8a .left-side {
    padding: 15px;
  }
}
.cid-tB9qDq7f8a img {
  width: 100%;
  transition: all 2s;
}
.cid-tB9qDq7f8a img:hover {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tB9qF0wTWO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upjnVqgtzm {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #bdcbd7;
}
.cid-upjnVqgtzm .card {
  display: block;
  position: relative;
}
.cid-upjnVqgtzm .card .card-wrapper {
  background: #1160a3;
  height: 1%;
}
.cid-upjnVqgtzm .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-upjnVqgtzm .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-upjnVqgtzm .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #1160a3;
}
.cid-upjnVqgtzm .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-upjnVqgtzm .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-upjnVqgtzm .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-upjnVqgtzm .mbr-title {
  color: #ffffff;
}
.cid-upjnVqgtzm .mbr-section-subtitle {
  color: #05345c;
}
.cid-upjnZNHMqp {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #bdcbd7;
}
.cid-upjnZNHMqp .card {
  display: block;
  position: relative;
}
.cid-upjnZNHMqp .card .card-wrapper {
  background: #1160a3;
  height: 1%;
}
.cid-upjnZNHMqp .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-upjnZNHMqp .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-upjnZNHMqp .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-upjnZNHMqp .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-upjnZNHMqp .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-upjnZNHMqp .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-upjnZNHMqp .mbr-title {
  color: #ffffff;
}
.cid-tB9EAg7I4m {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tB9EAg7I4m img {
  width: 125px;
  margin: auto;
}
.cid-tB9EAg7I4m .card {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  margin-bottom: 1rem;
}
.cid-tB9EAg7I4m .mbr-section-title {
  color: #130947;
  margin-bottom: 10px;
}
.cid-tB9EAg7I4m .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tB9EAg7I4m .row {
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-tB9EAg7I4m .col-lg-1 {
    -webkit-box-flex: 0;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media (max-width: 768px) {
  .cid-tB9EAg7I4m .mbr-section-title {
    text-align: center;
  }
}
.cid-upoqkFBu5E {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-upoqkFBu5E .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-upoqkFBu5E .panel-group {
  border: none;
}
.cid-upoqkFBu5E .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-upoqkFBu5E .card-header {
    padding: 0rem;
  }
}
.cid-upoqkFBu5E .card {
  border: solid 1px #305fb7;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 2rem;
  margin-bottom: -1px;
}
.cid-upoqkFBu5E .card:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-upoqkFBu5E .card {
    padding: 1rem;
  }
}
.cid-upoqkFBu5E .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-upoqkFBu5E .img-col {
  padding: 0;
}
.cid-upoqkFBu5E .img-item {
  height: 100%;
}
.cid-upoqkFBu5E img {
  height: 100%;
  object-fit: cover;
}
.cid-upoqkFBu5E .collapsed span {
  transform: rotate(0deg);
}
.cid-upoqkFBu5E .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upoqkFBu5E p {
  margin-bottom: 0.3rem;
}
.cid-upoqkFBu5E .panel-title-edit {
  color: #000000;
  line0height: 1.1;
}
.cid-upoqkFBu5E .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-upoqkFBu5E .panel-text {
  color: #000000;
}
.cid-upoqkFBu5E .mbr-section-title {
  text-align: center;
  color: #000000;
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-upoqkFBu5E .mbr-section-subtitle {
  color: #000000;
  text-align: center;
  line-height: 1.3 !important;
}
.cid-upoqkFBu5E .mbr-section-subtitle span {
  padding-right: 2rem;
}
.cid-upoqkFBu5E .panel-title-edit,
.cid-upoqkFBu5E .mbr-iconfont {
  color: #000000;
  text-align: left;
}
.cid-upoqkFBu5E .mbr-section-title,
.cid-upoqkFBu5E .mbr-section-subtitle {
  background: #305fb7;
  display: inline;
}
.cid-upoqkFBu5E .mbr-section-subtitle,
.cid-upoqkFBu5E .align {
  color: #ffffff;
}
.cid-upoqkFBu5E .mbr-section-title,
.cid-upoqkFBu5E .align {
  color: #ffffff;
}
.cid-upoqkFBu5E .panel-number-edit {
  flex-shrink: 0;
  margin-right: 20px;
  border: solid 1px #305fb7;
  border-radius: 20px;
  padding: 2px 10px;
  line-height: 1;
}
.cid-upoqkFBu5E .title-wrapper {
  display: flex;
  align-items: center;
}
.cid-tB9GNZmixw {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #bdcbd7;
}
.cid-tB9GNZmixw .row {
  align-items: center;
}
.cid-tB9GNZmixw .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-tB9GNZmixw .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-tB9GNZmixw .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tB9GNZmixw .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-tB9GNZmixw .header-text {
    padding-right: 0;
  }
}
.cid-tB9GNZmixw .label-text {
  width: 100%;
  color: #111111;
}
.cid-tB9GNZmixw .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
}
.cid-tB9GNZmixw .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-tB9GNZmixw .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-tB9GNZmixw .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-tB9GNZmixw .iconfont-wrapper {
  color: #111111 !important;
}
.cid-tB9GNZmixw .iconfont-wrapper:hover {
  color: #305fb7 !important;
}
.cid-tB9GNZmixw .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-tB9GNZmixw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB9GNZmixw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB9GNZmixw .mbr-text,
.cid-tB9GNZmixw .mbr-section-btn {
  color: #000000;
}
.cid-tB9LmTPkez {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #05345c;
}
.cid-tB9LmTPkez .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-tB9LmTPkez .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-tB9LmTPkez .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-tB9LmTPkez .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tB9LmTPkez .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tB9LmTPkez .input-group-btn .btn {
  margin: 0;
}
.cid-tB9LmTPkez .subtext-1,
.cid-tB9LmTPkez .subtext-2 {
  margin-bottom: .6rem;
}
.cid-tB9LmTPkez .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #4479d9;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tB9LmTPkez .icon-transition span:hover {
  background-color: #12548d;
}
.cid-tB9LmTPkez .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-tB9LmTPkez .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-tB9LmTPkez .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-tB9LmTPkez .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-tB9LmTPkez .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-tB9LmTPkez .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
}
.cid-tB9LmTPkez .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-tB9LmTPkez .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-tB9LmTPkez .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-tB9LmTPkez .form-group {
  max-width: 400px;
}
.cid-tB9LmTPkez .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-tB9LmTPkez .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-tB9LmTPkez .form-row {
    justify-content: center;
  }
  .cid-tB9LmTPkez .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-tB9LmTPkez .subtext-1,
  .cid-tB9LmTPkez .subtext-2,
  .cid-tB9LmTPkez .card-support {
    text-align: center;
  }
  .cid-tB9LmTPkez .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-tB9LmTPkez .form-text {
    text-align: center;
  }
  .cid-tB9LmTPkez .follow-section {
    margin: 0;
  }
  .cid-tB9LmTPkez .mbr-form {
    text-align: center;
  }
  .cid-tB9LmTPkez .social-media ul li {
    margin-right: .1rem;
  }
  .cid-tB9LmTPkez .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-tB9LmTPkez .firstColumn,
  .cid-tB9LmTPkez .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-tB9LmTPkez .form-row {
    flex-direction: column;
  }
}
.cid-tB9LmTPkez H5 {
  color: #ffffff;
}
