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





body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Mukta', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Mukta', sans-serif;
  font-size: 2rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.9rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Cabin', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: 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: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ff2f2f !important;
}
.bg-success {
  background-color: #fd0404 !important;
}
.bg-info {
  background-color: #f7ed4a !important;
}
.bg-warning {
  background-color: #005cba !important;
}
.bg-danger {
  background-color: #232323 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff2f2f !important;
  border-color: #ff2f2f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #e20000 !important;
  border-color: #e20000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e20000 !important;
  border-color: #e20000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success,
.btn-success:active {
  background-color: #fd0404 !important;
  border-color: #fd0404 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #b30101 !important;
  border-color: #b30101 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #b30101 !important;
  border-color: #b30101 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #005cba !important;
  border-color: #005cba !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #00366e !important;
  border-color: #00366e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #00366e !important;
  border-color: #00366e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-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 {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-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 {
  background: none;
  border-color: #c80000;
  color: #c80000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff2f2f;
  border-color: #ff2f2f;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff2f2f !important;
  border-color: #ff2f2f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #707070;
  background-color: #efefef;
  border-color: #efefef;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #9a0101;
  color: #9a0101;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #fd0404;
  border-color: #fd0404;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #fd0404 !important;
  border-color: #fd0404 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #002a54;
  color: #002a54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #005cba;
  border-color: #005cba;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #005cba !important;
  border-color: #005cba !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #232323;
  border-color: #232323;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.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;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff2f2f !important;
}
.text-secondary {
  color: #efefef !important;
}
.text-success {
  color: #fd0404 !important;
}
.text-info {
  color: #f7ed4a !important;
}
.text-warning {
  color: #005cba !important;
}
.text-danger {
  color: #232323 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c80000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #bcbcbc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #9a0101 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #d2c609 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #002a54 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !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: #f7ed4a;
}
.alert-warning {
  background-color: #005cba;
}
.alert-danger {
  background-color: #232323;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff2f2f;
  border-color: #ff2f2f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff2f2f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fffbfb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffcece;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #3b9cff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d5d5d5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #ff2f2f;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@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: #ff2f2f;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ff2f2f;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff2f2f;
  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: #ff2f2f;
  border-bottom-color: #ff2f2f;
}
.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: #ff2f2f !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: #efefef !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: 100px;
  height: 100px;
  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='%23ff2f2f' %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.3;
}
.cid-rgRpzZE4Np {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rgRpzZE4Np .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rgRpzZE4Np .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rgRpzZE4Np .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rgRpzZE4Np H1 {
  color: #232323;
}
.cid-rgRpzZE4Np .mbr-text,
.cid-rgRpzZE4Np .mbr-section-btn {
  color: #635a51;
}
.cid-rgXMuM2kBh {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mix-produce-2-2000x1333.jpg");
}
.cid-rgXMuM2kBh .row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rgXMuM2kBh .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgXMuM2kBh .form-container {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  padding: 3rem;
  position: relative;
}
.cid-rgXMuM2kBh .mbr-section-title {
  margin-left: -4px;
}
.cid-rgXMuM2kBh .media-container-column {
  width: 100%;
}
.cid-rgXMuM2kBh .form {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-rgXMuM2kBh .mbr-section-btn a {
  white-space: nowrap;
}
.cid-rgXMuM2kBh .form-group {
  position: relative;
  margin: 0;
  width: 100%;
}
.cid-rgXMuM2kBh .form-group .form-control {
  padding-left: 1rem;
}
@media (min-width: 1600px) {
  .cid-rgXMuM2kBh .my-col {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .cid-rgXMuM2kBh .form-container {
    margin-left: 5rem;
    margin-right: 5rem;
  }
}
@media (min-width: 768px) {
  .cid-rgXMuM2kBh .mbr-section-btn {
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 10px;
  }
  .cid-rgXMuM2kBh .form-group {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.cid-rgXMuM2kBh .mbr-text {
  color: #232323;
}
.cid-rh8000IIbj {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #efefef;
  background: linear-gradient(45deg, #efefef, #635a51);
}
@media (min-width: 992px) {
  .cid-rh8000IIbj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rh8000IIbj .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rh8000IIbj .mbr-text {
    text-align: center;
  }
}
.cid-rh8000IIbj H1 {
  color: #232323;
}
.cid-rh8000IIbj .mbr-text,
.cid-rh8000IIbj .mbr-section-btn {
  color: #232323;
}
.cid-rhv03XG9MC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f70a1;
}
.cid-rhv03XG9MC .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rhv03XG9MC .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rhv03XG9MC .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rhv03XG9MC .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rhv03XG9MC .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #f92727;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rhv03XG9MC .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rhv03XG9MC .mbr-text {
  color: #efefef;
}
@media (max-width: 991px) {
  .cid-rhv03XG9MC .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rhv03XG9MC .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rhv03XG9MC .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rhv03XG9MC .mbr-text B {
  color: #cccccc;
}
.cid-rhBaioWRvH {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #3f70a1;
}
.cid-rBHGsZPFLt .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-rBHGsZPFLt .nav-item:focus,
.cid-rBHGsZPFLt .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rBHGsZPFLt .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rBHGsZPFLt .nav-item .nav-link {
    position: relative;
  }
  .cid-rBHGsZPFLt .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff2f2f, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rBHGsZPFLt .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rBHGsZPFLt .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBHGsZPFLt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rBHGsZPFLt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rBHGsZPFLt .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rBHGsZPFLt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rBHGsZPFLt .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-rBHGsZPFLt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rBHGsZPFLt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rBHGsZPFLt .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rBHGsZPFLt .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #55b4d4;
}
.cid-rBHGsZPFLt .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #55b4d4 !important;
}
.cid-rBHGsZPFLt .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rBHGsZPFLt .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rBHGsZPFLt .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rBHGsZPFLt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rBHGsZPFLt .navbar.collapsed .navbar-collapse.show,
.cid-rBHGsZPFLt .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGsZPFLt .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rBHGsZPFLt .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rBHGsZPFLt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rBHGsZPFLt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rBHGsZPFLt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rBHGsZPFLt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rBHGsZPFLt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rBHGsZPFLt .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGsZPFLt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rBHGsZPFLt .navbar.collapsed .right-menu,
.cid-rBHGsZPFLt .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rBHGsZPFLt .navbar .navbar-collapse.show,
  .cid-rBHGsZPFLt .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGsZPFLt .navbar .navbar-collapse.show .brand-container,
  .cid-rBHGsZPFLt .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rBHGsZPFLt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rBHGsZPFLt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rBHGsZPFLt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rBHGsZPFLt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rBHGsZPFLt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rBHGsZPFLt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rBHGsZPFLt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rBHGsZPFLt .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGsZPFLt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rBHGsZPFLt .navbar .right-menu,
  .cid-rBHGsZPFLt .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rBHGsZPFLt .navbar.navbar-short {
  min-height: 60px;
}
.cid-rBHGsZPFLt .navbar.navbar-short .mbr-overlay {
  background: #55b4d4 !important;
}
.cid-rBHGsZPFLt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rBHGsZPFLt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rBHGsZPFLt .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rBHGsZPFLt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rBHGsZPFLt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rBHGsZPFLt .dropdown-item.active,
.cid-rBHGsZPFLt .dropdown-item:active {
  background-color: transparent;
}
.cid-rBHGsZPFLt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rBHGsZPFLt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rBHGsZPFLt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rBHGsZPFLt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #55b4d4;
}
.cid-rBHGsZPFLt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rBHGsZPFLt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rBHGsZPFLt ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rBHGsZPFLt ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rBHGsZPFLt .navbar-buttons {
  margin-left: auto;
}
.cid-rBHGsZPFLt button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rBHGsZPFLt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rBHGsZPFLt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rBHGsZPFLt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGsZPFLt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGsZPFLt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rBHGsZPFLt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGsZPFLt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rBHGsZPFLt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rBHGsZPFLt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGsZPFLt .navbar-dropdown {
  position: fixed;
}
.cid-rBHGsZPFLt a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBHGsZPFLt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rBHGsZPFLt .right-menu,
.cid-rBHGsZPFLt .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rBHGsZPFLt .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGsZPFLt .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGsZPFLt .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rBHGsZPFLt .menu-top {
  text-align: center;
  width: 100%;
  background-color: #3f70a1;
  padding: .5rem 0;
  color: #ffffff;
}
.cid-rBHGsZPFLt .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rBHGsZPFLt .card-wrapper {
  z-index: 3;
}
.cid-rBHGsZPFLt .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rBHGsZPFLt .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rBHGsZPFLt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGgjYSugfG {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sGgjYSugfG P {
  color: #767676;
}
.cid-sGgjYSugfG H3 {
  text-align: center;
  color: #465052;
}
.cid-sGgjYSugfG .mbr-text,
.cid-sGgjYSugfG .mbr-section-btn {
  color: #232323;
}
.cid-sGgjyAwhSA {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sGgjyAwhSA .mbr-section-title {
  margin: 0;
}
.cid-sGgjyAwhSA .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-sGgjyAwhSA .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-sGgjyAwhSA .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-sGgjyAwhSA .card1 {
  background: linear-gradient(45deg, #5b686b, #879a9f);
}
.cid-sGgjyAwhSA .card2 {
  background: linear-gradient(45deg, #635a51, #82786e);
}
.cid-sGgjyAwhSA .card3 {
  background: linear-gradient(45deg, #149dcc, #55b4d4);
}
.cid-sGgjyAwhSA .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-sGgjyAwhSA .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-sGgjyAwhSA .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-sGgjyAwhSA .mbr-section-btn {
  padding-top: 1rem;
}
.cid-sGgjyAwhSA .card1 > .mbr-text,
.cid-sGgjyAwhSA .card1 > .mbr-section-btn {
  color: #232323;
}
.cid-sGgjyAwhSA .card1 > .mbr-card-title {
  color: #232323;
}
.cid-sGgjyAwhSA .card2 > .mbr-card-title {
  color: #232323;
}
.cid-sGgjyAwhSA .card2 > .mbr-text,
.cid-sGgjyAwhSA .card2 > .mbr-section-btn {
  color: #232323;
}
.cid-sGgjyAwhSA .card3 > .mbr-card-title {
  color: #232323;
}
.cid-sGgjyAwhSA .card3 > .mbr-text,
.cid-sGgjyAwhSA .card3 > .mbr-section-btn {
  color: #232323;
}
.cid-rBHGngWe5d .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-rBHGngWe5d .nav-item:focus,
.cid-rBHGngWe5d .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rBHGngWe5d .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rBHGngWe5d .nav-item .nav-link {
    position: relative;
  }
  .cid-rBHGngWe5d .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff2f2f, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rBHGngWe5d .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rBHGngWe5d .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBHGngWe5d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rBHGngWe5d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rBHGngWe5d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rBHGngWe5d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rBHGngWe5d .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-rBHGngWe5d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rBHGngWe5d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rBHGngWe5d .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rBHGngWe5d .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #55b4d4;
}
.cid-rBHGngWe5d .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #55b4d4 !important;
}
.cid-rBHGngWe5d .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rBHGngWe5d .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rBHGngWe5d .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rBHGngWe5d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rBHGngWe5d .navbar.collapsed .navbar-collapse.show,
.cid-rBHGngWe5d .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGngWe5d .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rBHGngWe5d .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rBHGngWe5d .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rBHGngWe5d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rBHGngWe5d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rBHGngWe5d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rBHGngWe5d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rBHGngWe5d .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGngWe5d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rBHGngWe5d .navbar.collapsed .right-menu,
.cid-rBHGngWe5d .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rBHGngWe5d .navbar .navbar-collapse.show,
  .cid-rBHGngWe5d .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGngWe5d .navbar .navbar-collapse.show .brand-container,
  .cid-rBHGngWe5d .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rBHGngWe5d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rBHGngWe5d .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rBHGngWe5d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rBHGngWe5d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rBHGngWe5d .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rBHGngWe5d .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rBHGngWe5d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rBHGngWe5d .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGngWe5d .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rBHGngWe5d .navbar .right-menu,
  .cid-rBHGngWe5d .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rBHGngWe5d .navbar.navbar-short {
  min-height: 60px;
}
.cid-rBHGngWe5d .navbar.navbar-short .mbr-overlay {
  background: #55b4d4 !important;
}
.cid-rBHGngWe5d .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rBHGngWe5d .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rBHGngWe5d .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rBHGngWe5d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rBHGngWe5d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rBHGngWe5d .dropdown-item.active,
.cid-rBHGngWe5d .dropdown-item:active {
  background-color: transparent;
}
.cid-rBHGngWe5d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rBHGngWe5d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rBHGngWe5d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rBHGngWe5d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #55b4d4;
}
.cid-rBHGngWe5d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rBHGngWe5d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rBHGngWe5d ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rBHGngWe5d ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rBHGngWe5d .navbar-buttons {
  margin-left: auto;
}
.cid-rBHGngWe5d button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rBHGngWe5d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rBHGngWe5d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rBHGngWe5d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGngWe5d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGngWe5d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rBHGngWe5d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGngWe5d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rBHGngWe5d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rBHGngWe5d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGngWe5d .navbar-dropdown {
  position: fixed;
}
.cid-rBHGngWe5d a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBHGngWe5d .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rBHGngWe5d .right-menu,
.cid-rBHGngWe5d .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rBHGngWe5d .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGngWe5d .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGngWe5d .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rBHGngWe5d .menu-top {
  text-align: center;
  width: 100%;
  background-color: #3f70a1;
  padding: .5rem 0;
  color: #ffffff;
}
.cid-rBHGngWe5d .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rBHGngWe5d .card-wrapper {
  z-index: 3;
}
.cid-rBHGngWe5d .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rBHGngWe5d .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rBHGngWe5d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rOe8EtwcLG {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rOe8EtwcLG P {
  color: #767676;
}
.cid-rOe8EtwcLG H3 {
  text-align: center;
  color: #465052;
}
.cid-rOe8EtwcLG .mbr-text,
.cid-rOe8EtwcLG .mbr-section-btn {
  color: #232323;
}
.cid-sGgKVBDFLM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f70a1;
}
.cid-sGgKVBDFLM .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGgKVBDFLM .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGgKVBDFLM .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGgKVBDFLM .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGgKVBDFLM .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #f92727;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGgKVBDFLM .icon-transition span:hover {
  background-color: #e96188;
}
.cid-sGgKVBDFLM .mbr-text {
  color: #efefef;
}
@media (max-width: 991px) {
  .cid-sGgKVBDFLM .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGgKVBDFLM .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGgKVBDFLM .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sGgKVBDFLM .mbr-text B {
  color: #cccccc;
}
.cid-rh3DuBHymL {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rh3DuBHymL .mbr-section-title {
  font-weight: bold;
  color: #232323;
  margin-bottom: 2.5rem;
}
.cid-rh3DuBHymL .mbr-section-subtitle {
  font-weight: 500;
  margin-bottom: 2rem;
}
.cid-rh3DuBHymL .mbr-element-title {
  margin-bottom: 1rem;
}
.cid-rh3DuBHymL .card-img {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.cid-rh3DuBHymL .card-img span {
  font-size: 80px;
}
.cid-rh3DuBHymL .nav {
  border: none;
  margin-bottom: 3rem;
}
.cid-rh3DuBHymL .nav-tabs {
  margin-top: 1rem;
  margin-bottom: 2rem;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rh3DuBHymL .tabcont {
  z-index: 1;
  margin: 0;
}
.cid-rh3DuBHymL .nav-item {
  margin-top: 1rem;
}
.cid-rh3DuBHymL .tab-content-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
}
.cid-rh3DuBHymL .tab-content {
  width: 100%;
}
.cid-rh3DuBHymL .nav-tabs .nav-link {
  box-sizing: border-box;
  font-style: normal;
  font-weight: bold;
  padding: 1rem 1rem;
  margin: 0px;
  margin-left: -0.5px;
  margin-right: -0.5px;
  transition: all .5s;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom: 1px solid #767676;
}
.cid-rh3DuBHymL .nav-tabs .nav-link:hover {
  border-color: transparent;
  border-bottom: 1px solid #767676;
}
.cid-rh3DuBHymL .nav-tabs .nav-link.active {
  border: 1px solid #767676;
  border-bottom: none;
  font-style: normal;
  background-color: transparent;
}
.cid-rh3DuBHymL .mbr-section-text {
  color: #232323;
}
.cid-rh8Wzhc3wq {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rh8Wzhc3wq .mbr-section-subtitle {
  color: #767676;
}
.cid-uaS9eIMBnM {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uaS9eIMBnM .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-uaS9eIMBnM .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uaS9eIMBnM .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uaS9eIMBnM .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-uaS9eIMBnM .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-uaS9eIMBnM .card-box {
  padding: 1rem;
}
.cid-uaS9eIMBnM .mbr-section-title,
.cid-uaS9eIMBnM .line-wrap {
  text-align: center;
}
.cid-uaS9eIMBnM .card-box > p,
.cid-uaS9eIMBnM .mbr-section-btn {
  text-align: left;
  color: #9e9e9e;
}
.cid-uaSeQ77S0b {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uaSeQ77S0b .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-uaSeQ77S0b .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uaSeQ77S0b .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uaSeQ77S0b .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-uaSeQ77S0b .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-uaSeQ77S0b .card-box {
  padding: 1rem;
}
.cid-uaSeQ77S0b .mbr-section-title,
.cid-uaSeQ77S0b .line-wrap {
  text-align: center;
}
.cid-uaSeQ77S0b .card-box > p,
.cid-uaSeQ77S0b .mbr-section-btn {
  text-align: left;
  color: #9e9e9e;
}
.cid-uaSgzdVAv1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uaSgzdVAv1 .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-uaSgzdVAv1 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uaSgzdVAv1 .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uaSgzdVAv1 .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-uaSgzdVAv1 .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-uaSgzdVAv1 .card-box {
  padding: 1rem;
}
.cid-uaSgzdVAv1 .mbr-section-title,
.cid-uaSgzdVAv1 .line-wrap {
  text-align: center;
}
.cid-uaSgzdVAv1 .card-box > p,
.cid-uaSgzdVAv1 .mbr-section-btn {
  text-align: left;
  color: #9e9e9e;
}
.cid-ujDWQESU7L {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ujDWQESU7L .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-ujDWQESU7L .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ujDWQESU7L .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-ujDWQESU7L .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-ujDWQESU7L .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-ujDWQESU7L .card-box {
  padding: 1rem;
}
.cid-ujDWQESU7L .mbr-section-title,
.cid-ujDWQESU7L .line-wrap {
  text-align: center;
}
.cid-ujDWQESU7L .card-box > p,
.cid-ujDWQESU7L .mbr-section-btn {
  text-align: left;
  color: #9e9e9e;
}
.cid-rh3EK6o007 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rh3EK6o007 .container-fluid {
  padding: 0 3rem;
}
.cid-rh3EK6o007 ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rh3EK6o007 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rh3EK6o007 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rh3EK6o007 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rh3EK6o007 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rh3EK6o007 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rh3EK6o007 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rh3EK6o007 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff2f2f, #efefef);
  display: inline-block;
}
.cid-rhxFb6icl2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rhxFb6icl2 .mbr-section-subtitle {
  color: #767676;
}
.cid-rhxFb6icl2 ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rhxFb6icl2 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rhxFb6icl2 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rhxFb6icl2 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rhxFb6icl2 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rhxKMuGLQq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rhxKMuGLQq .mbr-section-subtitle {
  color: #767676;
}
.cid-rhxKMuGLQq ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rhxKMuGLQq ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rhxKMuGLQq ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rhxKMuGLQq ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rhxKMuGLQq .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rh8zpqGlpt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f70a1;
}
.cid-rh8zpqGlpt .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rh8zpqGlpt .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rh8zpqGlpt .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rh8zpqGlpt .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rh8zpqGlpt .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #f92727;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rh8zpqGlpt .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rh8zpqGlpt .mbr-text {
  color: #efefef;
}
@media (max-width: 991px) {
  .cid-rh8zpqGlpt .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rh8zpqGlpt .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rh8zpqGlpt .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rh8zpqGlpt .mbr-text B {
  color: #cccccc;
}
.cid-rhBaneikUM {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #3f70a1;
}
.cid-rBHGDoZzYu .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-rBHGDoZzYu .nav-item:focus,
.cid-rBHGDoZzYu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rBHGDoZzYu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rBHGDoZzYu .nav-item .nav-link {
    position: relative;
  }
  .cid-rBHGDoZzYu .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff2f2f, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rBHGDoZzYu .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rBHGDoZzYu .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBHGDoZzYu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rBHGDoZzYu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rBHGDoZzYu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rBHGDoZzYu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rBHGDoZzYu .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-rBHGDoZzYu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rBHGDoZzYu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rBHGDoZzYu .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rBHGDoZzYu .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #55b4d4;
}
.cid-rBHGDoZzYu .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #55b4d4 !important;
}
.cid-rBHGDoZzYu .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rBHGDoZzYu .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rBHGDoZzYu .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rBHGDoZzYu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rBHGDoZzYu .navbar.collapsed .navbar-collapse.show,
.cid-rBHGDoZzYu .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGDoZzYu .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rBHGDoZzYu .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rBHGDoZzYu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rBHGDoZzYu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rBHGDoZzYu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rBHGDoZzYu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rBHGDoZzYu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rBHGDoZzYu .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGDoZzYu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rBHGDoZzYu .navbar.collapsed .right-menu,
.cid-rBHGDoZzYu .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rBHGDoZzYu .navbar .navbar-collapse.show,
  .cid-rBHGDoZzYu .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGDoZzYu .navbar .navbar-collapse.show .brand-container,
  .cid-rBHGDoZzYu .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rBHGDoZzYu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rBHGDoZzYu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rBHGDoZzYu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rBHGDoZzYu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rBHGDoZzYu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rBHGDoZzYu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rBHGDoZzYu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rBHGDoZzYu .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGDoZzYu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rBHGDoZzYu .navbar .right-menu,
  .cid-rBHGDoZzYu .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rBHGDoZzYu .navbar.navbar-short {
  min-height: 60px;
}
.cid-rBHGDoZzYu .navbar.navbar-short .mbr-overlay {
  background: #55b4d4 !important;
}
.cid-rBHGDoZzYu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rBHGDoZzYu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rBHGDoZzYu .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rBHGDoZzYu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rBHGDoZzYu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rBHGDoZzYu .dropdown-item.active,
.cid-rBHGDoZzYu .dropdown-item:active {
  background-color: transparent;
}
.cid-rBHGDoZzYu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rBHGDoZzYu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rBHGDoZzYu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rBHGDoZzYu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #55b4d4;
}
.cid-rBHGDoZzYu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rBHGDoZzYu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rBHGDoZzYu ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rBHGDoZzYu ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rBHGDoZzYu .navbar-buttons {
  margin-left: auto;
}
.cid-rBHGDoZzYu button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rBHGDoZzYu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rBHGDoZzYu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rBHGDoZzYu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGDoZzYu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGDoZzYu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rBHGDoZzYu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGDoZzYu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rBHGDoZzYu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rBHGDoZzYu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGDoZzYu .navbar-dropdown {
  position: fixed;
}
.cid-rBHGDoZzYu a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBHGDoZzYu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rBHGDoZzYu .right-menu,
.cid-rBHGDoZzYu .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rBHGDoZzYu .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGDoZzYu .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGDoZzYu .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rBHGDoZzYu .menu-top {
  text-align: center;
  width: 100%;
  background-color: #3f70a1;
  padding: .5rem 0;
  color: #ffffff;
}
.cid-rBHGDoZzYu .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rBHGDoZzYu .card-wrapper {
  z-index: 3;
}
.cid-rBHGDoZzYu .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rBHGDoZzYu .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rBHGDoZzYu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBHGjtY3cu .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-rBHGjtY3cu .nav-item:focus,
.cid-rBHGjtY3cu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rBHGjtY3cu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rBHGjtY3cu .nav-item .nav-link {
    position: relative;
  }
  .cid-rBHGjtY3cu .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff2f2f, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rBHGjtY3cu .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rBHGjtY3cu .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBHGjtY3cu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rBHGjtY3cu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rBHGjtY3cu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rBHGjtY3cu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rBHGjtY3cu .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-rBHGjtY3cu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rBHGjtY3cu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rBHGjtY3cu .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rBHGjtY3cu .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #55b4d4;
}
.cid-rBHGjtY3cu .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #55b4d4 !important;
}
.cid-rBHGjtY3cu .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rBHGjtY3cu .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rBHGjtY3cu .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rBHGjtY3cu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rBHGjtY3cu .navbar.collapsed .navbar-collapse.show,
.cid-rBHGjtY3cu .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGjtY3cu .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rBHGjtY3cu .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rBHGjtY3cu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rBHGjtY3cu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rBHGjtY3cu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rBHGjtY3cu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rBHGjtY3cu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rBHGjtY3cu .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGjtY3cu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rBHGjtY3cu .navbar.collapsed .right-menu,
.cid-rBHGjtY3cu .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rBHGjtY3cu .navbar .navbar-collapse.show,
  .cid-rBHGjtY3cu .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGjtY3cu .navbar .navbar-collapse.show .brand-container,
  .cid-rBHGjtY3cu .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rBHGjtY3cu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rBHGjtY3cu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rBHGjtY3cu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rBHGjtY3cu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rBHGjtY3cu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rBHGjtY3cu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rBHGjtY3cu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rBHGjtY3cu .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGjtY3cu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rBHGjtY3cu .navbar .right-menu,
  .cid-rBHGjtY3cu .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rBHGjtY3cu .navbar.navbar-short {
  min-height: 60px;
}
.cid-rBHGjtY3cu .navbar.navbar-short .mbr-overlay {
  background: #55b4d4 !important;
}
.cid-rBHGjtY3cu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rBHGjtY3cu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rBHGjtY3cu .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rBHGjtY3cu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rBHGjtY3cu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rBHGjtY3cu .dropdown-item.active,
.cid-rBHGjtY3cu .dropdown-item:active {
  background-color: transparent;
}
.cid-rBHGjtY3cu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rBHGjtY3cu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rBHGjtY3cu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rBHGjtY3cu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #55b4d4;
}
.cid-rBHGjtY3cu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rBHGjtY3cu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rBHGjtY3cu ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rBHGjtY3cu ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rBHGjtY3cu .navbar-buttons {
  margin-left: auto;
}
.cid-rBHGjtY3cu button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rBHGjtY3cu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rBHGjtY3cu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rBHGjtY3cu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGjtY3cu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGjtY3cu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rBHGjtY3cu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGjtY3cu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rBHGjtY3cu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rBHGjtY3cu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGjtY3cu .navbar-dropdown {
  position: fixed;
}
.cid-rBHGjtY3cu a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBHGjtY3cu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rBHGjtY3cu .right-menu,
.cid-rBHGjtY3cu .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rBHGjtY3cu .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGjtY3cu .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGjtY3cu .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rBHGjtY3cu .menu-top {
  text-align: center;
  width: 100%;
  background-color: #3f70a1;
  padding: .5rem 0;
  color: #ffffff;
}
.cid-rBHGjtY3cu .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rBHGjtY3cu .card-wrapper {
  z-index: 3;
}
.cid-rBHGjtY3cu .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rBHGjtY3cu .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rBHGjtY3cu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rh7VQ3eY6y {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/amr-blue-large-2000x1500.png");
}
.cid-rh7VQ3eY6y .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rh7VQ3eY6y .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rh7VQ3eY6y .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rh7VQ3eY6y H1 {
  color: #232323;
}
.cid-rh7VQ3eY6y .mbr-text,
.cid-rh7VQ3eY6y .mbr-section-btn {
  color: #232323;
}
.cid-rh8jVrl7dL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rh8jVrl7dL .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rh8jVrl7dL .row-element,
.cid-rh8jVrl7dL .image-element {
  padding: 0;
}
.cid-rh8jVrl7dL .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rh8jVrl7dL .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rh8jVrl7dL .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rh8jVrl7dL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff2f2f, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rh8jVrl7dL .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rh8jVrl7dL .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rh8jVrl7dL .text-content {
    padding: 2rem 1rem;
  }
  .cid-rh8jVrl7dL .underline .line {
    height: 2px;
  }
  .cid-rh8jVrl7dL .mbr-title,
  .cid-rh8jVrl7dL .underline,
  .cid-rh8jVrl7dL .mbr-text,
  .cid-rh8jVrl7dL .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rh8jVrl7dL .mbr-text,
.cid-rh8jVrl7dL .mbr-section-btn {
  color: #232323;
}
.cid-rh8i00qlCz {
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-rh8i00qlCz h3 {
  text-align: center;
}
.cid-rh8i00qlCz .mbr-section-subtitle {
  font-weight: 300;
}
.cid-rh8i00qlCz .card {
  word-wrap: break-word;
}
.cid-rh8i00qlCz .card:after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin: 0 auto;
  background-color: #ff2f2f;
}
.cid-rh8i00qlCz .mbr-iconfont {
  font-size: 5rem;
  color: #ff2f2f;
}
.cid-rh8yPMZcx0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f70a1;
}
.cid-rh8yPMZcx0 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rh8yPMZcx0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rh8yPMZcx0 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rh8yPMZcx0 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rh8yPMZcx0 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #f92727;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rh8yPMZcx0 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rh8yPMZcx0 .mbr-text {
  color: #efefef;
}
@media (max-width: 991px) {
  .cid-rh8yPMZcx0 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rh8yPMZcx0 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rh8yPMZcx0 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rh8yPMZcx0 .mbr-text B {
  color: #cccccc;
}
.cid-rhBa7wNlTC {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #3f70a1;
}
.cid-sGgIIECJYp {
  padding-top: 195px;
  padding-bottom: 105px;
  background-color: #efefef;
  background: linear-gradient(45deg, #efefef, #4f4943);
}
@media (min-width: 992px) {
  .cid-sGgIIECJYp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sGgIIECJYp .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sGgIIECJYp .mbr-text {
    text-align: center;
  }
}
.cid-sGgIIECJYp H1 {
  color: #232323;
}
.cid-sGgIIECJYp .mbr-text,
.cid-sGgIIECJYp .mbr-section-btn {
  color: #232323;
}
.cid-rh8yPMZcx0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f70a1;
}
.cid-rh8yPMZcx0 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rh8yPMZcx0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rh8yPMZcx0 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rh8yPMZcx0 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rh8yPMZcx0 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #f92727;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rh8yPMZcx0 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rh8yPMZcx0 .mbr-text {
  color: #efefef;
}
@media (max-width: 991px) {
  .cid-rh8yPMZcx0 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rh8yPMZcx0 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rh8yPMZcx0 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rh8yPMZcx0 .mbr-text B {
  color: #cccccc;
}
.cid-rhBa7wNlTC {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #3f70a1;
}
.cid-rBHGq50A7F .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-rBHGq50A7F .nav-item:focus,
.cid-rBHGq50A7F .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rBHGq50A7F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rBHGq50A7F .nav-item .nav-link {
    position: relative;
  }
  .cid-rBHGq50A7F .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff2f2f, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rBHGq50A7F .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rBHGq50A7F .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBHGq50A7F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rBHGq50A7F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rBHGq50A7F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rBHGq50A7F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rBHGq50A7F .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-rBHGq50A7F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rBHGq50A7F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rBHGq50A7F .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rBHGq50A7F .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #55b4d4;
}
.cid-rBHGq50A7F .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #55b4d4 !important;
}
.cid-rBHGq50A7F .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rBHGq50A7F .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rBHGq50A7F .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rBHGq50A7F .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rBHGq50A7F .navbar.collapsed .navbar-collapse.show,
.cid-rBHGq50A7F .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGq50A7F .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rBHGq50A7F .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rBHGq50A7F .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rBHGq50A7F .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rBHGq50A7F .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rBHGq50A7F .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rBHGq50A7F .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rBHGq50A7F .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGq50A7F .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rBHGq50A7F .navbar.collapsed .right-menu,
.cid-rBHGq50A7F .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rBHGq50A7F .navbar .navbar-collapse.show,
  .cid-rBHGq50A7F .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGq50A7F .navbar .navbar-collapse.show .brand-container,
  .cid-rBHGq50A7F .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rBHGq50A7F .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rBHGq50A7F .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rBHGq50A7F .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rBHGq50A7F .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rBHGq50A7F .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rBHGq50A7F .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rBHGq50A7F .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rBHGq50A7F .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGq50A7F .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rBHGq50A7F .navbar .right-menu,
  .cid-rBHGq50A7F .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rBHGq50A7F .navbar.navbar-short {
  min-height: 60px;
}
.cid-rBHGq50A7F .navbar.navbar-short .mbr-overlay {
  background: #55b4d4 !important;
}
.cid-rBHGq50A7F .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rBHGq50A7F .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rBHGq50A7F .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rBHGq50A7F .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rBHGq50A7F .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rBHGq50A7F .dropdown-item.active,
.cid-rBHGq50A7F .dropdown-item:active {
  background-color: transparent;
}
.cid-rBHGq50A7F .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rBHGq50A7F .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rBHGq50A7F .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rBHGq50A7F .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #55b4d4;
}
.cid-rBHGq50A7F .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rBHGq50A7F .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rBHGq50A7F ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rBHGq50A7F ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rBHGq50A7F .navbar-buttons {
  margin-left: auto;
}
.cid-rBHGq50A7F button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rBHGq50A7F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rBHGq50A7F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rBHGq50A7F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGq50A7F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGq50A7F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rBHGq50A7F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGq50A7F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rBHGq50A7F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rBHGq50A7F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGq50A7F .navbar-dropdown {
  position: fixed;
}
.cid-rBHGq50A7F a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBHGq50A7F .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rBHGq50A7F .right-menu,
.cid-rBHGq50A7F .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rBHGq50A7F .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGq50A7F .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGq50A7F .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rBHGq50A7F .menu-top {
  text-align: center;
  width: 100%;
  background-color: #3f70a1;
  padding: .5rem 0;
  color: #ffffff;
}
.cid-rBHGq50A7F .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rBHGq50A7F .card-wrapper {
  z-index: 3;
}
.cid-rBHGq50A7F .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rBHGq50A7F .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rBHGq50A7F .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rhB33UeSHL {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-rhB33UeSHL P {
  color: #767676;
}
.cid-rhB2wBNLME {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rhB2wBNLME h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rhB2wBNLME p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-rhB2wBNLME .card-img {
  text-align: left;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  width: auto;
}
.cid-rhB2wBNLME .card-img span {
  font-size: 72px;
  color: #ff3366;
}
.cid-rhB2wBNLME .card-box {
  padding-left: 1rem;
  word-break: break-word;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-rhB2wBNLME .card-img {
    text-align: left;
    padding-bottom: 0.75rem;
  }
  .cid-rhB2wBNLME .card-box {
    padding-left: 0;
  }
}
.cid-rh8zfvNyNJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f70a1;
}
.cid-rh8zfvNyNJ .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rh8zfvNyNJ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rh8zfvNyNJ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rh8zfvNyNJ .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rh8zfvNyNJ .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #f92727;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rh8zfvNyNJ .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rh8zfvNyNJ .mbr-text {
  color: #efefef;
}
@media (max-width: 991px) {
  .cid-rh8zfvNyNJ .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rh8zfvNyNJ .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rh8zfvNyNJ .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rh8zfvNyNJ .mbr-text B {
  color: #cccccc;
}
.cid-rhBaB2m9Gq {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #3f70a1;
}
.cid-rBHGG2BZtV .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-rBHGG2BZtV .nav-item:focus,
.cid-rBHGG2BZtV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rBHGG2BZtV .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rBHGG2BZtV .nav-item .nav-link {
    position: relative;
  }
  .cid-rBHGG2BZtV .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff2f2f, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rBHGG2BZtV .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rBHGG2BZtV .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBHGG2BZtV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rBHGG2BZtV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rBHGG2BZtV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rBHGG2BZtV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rBHGG2BZtV .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-rBHGG2BZtV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rBHGG2BZtV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rBHGG2BZtV .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rBHGG2BZtV .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #55b4d4;
}
.cid-rBHGG2BZtV .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #55b4d4 !important;
}
.cid-rBHGG2BZtV .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rBHGG2BZtV .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rBHGG2BZtV .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rBHGG2BZtV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rBHGG2BZtV .navbar.collapsed .navbar-collapse.show,
.cid-rBHGG2BZtV .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGG2BZtV .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rBHGG2BZtV .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rBHGG2BZtV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rBHGG2BZtV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rBHGG2BZtV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rBHGG2BZtV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rBHGG2BZtV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rBHGG2BZtV .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHGG2BZtV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rBHGG2BZtV .navbar.collapsed .right-menu,
.cid-rBHGG2BZtV .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rBHGG2BZtV .navbar .navbar-collapse.show,
  .cid-rBHGG2BZtV .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGG2BZtV .navbar .navbar-collapse.show .brand-container,
  .cid-rBHGG2BZtV .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rBHGG2BZtV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rBHGG2BZtV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rBHGG2BZtV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rBHGG2BZtV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rBHGG2BZtV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rBHGG2BZtV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rBHGG2BZtV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rBHGG2BZtV .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHGG2BZtV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rBHGG2BZtV .navbar .right-menu,
  .cid-rBHGG2BZtV .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rBHGG2BZtV .navbar.navbar-short {
  min-height: 60px;
}
.cid-rBHGG2BZtV .navbar.navbar-short .mbr-overlay {
  background: #55b4d4 !important;
}
.cid-rBHGG2BZtV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rBHGG2BZtV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rBHGG2BZtV .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rBHGG2BZtV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rBHGG2BZtV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rBHGG2BZtV .dropdown-item.active,
.cid-rBHGG2BZtV .dropdown-item:active {
  background-color: transparent;
}
.cid-rBHGG2BZtV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rBHGG2BZtV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rBHGG2BZtV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rBHGG2BZtV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #55b4d4;
}
.cid-rBHGG2BZtV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rBHGG2BZtV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rBHGG2BZtV ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rBHGG2BZtV ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rBHGG2BZtV .navbar-buttons {
  margin-left: auto;
}
.cid-rBHGG2BZtV button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rBHGG2BZtV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rBHGG2BZtV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rBHGG2BZtV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGG2BZtV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHGG2BZtV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rBHGG2BZtV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGG2BZtV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rBHGG2BZtV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rBHGG2BZtV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHGG2BZtV .navbar-dropdown {
  position: fixed;
}
.cid-rBHGG2BZtV a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBHGG2BZtV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rBHGG2BZtV .right-menu,
.cid-rBHGG2BZtV .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rBHGG2BZtV .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGG2BZtV .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHGG2BZtV .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rBHGG2BZtV .menu-top {
  text-align: center;
  width: 100%;
  background-color: #3f70a1;
  padding: .5rem 0;
  color: #ffffff;
}
.cid-rBHGG2BZtV .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rBHGG2BZtV .card-wrapper {
  z-index: 3;
}
.cid-rBHGG2BZtV .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rBHGG2BZtV .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rBHGG2BZtV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rV7ZBU1oBZ {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/loose-produce-2000x1333.jpg");
}
.cid-rV7ZBU1oBZ .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rV7ZBU1oBZ .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rV7ZBU1oBZ .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rBHG8NtEAx .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-rBHG8NtEAx .nav-item:focus,
.cid-rBHG8NtEAx .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rBHG8NtEAx .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rBHG8NtEAx .nav-item .nav-link {
    position: relative;
  }
  .cid-rBHG8NtEAx .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff2f2f, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rBHG8NtEAx .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rBHG8NtEAx .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBHG8NtEAx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rBHG8NtEAx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rBHG8NtEAx .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rBHG8NtEAx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rBHG8NtEAx .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-rBHG8NtEAx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rBHG8NtEAx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rBHG8NtEAx .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rBHG8NtEAx .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #55b4d4;
}
.cid-rBHG8NtEAx .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #55b4d4 !important;
}
.cid-rBHG8NtEAx .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rBHG8NtEAx .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rBHG8NtEAx .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rBHG8NtEAx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rBHG8NtEAx .navbar.collapsed .navbar-collapse.show,
.cid-rBHG8NtEAx .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHG8NtEAx .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rBHG8NtEAx .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rBHG8NtEAx .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rBHG8NtEAx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rBHG8NtEAx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rBHG8NtEAx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rBHG8NtEAx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rBHG8NtEAx .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rBHG8NtEAx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rBHG8NtEAx .navbar.collapsed .right-menu,
.cid-rBHG8NtEAx .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rBHG8NtEAx .navbar .navbar-collapse.show,
  .cid-rBHG8NtEAx .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHG8NtEAx .navbar .navbar-collapse.show .brand-container,
  .cid-rBHG8NtEAx .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rBHG8NtEAx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rBHG8NtEAx .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rBHG8NtEAx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rBHG8NtEAx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rBHG8NtEAx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rBHG8NtEAx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rBHG8NtEAx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rBHG8NtEAx .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rBHG8NtEAx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rBHG8NtEAx .navbar .right-menu,
  .cid-rBHG8NtEAx .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rBHG8NtEAx .navbar.navbar-short {
  min-height: 60px;
}
.cid-rBHG8NtEAx .navbar.navbar-short .mbr-overlay {
  background: #55b4d4 !important;
}
.cid-rBHG8NtEAx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rBHG8NtEAx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rBHG8NtEAx .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rBHG8NtEAx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rBHG8NtEAx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rBHG8NtEAx .dropdown-item.active,
.cid-rBHG8NtEAx .dropdown-item:active {
  background-color: transparent;
}
.cid-rBHG8NtEAx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rBHG8NtEAx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rBHG8NtEAx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rBHG8NtEAx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #55b4d4;
}
.cid-rBHG8NtEAx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rBHG8NtEAx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rBHG8NtEAx ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rBHG8NtEAx ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rBHG8NtEAx .navbar-buttons {
  margin-left: auto;
}
.cid-rBHG8NtEAx button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rBHG8NtEAx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rBHG8NtEAx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rBHG8NtEAx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHG8NtEAx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rBHG8NtEAx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rBHG8NtEAx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHG8NtEAx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rBHG8NtEAx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rBHG8NtEAx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rBHG8NtEAx .navbar-dropdown {
  position: fixed;
}
.cid-rBHG8NtEAx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBHG8NtEAx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rBHG8NtEAx .right-menu,
.cid-rBHG8NtEAx .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rBHG8NtEAx .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHG8NtEAx .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rBHG8NtEAx .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rBHG8NtEAx .menu-top {
  text-align: center;
  width: 100%;
  background-color: #3f70a1;
  padding: .5rem 0;
  color: #ffffff;
}
.cid-rBHG8NtEAx .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rBHG8NtEAx .card-wrapper {
  z-index: 3;
}
.cid-rBHG8NtEAx .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rBHG8NtEAx .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rBHG8NtEAx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rhuZQtdprM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f70a1;
}
.cid-rhuZQtdprM .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rhuZQtdprM .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rhuZQtdprM .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rhuZQtdprM .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rhuZQtdprM .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #f92727;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rhuZQtdprM .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rhuZQtdprM .mbr-text {
  color: #efefef;
}
@media (max-width: 991px) {
  .cid-rhuZQtdprM .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rhuZQtdprM .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rhuZQtdprM .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rhuZQtdprM .mbr-text B {
  color: #cccccc;
}
.cid-rhB8LkpW2X {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #3f70a1;
}
